From 6710c8350845fd2ade45de4f2ae668ae9474f7cd Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Fri, 18 Jun 2010 10:11:09 +0000 Subject: Fixed configure script portability problem (STR #2379) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7648 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 468a0a674..68e144451 100644 --- a/configure.in +++ b/configure.in @@ -97,7 +97,7 @@ case $uname in 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 @@ if test x$enable_shared = xyes; then 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" -- cgit v1.2.3