added --enable-debug configure switch

This commit is contained in:
hsn 2004-01-03 15:47:42 +00:00
parent 28f4ef210c
commit cd426a67e7
3 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,8 @@
Version NEXT Version NEXT
sven has added fspget URL command to setup.sh. sven has added fspget URL command to setup.sh.
fixed case for mklargefile.py in tests/Makefile.am fixed case for mklargefile.py in tests/Makefile.am
added --enable-debug switch to configure for enabling extra
debuging code in client library
Version 2.8.1b18 - 25 Nov 24 2003 Version 2.8.1b18 - 25 Nov 24 2003
This is MINIMUM REQUIRED VERSION for applications which are using This is MINIMUM REQUIRED VERSION for applications which are using

1
TODO
View File

@ -88,6 +88,7 @@ libraries and support for FSP protocol
====================================== ======================================
DONE: FSP library for Java DONE: FSP library for Java
DONE: FSP over HTTP
WIP: new small,light fsplib for C. WIP: new small,light fsplib for C.
FSP backend for APT FSP backend for APT
FSP plugin do Netscape/MSIE FSP plugin do Netscape/MSIE

View File

@ -78,6 +78,8 @@ if test "${enable_maintainer_mode+set}" = set; then
CFLAGS="-g3 $ac_cv_prog_gcc_flags" CFLAGS="-g3 $ac_cv_prog_gcc_flags"
AC_CHECK_LIB(efence,EF_Abort) AC_CHECK_LIB(efence,EF_Abort)
fi fi
AC_MSG_CHECKING([if enable extra debug code])
AC_ARG_ENABLE(debug,[Enable client library debuging],AC_DEFINE(DEBUG,1,[Define if you want more debug messages]) AC_MSG_RESULT(YES),AC_MSG_RESULT(NO))
AC_HEADER_STDC AC_HEADER_STDC
AC_CHECK_HEADERS(limits.h sys/syslimits.h errno.h) AC_CHECK_HEADERS(limits.h sys/syslimits.h errno.h)
AC_CHECK_HEADERS(string.h memory.h strings.h unistd.h sys/resource.h utime.h) AC_CHECK_HEADERS(string.h memory.h strings.h unistd.h sys/resource.h utime.h)