mirror of https://github.com/BOINC/boinc.git
- configure: work with "gold" linker
This commit is contained in:
parent
4a9f81d6ce
commit
79c6225fc2
|
@ -73,6 +73,7 @@ struct ACTIVE_TASK {
|
||||||
|
|
||||||
// START OF ITEMS SAVED IN STATE FILE
|
// START OF ITEMS SAVED IN STATE FILE
|
||||||
int _task_state;
|
int _task_state;
|
||||||
|
// PROCESS_*; see common_defs.h
|
||||||
int slot;
|
int slot;
|
||||||
// subdirectory of slots/ where this runs
|
// subdirectory of slots/ where this runs
|
||||||
double checkpoint_cpu_time;
|
double checkpoint_cpu_time;
|
||||||
|
|
|
@ -853,6 +853,9 @@ if (test "$enable_xss" == yes) && (test "$have_Xss" == yes); then
|
||||||
SAH_CHECK_LIB([Xss],[XScreenSaverAllocInfo],[
|
SAH_CHECK_LIB([Xss],[XScreenSaverAllocInfo],[
|
||||||
AC_DEFINE([HAVE_XSS],[1],[Define to 1 if you have xss library])
|
AC_DEFINE([HAVE_XSS],[1],[Define to 1 if you have xss library])
|
||||||
CLIENTLIBS="${sah_lib_last} ${CLIENTLIBS}"])
|
CLIENTLIBS="${sah_lib_last} ${CLIENTLIBS}"])
|
||||||
|
SAH_CHECK_LIB([X11],[XOpenDisplay],[
|
||||||
|
AC_DEFINE([HAVE_X11],[1],[Define to 1 if you have X11 library])
|
||||||
|
CLIENTLIBS="${sah_lib_last} ${CLIENTLIBS}"])
|
||||||
echo DEBUG: CLIENTLIBS=${CLIENTLIBS} >&5
|
echo DEBUG: CLIENTLIBS=${CLIENTLIBS} >&5
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -262,10 +262,6 @@ int parse_boinc_submit(COMMAND& c, char* p, SUBMIT_REQ& req) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int create_batch() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
int submit_jobs(SUBMIT_REQ req) {
|
int submit_jobs(SUBMIT_REQ req) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -283,7 +279,7 @@ void handle_boinc_submit(COMMAND& c, char* p) {
|
||||||
printf("error parsing request: %d\n", retval);
|
printf("error parsing request: %d\n", retval);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
retval = create_batch();
|
retval = create_batch(req);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
printf("error creating batch: %d\n", retval);
|
printf("error creating batch: %d\n", retval);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue