|
From: <cao...@us...> - 2005-07-08 16:17:45
|
Update of /cvsroot/opendlm/opendlm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5108 Modified Files: ChangeLog configure.ac Log Message: Header and CCCP cleanups Index: ChangeLog =================================================================== RCS file: /cvsroot/opendlm/opendlm/ChangeLog,v retrieving revision 1.89 retrieving revision 1.90 diff -C2 -d -r1.89 -r1.90 *** ChangeLog 3 Jun 2005 19:27:13 -0000 1.89 --- ChangeLog 8 Jul 2005 16:17:02 -0000 1.90 *************** *** 1,2 **** --- 1,14 ---- + 2005-07-08 Don Zickus <don...@ca...> + * touched all the C files to add/remove appropriate header files + * converted all api files to use new dlm_log for logging + * cleaned up the cccp directory; started to incorporate layers + - bottom layer for direct OS communication + - middle layer for protocol stuff + - top layer for api to the dlm + - removed cccp_input.c, cccp_output.c, cccp_kernel.c + * more separation of the cccp from the dlmdk layer, only the + memory and daemon infrastructure are left, I believe + * fixed module warnings when compiling on 2.6 kernel by utilizing + a Makefile.in instead of Makefile.am in the src/kernel directory 2005-05-31 Don Zickus <don...@ca...> * Makefile.am Index: configure.ac =================================================================== RCS file: /cvsroot/opendlm/opendlm/configure.ac,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** configure.ac 3 Jun 2005 19:27:14 -0000 1.33 --- configure.ac 8 Jul 2005 16:17:02 -0000 1.34 *************** *** 553,572 **** AC_CHECK_LIB(dl, dlopen, , [ AC_MSG_ERROR("error: failed to detect libdl")]) - # check for glib - AC_PATH_PROGS(GLIBCONFIG, glib-config, glib12-config) - AC_PATH_PROGS(GLIBCONFIG, glib12-config, glib13-config) - AC_PATH_PROGS(GLIBCONFIG, glib13-config) - AC_MSG_CHECKING(which glib config exists) - if test "X${GLIBCONFIG}" = "X"; then - AC_MSG_ERROR(You need the glib development package to continue. - You can get the source from ftp://ftp.gtk.org/pub/gtk/v1.2/ - or you can locate it via http://www.gtk.org/download/) - else - AC_MSG_RESULT("using $GLIBCONFIG") - fi - GLHEAD=`$GLIBCONFIG --cflags` - GLIBLIB=`$GLIBCONFIG --libs` - LIBS="$LIBS $GLIBLIB" - CPPFLAGS="$CPPFLAGS $GLHEAD" fi --- 553,556 ---- |