diff --git a/client/app.h b/client/app.h index ca8632547f..9138bb6581 100644 --- a/client/app.h +++ b/client/app.h @@ -73,6 +73,7 @@ struct ACTIVE_TASK { // START OF ITEMS SAVED IN STATE FILE int _task_state; + // PROCESS_*; see common_defs.h int slot; // subdirectory of slots/ where this runs double checkpoint_cpu_time; diff --git a/configure.ac b/configure.ac index 0058e47277..c11f563296 100644 --- a/configure.ac +++ b/configure.ac @@ -853,6 +853,9 @@ if (test "$enable_xss" == yes) && (test "$have_Xss" == yes); then SAH_CHECK_LIB([Xss],[XScreenSaverAllocInfo],[ AC_DEFINE([HAVE_XSS],[1],[Define to 1 if you have xss library]) 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 fi diff --git a/samples/condor/boinc_gahp.cpp b/samples/condor/boinc_gahp.cpp index 7d8b271c81..23cb41f351 100644 --- a/samples/condor/boinc_gahp.cpp +++ b/samples/condor/boinc_gahp.cpp @@ -262,10 +262,6 @@ int parse_boinc_submit(COMMAND& c, char* p, SUBMIT_REQ& req) { return 0; } -int create_batch() { - -} - int submit_jobs(SUBMIT_REQ req) { return 0; } @@ -283,7 +279,7 @@ void handle_boinc_submit(COMMAND& c, char* p) { printf("error parsing request: %d\n", retval); return; } - retval = create_batch(); + retval = create_batch(req); if (retval) { printf("error creating batch: %d\n", retval); return;