mirror of https://github.com/fltk/fltk
Fixed configure script portability problem (STR #2379)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7648 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
4da4ef0b67
commit
6710c83508
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue