From 1cdfacebb63dd2c2e2d2be46d1a34b594453ad1a Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Sun, 5 May 2002 19:57:10 +0000 Subject: [PATCH] Fix problem with == in test argument. (#80732, Hidetoshi Tajima) Sun May 5 15:56:50 2002 Owen Taylor * configure.in: Fix problem with == in test argument. (#80732, Hidetoshi Tajima) --- ChangeLog | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-2 | 5 +++++ ChangeLog.pre-2-4 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ configure.in | 2 +- 7 files changed, 31 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 90915b7314..b6bba94aa6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun May 5 15:56:50 2002 Owen Taylor + + * configure.in: Fix problem with == in test argument. + (#80732, Hidetoshi Tajima) + Sun May 5 16:42:32 2002 Kristian Rietveld The "big treeview focus patch". Fixes several issues and adds some diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 90915b7314..b6bba94aa6 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Sun May 5 15:56:50 2002 Owen Taylor + + * configure.in: Fix problem with == in test argument. + (#80732, Hidetoshi Tajima) + Sun May 5 16:42:32 2002 Kristian Rietveld The "big treeview focus patch". Fixes several issues and adds some diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 90915b7314..b6bba94aa6 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +Sun May 5 15:56:50 2002 Owen Taylor + + * configure.in: Fix problem with == in test argument. + (#80732, Hidetoshi Tajima) + Sun May 5 16:42:32 2002 Kristian Rietveld The "big treeview focus patch". Fixes several issues and adds some diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 90915b7314..b6bba94aa6 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Sun May 5 15:56:50 2002 Owen Taylor + + * configure.in: Fix problem with == in test argument. + (#80732, Hidetoshi Tajima) + Sun May 5 16:42:32 2002 Kristian Rietveld The "big treeview focus patch". Fixes several issues and adds some diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 90915b7314..b6bba94aa6 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Sun May 5 15:56:50 2002 Owen Taylor + + * configure.in: Fix problem with == in test argument. + (#80732, Hidetoshi Tajima) + Sun May 5 16:42:32 2002 Kristian Rietveld The "big treeview focus patch". Fixes several issues and adds some diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 90915b7314..b6bba94aa6 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Sun May 5 15:56:50 2002 Owen Taylor + + * configure.in: Fix problem with == in test argument. + (#80732, Hidetoshi Tajima) + Sun May 5 16:42:32 2002 Kristian Rietveld The "big treeview focus patch". Fixes several issues and adds some diff --git a/configure.in b/configure.in index a897d7ffd3..41bad0a336 100644 --- a/configure.in +++ b/configure.in @@ -1027,7 +1027,7 @@ if test "x$gdktarget" = "xx11"; then use_solaris_xinerama=yes AC_CHECK_LIB(Xext, XineramaGetInfo, use_solaris_xinerama=yes, use_solaris_xinerama=no) - if test "x$use_solaris_xinerama" == "xyes"; then + if test "x$use_solaris_xinerama" = "xyes"; then AC_CHECK_HEADER(X11/extensions/xinerama.h, if test -z "`echo $x_extra_libs $x_libs | grep "\-lXext" 2> /dev/null`"; then x_extra_libs="-lXext $x_extra_libs"