summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2008-03-02 18:08:50 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-03-02 18:08:50 +0000
commitd9c245e137faae885e4fe82624a7b0624bce8f9e (patch)
tree3d317d1594dba63dd2cef285e318136d7f20d444 /configure.in
parent2bf3084cd0520c6f5fa7e51fb126e517fa40483c (diff)
downloadgdk-pixbuf-d9c245e137faae885e4fe82624a7b0624bce8f9e.tar.gz
Compare using = instead of ==, which is portable. (#490787, Thomas
2008-03-02 Johan Dahlin <johan@gnome.org> * configure.in: Compare using = instead of ==, which is portable. (#490787, Thomas Klausner) svn path=/trunk/; revision=19689
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 76bbe180e..cb1e8174b 100644
--- a/configure.in
+++ b/configure.in
@@ -156,7 +156,7 @@ AM_CONDITIONAL(HAVE_CXX, test "$CXX" != "")
gtk_save_cxxflags="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS -x objective-c++"
AC_TRY_COMPILE([@interface Foo @end],,OBJC=yes,OBJC=no)
-AM_CONDITIONAL(HAVE_OBJC, test "$OBJC" == "yes")
+AM_CONDITIONAL(HAVE_OBJC, test "$OBJC" = "yes")
CXXFLAGS="$gtk_save_cxxflags"
AC_LANG_RESTORE