diff options
author | unknown <konstantin@mysql.com> | 2004-02-04 20:51:26 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2004-02-04 20:51:26 +0300 |
commit | 91f51913fe8366b0c9c2e008a2a50f535e3b8e2e (patch) | |
tree | a3f7bdf879b8b6940eac7fe469171e52c78bf9b4 /configure.in | |
parent | 3886b5620b2e0785cf12598b1b010383dc937e07 (diff) | |
download | mariadb-git-91f51913fe8366b0c9c2e008a2a50f535e3b8e2e.tar.gz |
Fix for bug #2214:
"CC: ERROR File = item.h, Line = 401 The identifier strtoll is undefined"
(compilation failure on SGI IRIX + MIPSPro 7.41)
Compilation script implemented.
Tested in 32 and 64 bit mode
configure.in:
Fix for bug #2214: we should not reset CXXFLAGS on IRIX for build
script to work
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index fd9f6a4f721..bc9bad931ad 100644 --- a/configure.in +++ b/configure.in @@ -1053,7 +1053,7 @@ case $SYSTEM_TYPE in echo "Using --with-named-thread=-lpthread" with_named_thread="-lpthread" fi - CXXFLAGS="-D_BOOL" + CXXFLAGS="$CXXFLAGS -D_BOOL" ;; *aix4.3*) echo "Adding defines for AIX" |