diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2010-06-18 10:11:09 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2010-06-18 10:11:09 +0000 |
| commit | 6710c8350845fd2ade45de4f2ae668ae9474f7cd (patch) | |
| tree | 427ac2cd092947eb06157b332f92a3cb5c20e1f4 /configure.in | |
| parent | 4da4ef0b6705323140db1ea766b019ad2f0a84f0 (diff) | |
Fixed configure script portability problem (STR #2379)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7648 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 4 |
1 files 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" |
