diff options
author | unknown <monty@mysql.com> | 2004-05-28 02:00:34 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-05-28 02:00:34 +0300 |
commit | 3b36f93e57cd2f4512998364ce65e0d265d722d6 (patch) | |
tree | 0172cde8317cee600aceb317663b2c13ce7701f0 /configure.in | |
parent | 59d93c3236da251b6c0840e513f3b206cb13afb3 (diff) | |
download | mariadb-git-3b36f93e57cd2f4512998364ce65e0d265d722d6.tar.gz |
Portability fix for HPUX
configure.in:
Ensure that innodb gets system specific CFLAGS and CXXFLAGS
innobase/os/os0file.c:
Don't use pread/pwrite on systems where these are not working.
This fixes a bug on HPUX, where InnoDB didn't create the ibdata1 file correctly.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 29a887076ac..f2b66d1e09d 100644 --- a/configure.in +++ b/configure.in @@ -2484,6 +2484,9 @@ AC_SUBST(netware_dir) AC_SUBST(linked_netware_sources) AM_CONDITIONAL(HAVE_NETWARE, test "$netware_dir" = "netware") +# Ensure that table handlers gets all modifications to CFLAGS/CXXFLAGS +export CC CXX CFLAGS CXXFLAGS LD LDFLAGS AR + if test "$with_server" = "yes" -o "$THREAD_SAFE_CLIENT" != "no" then AC_DEFINE(THREAD) |