summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2014-01-21 12:34:46 +0100
committerHaru <haru@dotalux.com>2014-01-21 12:34:46 +0100
commit9701fe324412112c6288afbc956b299f2b9cc779 (patch)
treea8e383e877137567d50b431f564a21700526b173 /configure
parent284a1631b40f442e058dabd9fd31301b9e50e71b (diff)
downloadhercules-9701fe324412112c6288afbc956b299f2b9cc779.tar.gz
hercules-9701fe324412112c6288afbc956b299f2b9cc779.tar.bz2
hercules-9701fe324412112c6288afbc956b299f2b9cc779.tar.xz
hercules-9701fe324412112c6288afbc956b299f2b9cc779.zip
Fixed --disable-packetver-re / --enable-packetver-re in ./configure
- Follow-up to c50e094dff1898badd4136d9cdeb7318c803cb61 Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index 7142ed479..a0cf9ecad 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in d0f16b7.
+# From configure.in 284a163.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69.
#
@@ -1328,8 +1328,8 @@ Optional Features:
--enable-manager=ARG memory managers: no, builtin, memwatch, dmalloc,
gcollect, bcheck (defaults to builtin)
--enable-packetver=ARG Sets the PACKETVER define. (see src/common/mmo.h)
- --disable-packetver-re Sets or unsets the PACKETVER_RE define - see
- src/common/mmo.h (currently enabled by default)
+ --enable-packetver-re Sets or unsets the PACKETVER_RE define - see
+ src/common/mmo.h (currently disabled by default)
--enable-debug[=ARG] Compiles extra debug code. (disabled by default)
(available options: yes, no, gdb)
--enable-buildbot[=ARG] (available options: yes, no)
@@ -3485,7 +3485,7 @@ if test "${enable_packetver_re+set}" = set; then :
esac
else
- enable_packetver_re="yes"
+ enable_packetver_re="no"
fi
@@ -6232,10 +6232,10 @@ fi
#
case $enable_packetver_re in
"yes")
- # default value
- CFLAGS="$CFLAGS -DDISABLE_PACKETVER_RE"
+ CFLAGS="$CFLAGS -DENABLE_PACKETVER_RE"
;;
"no")
+ # default value
;;
esac