diff options
author | Rickard Green <[email protected]> | 2010-09-17 23:40:06 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2010-09-17 23:40:06 +0200 |
commit | 998f4fdab59d7cb77b391b46ddd317deb574e721 (patch) | |
tree | a9b9a89b8c099748dbcd0cf64d8ef0e7f91b9a03 | |
parent | 17224a3d31d25ce6daa4de63b52b26bee9564bcd (diff) | |
download | otp-998f4fdab59d7cb77b391b46ddd317deb574e721.tar.gz otp-998f4fdab59d7cb77b391b46ddd317deb574e721.tar.bz2 otp-998f4fdab59d7cb77b391b46ddd317deb574e721.zip |
Fix --enable-ethread-pre-pentium4-compatibility
The `configure' command line argument
`--enable-ethread-pre-pentium4-compatibility'
had no effect.
-rw-r--r-- | erts/aclocal.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/aclocal.m4 b/erts/aclocal.m4 index 3b1edd7605..82014fe23d 100644 --- a/erts/aclocal.m4 +++ b/erts/aclocal.m4 @@ -1104,10 +1104,10 @@ AC_ARG_ENABLE(ethread-pre-pentium4-compatibility, [enable compatibility with x86 processors before pentium 4 (back to 486) in the ethread library]), [ case "$enableval" in yes) enable_ethread_pre_pentium4_compatibility=yes ;; - *) enable_ethread_pre_pentium4_compatibilit=no ;; - esac ], enable_ethread_pre_pentium4_compatibilit=no) + *) enable_ethread_pre_pentium4_compatibility=no ;; + esac ], enable_ethread_pre_pentium4_compatibility=no) -test $enable_ethread_pre_pentium4_compatibilit = yes && +test $enable_ethread_pre_pentium4_compatibility = yes && AC_DEFINE(ETHR_PRE_PENTIUM4_COMPAT, 1, [Define if you want compatibilty with x86 processors before pentium4.]) AC_ARG_WITH(libatomic_ops, |