From: John L. <jr...@us...> - 2008-01-14 05:09:48
|
Update of /cvsroot/wxlua/wxLua In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv16536/wxLua Modified Files: configure Log Message: Use wx-config --libs base,core,adv, i.e. add base,core since they may not be added for old wx-config versions. Note: 2.9 should do this for us. Honor --enable-shared=no for wxLua to generate static libs and properly link to them using -l../lib/wxlua_xxx.a and not just -lwxlua_xxx Index: configure =================================================================== RCS file: /cvsroot/wxlua/wxLua/configure,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 *** configure 12 Jan 2008 09:58:46 -0000 1.64 --- configure 14 Jan 2008 05:09:44 -0000 1.65 *************** *** 6104,6110 **** CFLAGS="$CFLAGS $WX_CFLAGS_ONLY" ! #WX_LIKE_LIBNAME([_WX_ADV_LIBNAME], [wx], [adv]) #LIBS="$LIBS -l$_WX_ADV_LIBNAME $WX_LIBS" ! LIBS=`$WX_CONFIG_NAME $WXCONFIG_FLAGS --libs adv` { echo "$as_me:$LINENO: checking if wxWidgets Adv bindings are available" >&5 --- 6104,6111 ---- CFLAGS="$CFLAGS $WX_CFLAGS_ONLY" [...1015 lines suppressed...] ! ! WXLUA_LIBNAMES="$WXLUA_LIBNAMES $_TMP" WXLUA_LDFLAGS="$WXLUA_LDFLAGS -l$TMP" *************** *** 11832,11836 **** echo " " ! echo " - wxWidgets library information summary: " echo " wx-config --release : '`$WX_CONFIG_NAME $WXCONFIG_FLAGS --release`'" echo " wx-config --version-full : '`$WX_CONFIG_NAME $WXCONFIG_FLAGS --version-full`'" --- 12088,12095 ---- echo " " ! echo " - wxWidgets wx-config information summary: " ! echo " wx-config : '$WX_CONFIG_NAME'" ! echo " wx-config flags : '$WXCONFIG_FLAGS'" ! echo " wx-config with args : '$WX_CONFIG_WITH_ARGS'" echo " wx-config --release : '`$WX_CONFIG_NAME $WXCONFIG_FLAGS --release`'" echo " wx-config --version-full : '`$WX_CONFIG_NAME $WXCONFIG_FLAGS --version-full`'" |