diff options
author | konstantin@mysql.com <> | 2004-02-04 20:51:26 +0300 |
---|---|---|
committer | konstantin@mysql.com <> | 2004-02-04 20:51:26 +0300 |
commit | b73b0f7886dba82909bc25cef27f5aada18bb359 (patch) | |
tree | a3f7bdf879b8b6940eac7fe469171e52c78bf9b4 /configure.in | |
parent | 9e4a9f5cc569ad5f840f99b2cd1cc2ebe83c25e3 (diff) | |
download | mariadb-git-b73b0f7886dba82909bc25cef27f5aada18bb359.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
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" |