Changes by: yura
Update of /cvs/linux-ntfs/ntfsprogs
In directory delta357:/tmp/cvs-serv28802
Modified Files:
configure.ac
Log Message:
Disable debug logging by default (seriously increase speed)
Index: configure.ac
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/configure.ac,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -p -r1.112 -r1.113
--- configure.ac 5 Nov 2006 21:40:57 -0000 1.112
+++ configure.ac 13 Nov 2006 15:38:43 -0000 1.113
@@ -143,11 +143,12 @@ AH_TEMPLATE([NTFS_DISABLE_DEBUG_LOGGING]
[Define this if you want to compile out the debug log messages.
This will reduce the size of the binaries.])
AC_ARG_ENABLE(debug-logging,
- AS_HELP_STRING(--disable-debug-logging,Remove debug logging from the code),
- if test "$enable_debug_logging" == "no"; then
- AC_DEFINE(NTFS_DISABLE_DEBUG_LOGGING)
- fi,
+ AS_HELP_STRING(--enable-debug-logging,Add debug logging to the code),,
+ enable_debug_logging=no
)
+if test "$enable_debug_logging" == "no"; then
+ AC_DEFINE(NTFS_DISABLE_DEBUG_LOGGING)
+fi
# Use GNU extensions if available.
AC_GNU_SOURCE
|