diff options
author | unknown <monty@mashka.mysql.fi> | 2003-01-09 11:11:06 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-01-09 11:11:06 +0200 |
commit | afbd3fc503ece8cfcccb5bda04ce85d249234948 (patch) | |
tree | f04a9d72de14605a0411da0263bf834e80688166 /BUILD | |
parent | cf2ef3c68f696707671a96c8a2ad6c8449390f4a (diff) | |
download | mariadb-git-afbd3fc503ece8cfcccb5bda04ce85d249234948.tar.gz |
Portability fix
BUILD/compile-alpha-cxx:
Don't do depend files with Compaq compiler
configure.in:
Don't do depend files with Compaq compiler
extra/mysql_waitpid.c:
Portability fixes
mysql-test/mysql-test-run.sh:
Better timeout for valgrind
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/compile-alpha-cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD/compile-alpha-cxx b/BUILD/compile-alpha-cxx index 3e6eee9a0d6..a342d927868 100755 --- a/BUILD/compile-alpha-cxx +++ b/BUILD/compile-alpha-cxx @@ -4,7 +4,7 @@ make -k clean /bin/rm -f */.deps/*.P config.cache innobase/config.cache bdb/build_unix/config.cache mysql-*.tar.gz aclocal; autoheader; aclocal; automake; autoconf -CC=ccc CFLAGS="-fast" CXX=cxx CXXFLAGS="-fast -noexceptions -nortti" ./configure --prefix=/usr/local/mysql --disable-shared --with-extra-charsets=complex --enable-thread-safe-client --with-mysqld-ldflags=-non_shared --with-client-ldflags=-non_shared --without-extra-tools +CC=ccc CFLAGS="-fast" CXX=cxx CXXFLAGS="-fast -noexceptions -nortti" ./configure --prefix=/usr/local/mysql --disable-shared --with-extra-charsets=complex --enable-thread-safe-client --with-mysqld-ldflags=-non_shared --with-client-ldflags=-non_shared --without-extra-tools --disable-dependency-tracking make -j2 find . -name ".deps" | xargs rm -r |