Skip to content

Commit

Permalink
Fix --enable-ethread-pre-pentium4-compatibility
Browse files Browse the repository at this point in the history
The `configure' command line argument
`--enable-ethread-pre-pentium4-compatibility'
had no effect.
  • Loading branch information
rickard-green committed Sep 17, 2010
1 parent 17224a3 commit 998f4fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions erts/aclocal.m4
Expand Up @@ -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,
Expand Down

0 comments on commit 998f4fd

Please sign in to comment.