Commit 96634253 authored by unknown's avatar unknown

- always use CXX=gcc (not only when using gcc 3) to avoid a dependency

   on libstdc++ and exceptions

parent 65ec6a41
...@@ -258,10 +258,11 @@ export PATH ...@@ -258,10 +258,11 @@ export PATH
# Build the 4.0 Max binary (includes BDB and UDFs and therefore # Build the 4.0 Max binary (includes BDB and UDFs and therefore
# cannot be linked statically against the patched glibc) # cannot be linked statically against the patched glibc)
# If we want to compile with RAID using gcc 3, we need to use # Use gcc for C and C++ code (to avoid a dependency on libstdc++ and
# gcc instead of g++ to avoid linking problems (RAID code is written in C++) # including exceptions into the code
test -z $CXX && test -z $CC && if gcc -v 2>&1 | grep 'gcc version 3' > /dev/null 2>&1 test -z $CXX && test -z $CC
then then
export CC="gcc"
export CXX="gcc" export CXX="gcc"
fi fi
...@@ -573,6 +574,10 @@ fi ...@@ -573,6 +574,10 @@ fi
# The spec file changelog only includes changes made to the spec file # The spec file changelog only includes changes made to the spec file
# itself # itself
%changelog %changelog
* Thu Feb 12 2004 Lenz Grimmer <lenz@mysql.com>
- when using gcc, _always_ use CXX=gcc
* Tue Feb 03 2004 Lenz Grimmer <lenz@mysql.com> * Tue Feb 03 2004 Lenz Grimmer <lenz@mysql.com>
- added myisam_ftdump to the Server package - added myisam_ftdump to the Server package
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment