FreeBSD library naming fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5756 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Karsten Ballüder
2000-01-31 16:02:31 +00:00
parent 1e92909e9a
commit 4bdad4464e

View File

@@ -1525,7 +1525,13 @@ dnl )
dnl )
TOOLKIT_INCLUDE="$GTK_CFLAGS"
GUI_TK_LIBRARY="$GTK_LIBS -lgthread"
dnl On FreeBSD, the libs are called gtk12 etc, so we must append gthread12
echo $GTK_LIBS | fgrep -q "glib12"
if test $? = 0 ; then
GUI_TK_LIBRARY="$GTK_LIBS -gthread12"
else
GUI_TK_LIBRARY="$GTK_LIBS -lgthread"
fi
TOOLKIT=GTK
AFMINSTALL=afminstall