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 | 6cd3b822a3e34963cd744d4dbc5de07b349228a0 (patch) | |
tree | a3f7bdf879b8b6940eac7fe469171e52c78bf9b4 /configure.in | |
parent | 0e21116e52e2d398891dab59dfe7f6c98fcb4f0f (diff) | |
download | mariadb-git-6cd3b822a3e34963cd744d4dbc5de07b349228a0.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" |