From 7fbc91995e2d3330daed6353ec417a0b08408ed4 Mon Sep 17 00:00:00 2001 From: James Peach Date: Thu, 4 May 2006 00:18:17 +0000 Subject: r15423: Correct comparison logic so that libunwind can be correctly detected. (This used to be commit 918f56b6de6e1297a53d88050d78d87330f7ba44) --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/configure.in b/source3/configure.in index cf079800fb..bb4cf82f35 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -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 -- cgit