summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorlenz@mysql.com <>2003-02-21 17:42:48 +0100
committerlenz@mysql.com <>2003-02-21 17:42:48 +0100
commit433742e40c2e19df39a2c7fdfe830ff1c428a6ad (patch)
treea5e7c6a13ce232f4f1bbe9fdbeab8a43c2db0746 /configure.in
parent233a1c83e8774d29d26ba480b3c04d89b6767684 (diff)
downloadmariadb-git-433742e40c2e19df39a2c7fdfe830ff1c428a6ad.tar.gz
- removed +DD64 compile option from the HPUX11 default CFLAGS in
configure.in - there are 32bit installations of HPUX11 out there and compiling for these by manually adding +DAportable to CFLAGS did not work. Better add +DD64 manually, if you need it.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index f7799c44442..71639bafd63 100644
--- a/configure.in
+++ b/configure.in
@@ -987,8 +987,8 @@ case $SYSTEM_TYPE in
# Fixes for HPUX 11.0 compiler
if test "$ac_cv_prog_gcc" = "no"
then
- CFLAGS="$CFLAGS +DD64 -DHAVE_BROKEN_INLINE"
- CXXFLAGS="$CXXFLAGS +DD64 +O2"
+ CFLAGS="$CFLAGS -DHAVE_BROKEN_INLINE"
+ CXXFLAGS="$CXXFLAGS +O2"
MAX_C_OPTIMIZE=""
MAX_CXX_OPTIMIZE=""
fi