summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-09-21 16:42:42 +0000
committerFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-09-21 16:42:42 +0000
commit8da521018cf81a474464895df02e1ef410045ead (patch)
treeb3b99b3b0f89ac515a9c8f3d9606393a90ba32e2 /configure.in
parente4472dfd54f4dd2549fc46008004b31b282cbb41 (diff)
downloadhercules-8da521018cf81a474464895df02e1ef410045ead.tar.gz
hercules-8da521018cf81a474464895df02e1ef410045ead.tar.bz2
hercules-8da521018cf81a474464895df02e1ef410045ead.tar.xz
hercules-8da521018cf81a474464895df02e1ef410045ead.zip
* itemdb.c/h using a static array of 32k struct item_data* entries (faster itemdb loockup and a first step to remove map_session_data->inventory_data).
* Fixed a typo in the configure script that replaced CFLAGS with CPPFLAGS when -Wno-pointer-sign is supported by the compiler. [FlavioJS] git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11259 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 206de53f9..8e5cec894 100644
--- a/configure.in
+++ b/configure.in
@@ -133,7 +133,7 @@ AC_COMPILE_IFELSE(
AC_MSG_CHECKING([whether $CC supports -Wno-pointer-sign])
OLD_CFLAGS="$CFLAGS"
-CFLAGS="$CPPFLAGS -Wno-pointer-sign"
+CFLAGS="$CFLAGS -Wno-pointer-sign"
AC_COMPILE_IFELSE(
[int foo;],
[AC_MSG_RESULT([yes])],