diff options
author | unknown <heikki@hundin.mysql.fi> | 2004-11-24 19:41:38 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2004-11-24 19:41:38 +0200 |
commit | c3272ae7186bb59a406a671080b98766dc8e4064 (patch) | |
tree | a6c280e20249e9709e652c460657b84444349b55 /innobase/configure.in | |
parent | 185965214dc30750a234968a922dd5bf861a2040 (diff) | |
download | mariadb-git-c3272ae7186bb59a406a671080b98766dc8e4064.tar.gz |
configure.in:
Fix linking error in 5.0: the build system for Linux/S390 does not have inlining working in the compiler; remove inlining on that system
innobase/configure.in:
Fix linking error in 5.0: the build system for Linux/S390 does not have inlining working in the compiler; remove inlining on that system
Diffstat (limited to 'innobase/configure.in')
-rw-r--r-- | innobase/configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/innobase/configure.in b/innobase/configure.in index 652291f1f38..d83da9fdc5c 100644 --- a/innobase/configure.in +++ b/innobase/configure.in @@ -110,6 +110,9 @@ esac case "$target" in i[[4567]]86-*-*) CFLAGS="$CFLAGS -DUNIV_INTEL_X86";; + # The compiler on Linux/S390 does not seem to have inlining + s390-*-*) + CFLAGS="$CFLAGS -DUNIV_MUST_NOT_INLINE";; esac AC_OUTPUT(Makefile os/Makefile ut/Makefile btr/Makefile dnl |