beginnings of support for MGL shared library (it is crappy as hell in MGL, to begin with)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12341 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
d8bffc1335
commit
223e7fbf29
@ -2027,12 +2027,14 @@ equivalent variable and GTK+ is version 1.2.3 or above.
|
||||
mgl_lib_type=""
|
||||
|
||||
if test "$wxUSE_DEBUG_FLAG" = yes ; then
|
||||
if test -f $MGL_ROOT/lib/debug/$mgl_os/libmgl.a ; then
|
||||
if test -f $MGL_ROOT/lib/debug/$mgl_os/libmgl.a -o \
|
||||
-f $MGL_ROOT/lib/debug/$mgl_os/libmgl.so; then
|
||||
mgl_lib_type=debug
|
||||
fi
|
||||
fi
|
||||
if test "x$mgl_lib_type" = x ; then
|
||||
if test -f $MGL_ROOT/lib/release/$mgl_os/libmgl.a ; then
|
||||
if test -f $MGL_ROOT/lib/release/$mgl_os/libmgl.a -o \
|
||||
-f $MGL_ROOT/lib/release/$mgl_os/libmgl.so; then
|
||||
mgl_lib_type=release
|
||||
else
|
||||
AC_MSG_ERROR([Cannot find MGL libraries, make sure they are compiled.])
|
||||
|
Loading…
Reference in New Issue
Block a user