summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2003-02-21 17:42:48 +0100
committerunknown <lenz@mysql.com>2003-02-21 17:42:48 +0100
commit86efca41accb104aab8300c3c229b5784487b2a1 (patch)
treea5e7c6a13ce232f4f1bbe9fdbeab8a43c2db0746 /configure.in
parent857e77a16000116dcd2ce295cc181cddc8d30437 (diff)
downloadmariadb-git-86efca41accb104aab8300c3c229b5784487b2a1.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