diff options
author | heikki@donna.mysql.fi <> | 2001-05-26 21:58:59 +0300 |
---|---|---|
committer | heikki@donna.mysql.fi <> | 2001-05-26 21:58:59 +0300 |
commit | b3675fc5f7c6036791791e3b01a0bb9e1b391fe8 (patch) | |
tree | bf62d04e36a4bbb5ec3fa445cca8e6c5ecf95f57 /innobase/configure.in | |
parent | 49ac18c7c90c0a9fdff3efe50f3b94fdda4db68e (diff) | |
download | mariadb-git-b3675fc5f7c6036791791e3b01a0bb9e1b391fe8.tar.gz |
sync0sync.ic InnoDB now uses XCHG to implement mutex if GCC and x86
configure.in InnoDB now uses XCHG to implement mutex if GCC and x86
Diffstat (limited to 'innobase/configure.in')
-rw-r--r-- | innobase/configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/innobase/configure.in b/innobase/configure.in index 83d302c6dc4..1133ab86221 100644 --- a/innobase/configure.in +++ b/innobase/configure.in @@ -95,6 +95,11 @@ case "$target_os" in CFLAGS="$CFLAGS -DUNIV_MUST_NOT_INLINE";; esac +case "$target" in + i[[4567]]86-*-*) + CFLAGS="$CFLAGS -DUNIV_INTEL_X86";; +esac + AC_OUTPUT(Makefile os/Makefile ut/Makefile btr/Makefile buf/Makefile com/Makefile data/Makefile dict/Makefile dyn/Makefile |