summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-07-04 02:42:52 -0600
committerEduardo Chappa <chappa@washington.edu>2020-07-04 02:42:52 -0600
commitc566cd0e4a7d9424a95c7d7c16f861e458bee8f1 (patch)
treeb2c604c2e35621be166e0e8a902cc0dd291e4948 /configure
parentf720e89f631da58c355ead60b35225e43d0d9d33 (diff)
downloadalpine-c566cd0e4a7d9424a95c7d7c16f861e458bee8f1.tar.xz
* When building Alpine, the option --disable-debug will only affect if
its binary is compiled with debug, and not the ability of alpine to generate internal debug. Alpine will not write debug files unless started with the option -d, so for example "alpine -d 2" will generate a debug file at level 2, but just issuing the alpine command will not write any debug to a file.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure15
1 files changed, 8 insertions, 7 deletions
diff --git a/configure b/configure
index f902aa2..9d11f5e 100755
--- a/configure
+++ b/configure
@@ -1578,7 +1578,7 @@ Optional Features:
--enable-dmalloc Enable dmalloc debugging
--enable-osx-universal-binaries
Produce universal binaries under OS X [[default=no]]
- --disable-debug Exclude debug messages from source
+ --disable-debug Exclude debug from the binary
--disable-optimization Exclude optimizing compiler flags
--disable-mouse Disable mouse support
--enable-quotas Enable disk quota checking on startup
@@ -15157,12 +15157,6 @@ fi
if test x$enable_debug != "xno" ; then
AM_CFLAGS="$AM_CFLAGS -g"
-
-$as_echo "#define DEBUG 1" >>confdefs.h
-
-
-$as_echo "#define DEBUGJOURNAL 1" >>confdefs.h
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
@@ -15170,6 +15164,13 @@ else
$as_echo "no" >&6; }
fi
+$as_echo "#define DEBUG 1" >>confdefs.h
+
+
+$as_echo "#define DEBUGJOURNAL 1" >>confdefs.h
+
+
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking option: optimization is enabled" >&5
$as_echo_n "checking option: optimization is enabled... " >&6; }
# Check whether --enable-optimization was given.