svn commit: samba r15423 - branches/SAMBA_3_0/source trunk/source

jpeach at samba.org jpeach at samba.org
Thu May 4 00:18:19 GMT 2006


Author: jpeach
Date: 2006-05-04 00:18:17 +0000 (Thu, 04 May 2006)
New Revision: 15423

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15423

Log:
Correct comparison logic so that libunwind can be correctly detected.

Modified:
   branches/SAMBA_3_0/source/configure.in
   trunk/source/configure.in


Changeset:
Modified: branches/SAMBA_3_0/source/configure.in
===================================================================
--- branches/SAMBA_3_0/source/configure.in	2006-05-03 20:56:14 UTC (rev 15422)
+++ branches/SAMBA_3_0/source/configure.in	2006-05-04 00:18:17 UTC (rev 15423)
@@ -1256,7 +1256,7 @@
 # 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

Modified: trunk/source/configure.in
===================================================================
--- trunk/source/configure.in	2006-05-03 20:56:14 UTC (rev 15422)
+++ trunk/source/configure.in	2006-05-04 00:18:17 UTC (rev 15423)
@@ -1256,7 +1256,7 @@
 # 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



More information about the samba-cvs mailing list