diff options
author | Lukas Larsson <[email protected]> | 2014-04-24 15:20:08 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2014-05-09 18:03:56 +0200 |
commit | 12cd5e5b394623fab9907622ad99163c5b9350e1 (patch) | |
tree | fd7823917302ed9e3d0b9bdb7948e53a77aad0d1 /lib/megaco | |
parent | 07b8f441ca711f9812fad9e9115bab3c3aa92f79 (diff) | |
download | otp-12cd5e5b394623fab9907622ad99163c5b9350e1.tar.gz otp-12cd5e5b394623fab9907622ad99163c5b9350e1.tar.bz2 otp-12cd5e5b394623fab9907622ad99163c5b9350e1.zip |
erts: Fix various autoconf issues
* Check of atomics on bsd
* Add --enable-systemd for epmd
* Remove unused --enable-tsp option
Diffstat (limited to 'lib/megaco')
-rw-r--r-- | lib/megaco/aclocal.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/megaco/aclocal.m4 b/lib/megaco/aclocal.m4 index 2b47f7c4bc..ed492d55ff 100644 --- a/lib/megaco/aclocal.m4 +++ b/lib/megaco/aclocal.m4 @@ -1118,7 +1118,7 @@ case "$THR_LIB_NAME" in [Define if you have the "ose_spi/ose_spi.h" header file.])) ;; esac - if test "x$THR_LIB_NAME" == "xpthread"; then + if test "x$THR_LIB_NAME" = "xpthread"; then case $host_os in openbsd*) # The default stack size is insufficient for our needs @@ -1222,7 +1222,7 @@ case "$THR_LIB_NAME" in dnl dnl Check for functions dnl - if test "x$THR_LIB_NAME" == "xpthread"; then + if test "x$THR_LIB_NAME" = "xpthread"; then AC_CHECK_FUNC(pthread_spin_lock, \ [ethr_have_native_spinlock=yes \ AC_DEFINE(ETHR_HAVE_PTHREAD_SPIN_LOCK, 1, \ |