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
