r15423: Correct comparison logic so that libunwind can be correctly detected.
authorJames Peach <jpeach@samba.org>
Thu, 4 May 2006 00:18:17 +0000 (00:18 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:16:42 +0000 (11:16 -0500)
source/configure.in

index cf079800fbd7524a9a806824555d207a6ef0c1c7..bb4cf82f3577cda22e6218a3084e15a61318a837 100644 (file)
@@ -1256,7 +1256,7 @@ AC_CHECK_LIB(exc, trace_back_stack)
 # any of them.
 AC_MSG_CHECKING([for libunwind])
 save_LIBS=$LIBS
-if test x"$UNAME_P" != xunknown ; then
+if test x"$UNAME_P" = xunknown ; then
     # This probably won't link without the platform-specific libunwind.
     LIBS="$LIBS -lunwind"
 else