From: Robert K. <may...@us...> - 2001-12-05 23:42:52
|
Update of /cvsroot/bitcollider/bitcollider In directory usw-pr-cvs1:/tmp/cvs-serv31742 Modified Files: aclocal.m4 config.h.in Log Message: Values sent to the website are now being properly escaped. Index: aclocal.m4 =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/aclocal.m4,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** aclocal.m4 2001/12/05 18:43:52 1.8 --- aclocal.m4 2001/12/05 23:42:49 1.9 *************** *** 103,227 **** AC_SUBST($1)]) ! # serial 40 AC_PROG_LIBTOOL ! AC_DEFUN(AC_PROG_LIBTOOL, [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl ! # Save cache, so that ltconfig can load it ! AC_CACHE_SAVE [...3515 lines suppressed...] ! dnl This is just to silence aclocal about the macro not being used ! ifelse([AC_DISABLE_FAST_INSTALL])dnl # Like AC_CONFIG_HEADER, but automatically create stamp file. --- 3415,3429 ---- ]) ! # old names ! AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) ! AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) ! AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) ! AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) ! AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) ! AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) ! AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) ! # This is just to silence aclocal about the macro not being used ! ifelse([AC_DISABLE_FAST_INSTALL]) # Like AC_CONFIG_HEADER, but automatically create stamp file. Index: config.h.in =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/config.h.in,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** config.h.in 2001/12/05 18:43:52 1.8 --- config.h.in 2001/12/05 23:42:49 1.9 *************** *** 12,15 **** --- 12,18 ---- #undef SIZEOF_LONG + /* Define if you have the <dlfcn.h> header file. */ + #undef HAVE_DLFCN_H + /* Name of package */ #undef PACKAGE |