aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2003-11-16 18:32:34 +0000
committerJan Djärv2003-11-16 18:32:34 +0000
commitd77711a5a652d60467d76a3b642600a723565c51 (patch)
treef134c496ba460c801accccdd629f01ea457704e7
parent037558bfd948e55ab902497ccea5cb1a6b499990 (diff)
downloademacs-d77711a5a652d60467d76a3b642600a723565c51.tar.gz
emacs-d77711a5a652d60467d76a3b642600a723565c51.zip
Fix in HAVE_X_SM test
-rw-r--r--ChangeLog1
-rw-r--r--configure.in2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2abd179f5ff..d2d1d0e32ab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
2 2
3 * configure.in (HAVE_GTK_MULTIDISPLAY): Check if GTK can handle 3 * configure.in (HAVE_GTK_MULTIDISPLAY): Check if GTK can handle
4 multiple displays. 4 multiple displays.
5 Wrong number of args to AC_CHECK_LIB for HAVE_X_SM test corrected.
5 6
62003-09-23 Dave Love <fx@gnu.org> 72003-09-23 Dave Love <fx@gnu.org>
7 8
diff --git a/configure.in b/configure.in
index 5a3c296d57e..8a4dd5b6e86 100644
--- a/configure.in
+++ b/configure.in
@@ -2255,7 +2255,7 @@ fi
2255HAVE_X_SM=no 2255HAVE_X_SM=no
2256if test "${HAVE_X11}" = "yes"; then 2256if test "${HAVE_X11}" = "yes"; then
2257 AC_CHECK_HEADER(X11/SM/SMlib.h, 2257 AC_CHECK_HEADER(X11/SM/SMlib.h,
2258 AC_CHECK_LIB(SM, SmcOpenConnection, HAVE_X_SM=yes, -lICE)) 2258 AC_CHECK_LIB(SM, SmcOpenConnection, HAVE_X_SM=yes, , -lICE))
2259 2259
2260 if test "${HAVE_X_SM}" = "yes"; then 2260 if test "${HAVE_X_SM}" = "yes"; then
2261 AC_DEFINE(HAVE_X_SM, 1, [Define to 1 if you have the SM library (-lSM).]) 2261 AC_DEFINE(HAVE_X_SM, 1, [Define to 1 if you have the SM library (-lSM).])