|
From: Bob T. <bt...@us...> - 2003-10-08 03:34:17
|
Update of /cvsroot/benson/benson3/src In directory sc8-pr-cvs1:/tmp/cvs-serv6309/src Modified Files: bsm.c psaf_queue.c Log Message: The latest set of fixes, for the windows stuff. Index: bsm.c =================================================================== RCS file: /cvsroot/benson/benson3/src/bsm.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** bsm.c 28 Sep 2003 22:26:28 -0000 1.7 --- bsm.c 8 Oct 2003 03:34:10 -0000 1.8 *************** *** 6,9 **** --- 6,14 ---- */ + #ifdef HAVE_CONFIG_H + #include "config.h" + #endif + + #ifndef CANT_BUILD_SERVER #include <benson/bsm.h> *************** *** 240,241 **** --- 245,247 ---- return GOOD; } + #endif /* CANT_BUILD_SERVER */ Index: psaf_queue.c =================================================================== RCS file: /cvsroot/benson/benson3/src/psaf_queue.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** psaf_queue.c 28 Sep 2003 22:26:28 -0000 1.6 --- psaf_queue.c 8 Oct 2003 03:34:10 -0000 1.7 *************** *** 1,2 **** --- 1,8 ---- + #ifdef HAVE_CONFIG_H + #include "config.h" + #endif + + #ifndef CANT_BUILD_SERVER + #include <benson/psaf_queue.h> *************** *** 106,107 **** --- 112,114 ---- } + #endif /* CANT_BUILD_SERVER */ |