View | Details | Raw Unified | Return to bug 168756
Collapse All | Expand All

(-)boinc-client/Makefile (-1 / +2 lines)
Lines 154-162 Link Here
154
.endif
154
.endif
155
	${INSTALL_DATA} ${WRKSRC}/config.h ${PREFIX}/include/boinc
155
	${INSTALL_DATA} ${WRKSRC}/config.h ${PREFIX}/include/boinc
156
	${INSTALL_DATA} ${WRKSRC}/lib/std_fixes.h ${PREFIX}/include/boinc
156
	${INSTALL_DATA} ${WRKSRC}/lib/std_fixes.h ${PREFIX}/include/boinc
157
	${INSTALL_DATA} ${WRKSRC}/api/reduce.h ${PREFIX}/include/boinc
157
.if !defined(WITHOUT_X11)
158
.if !defined(WITHOUT_X11)
158
. for name in api/boinc_gl.h api/graphics_api.h api/graphics_data.h \
159
. for name in api/boinc_gl.h api/graphics_api.h api/graphics_data.h \
159
	api/reduce.h api/txf_util.h
160
	api/txf_util.h
160
	${INSTALL_DATA} ${WRKSRC}/${name} ${PREFIX}/include/boinc
161
	${INSTALL_DATA} ${WRKSRC}/${name} ${PREFIX}/include/boinc
161
. endfor
162
. endfor
162
. if defined(WITHOUT_MANAGER)
163
. if defined(WITHOUT_MANAGER)
(-)boinc-client/files/patch-api__boinc_api.h (-10 / +17 lines)
Lines 1-11 Link Here
1
--- api/boinc_api.h.orig	2012-04-20 16:15:13.000000000 +0200
1
--- api/boinc_api.h.orig	2012-04-13 09:59:23.000000000 +0200
2
+++ api/boinc_api.h	2012-04-20 16:17:11.000000000 +0200
2
+++ api/boinc_api.h	2012-06-06 14:40:16.000000000 +0200
3
@@ -29,6 +29,8 @@
3
@@ -83,7 +83,6 @@
4
 extern "C" {
4
 
5
 #endif
5
 extern int boinc_init(void);
6
 extern int boinc_finish(int status);
7
-extern int boinc_temporary_exit(int delay, const char* reason=NULL);
8
 extern int boinc_get_init_data_p(struct APP_INIT_DATA*);
9
 extern int boinc_parse_init_data_file(void);
10
 extern int boinc_send_trickle_up(char* variety, char* text);
11
@@ -139,6 +138,7 @@
12
     double cpu_time, double checkpoint_cpu_time, double _fraction_done,
13
     int other_pid, double bytes_sent, double bytes_received
14
 );
15
+extern int boinc_temporary_exit(int delay, const char* reason=NULL);
16
 
17
 /////////// API ENDS HERE
6
 
18
 
7
+#include <cstddef>
8
+
9
 // parameters passed to the BOINC runtime system
10
 //
11
 typedef struct BOINC_OPTIONS {

Return to bug 168756