From 8c487ddbb25ad19e25046198383e610dcb59b379 Mon Sep 17 00:00:00 2001 From: Thomas Thurman Date: Mon, 18 Feb 2008 01:29:27 +0000 Subject: [PATCH] if we have libSM and its headers, that means we did find it, not that we 2008-02-18 Thomas Thurman * configure.in: if we have libSM and its headers, that means we did find it, not that we didn't. Closes #328210. svn path=/trunk/; revision=3579 --- ChangeLog | 6 ++++++ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6b5eb836f..108c41ad5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-02-18 Thomas Thurman + + * configure.in: if we have libSM and its headers, + that means we did find it, not that we didn't. + Closes #328210. + 2008-02-18 Thomas Thurman * src/core/window.c (warp_grab_pointer): When diff --git a/configure.in b/configure.in index 341fa35ee..e43d1f0e7 100644 --- a/configure.in +++ b/configure.in @@ -426,7 +426,7 @@ case "$METACITY_LIBS" in *) AC_CHECK_LIB(SM, SmcSaveYourselfDone, [AC_CHECK_HEADERS(X11/SM/SMlib.h, - METACITY_LIBS="-lSM -lICE $METACITY_LIBS" found_sm=no)], + METACITY_LIBS="-lSM -lICE $METACITY_LIBS" found_sm=yes)], , $METACITY_LIBS) ;; esac