summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJan Djärv <jan.h.d@swipnet.se>2003-11-16 18:32:34 +0000
committerJan Djärv <jan.h.d@swipnet.se>2003-11-16 18:32:34 +0000
commit6f458311fd9b75162e09580f03ec3c8483360101 (patch)
treef77b0042b9152ab7196adeb437aac1dab9f2b28a /configure.in
parented34dca19e5ec9218c93b14024ef9b865c036a58 (diff)
downloademacs-6f458311fd9b75162e09580f03ec3c8483360101.tar.gz
Fix in HAVE_X_SM test
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 5a3c296d57e..8a4dd5b6e86 100644
--- a/configure.in
+++ b/configure.in
@@ -2255,7 +2255,7 @@ fi
HAVE_X_SM=no
if test "${HAVE_X11}" = "yes"; then
AC_CHECK_HEADER(X11/SM/SMlib.h,
- AC_CHECK_LIB(SM, SmcOpenConnection, HAVE_X_SM=yes, -lICE))
+ AC_CHECK_LIB(SM, SmcOpenConnection, HAVE_X_SM=yes, , -lICE))
if test "${HAVE_X_SM}" = "yes"; then
AC_DEFINE(HAVE_X_SM, 1, [Define to 1 if you have the SM library (-lSM).])