From: Francesco M. <fr...@us...> - 2005-11-26 14:20:38
|
Update of /cvsroot/wxlua/wxLua/build/autoconf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14904/build/autoconf Modified Files: configure.ac Log Message: added configure checks for wxLua apps,modules,util options Index: configure.ac =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/autoconf/configure.ac,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** configure.ac 26 Nov 2005 14:06:05 -0000 1.3 --- configure.ac 26 Nov 2005 14:20:30 -0000 1.4 *************** *** 82,85 **** --- 82,110 ---- AM_WXPRESETS_MSG_BEGIN + if [[ "$USE_WXLUAAPP" = "1" ]]; then + echo " - wxLua application ENABLED" + else + echo " - wxLua application DISABLED" + fi + if [[ "$USE_WXLUAEDITAPP" = "1" ]]; then + echo " - wxLuaEdit application ENABLED" + else + echo " - wxLuaEdit application DISABLED" + fi + if [[ "$USE_WXLUADEBUGLIB" = "1" ]]; then + echo " - wxLua debug support ENABLED" + else + echo " - wxLua debug support DISABLED" + fi + if [[ "$USE_WXLUASOCKETLIB" = "1" ]]; then + echo " - wxLua socket support ENABLED" + else + echo " - wxLua socket support DISABLED" + fi + if [[ "$USE_BIN2C" = "1" ]]; then + echo " - wxLua bin2c utility ENABLED" + else + echo " - wxLua bin2c utility DISABLED" + fi AM_WXPRESETS_MSG_END |