Author: AlbrechtS
Date: 2010-06-18 03:11:09 -0700 (Fri, 18 Jun 2010)
New Revision: 7648
Log:
Fixed configure script portability problem (STR #2379)

Modified:
   branches/branch-1.3/configure.in

Modified: branches/branch-1.3/configure.in
===================================================================
--- branches/branch-1.3/configure.in    2010-06-17 22:08:09 UTC (rev 7647)
+++ branches/branch-1.3/configure.in    2010-06-18 10:11:09 UTC (rev 7648)
@@ -97,7 +97,7 @@
            DSOFLAGS="$DSOFLAGS -mno-cygwin"
        else
            # we target cygwin in combination with X11
-           if test x$enable_x11 == xyes; then
+           if test x$enable_x11 = xyes; then
                uname_GUI="X11$uname"
            fi
        fi
@@ -300,7 +300,7 @@
                IMGDSONAME="mgwfltknox_images-$FL_API_VERSION.dll"
                CAIRODSONAME="mgwfltknox_cairo-$FL_API_VERSION.dll"
            else
-               if test x$enable_x11 == xyes; then
+               if test x$enable_x11 = xyes; then
                    DSONAME="cygfltk-$FL_API_VERSION.dll"
                    FLDSONAME="cygfltk_forms-$FL_API_VERSION.dll"
                    GLDSONAME="cygfltk_gl-$FL_API_VERSION.dll"

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to