From: Francesco M. <fr...@us...> - 2007-08-01 10:08:56
|
Update of /cvsroot/wxlua/wxLua In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv7207 Modified Files: Makefile.in configure Log Message: fixed configure script about the new USE_BINDxxx options; also fixed the inter-module dependencies Index: Makefile.in =================================================================== RCS file: /cvsroot/wxlua/wxLua/Makefile.in,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** Makefile.in 4 Jul 2007 05:39:09 -0000 1.28 --- Makefile.in 1 Aug 2007 10:08:22 -0000 1.29 *************** *** 79,83 **** samples: @mkdir -p $(DESTDIR)$(datadir)/wxlua/samples ! @for f in samples/validator.wx.lua samples/calculator.wx.lua samples/choices.wx.lua samples/coroutine.wx.lua samples/media.wx.lua samples/dialog.wx.lua samples/editor.wx.lua samples/grid.wx.lua samples/htmlwin.wx.lua samples/luamodule.wx.lua samples/mdi.wx.lua samples/minimal.wx.lua samples/printing.wx.lua samples/scribble.wx.lua samples/sizer.wx.lua samples/tree.wx.lua samples/unittest.wx.lua samples/veryminimal.wx.lua samples/wxluasudoku.wx.lua samples/bindings.wx.lua samples/settings.wx.lua samples/controls.wx.lua samples/picker.wx.lua samples/calculator.xrc; do \ if test ! -f $(DESTDIR)$(datadir)/wxlua/samples/$$f -a ! -d $(DESTDIR)$(datadir)/wxlua/samples/$$f ; \ then x=yep ; \ --- 79,83 ---- samples: @mkdir -p $(DESTDIR)$(datadir)/wxlua/samples ! @for f in samples/grid.wx.lua samples/htmlwin.wx.lua samples/dialog.wx.lua samples/validator.wx.lua samples/luamodule.wx.lua samples/calculator.wx.lua samples/settings.wx.lua samples/picker.wx.lua samples/choices.wx.lua samples/media.wx.lua samples/coroutine.wx.lua samples/editor.wx.lua samples/controls.wx.lua samples/veryminimal.wx.lua samples/scribble.wx.lua samples/minimal.wx.lua samples/mdi.wx.lua samples/unittest.wx.lua samples/printing.wx.lua samples/tree.wx.lua samples/sizer.wx.lua samples/wxluasudoku.wx.lua samples/bindings.wx.lua samples/calculator.xrc; do \ if test ! -f $(DESTDIR)$(datadir)/wxlua/samples/$$f -a ! -d $(DESTDIR)$(datadir)/wxlua/samples/$$f ; \ then x=yep ; \ Index: configure =================================================================== RCS file: /cvsroot/wxlua/wxLua/configure,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** configure 28 Jul 2007 21:21:41 -0000 1.57 --- configure 1 Aug 2007 10:08:22 -0000 1.58 *************** *** 1417,1421 **** --enable-wxluafreeze-app Compiles the wxLuaFreeze app (default is yes) ! --enable-wxbindstc Compiles the wxLua bindings for STC (default is yes) --enable-wxluadebug Compiles the wxLua debug support (default is yes) --enable-wxluasocket Compiles the wxLua socket support (default is yes) --- 1417,1444 ---- --enable-wxluafreeze-app Compiles the wxLuaFreeze app (default is yes) ! --enable-wxbindadv Compiles the wxLua bindings for wxAdvanced lib ! (default is yes) ! --enable-wxbindaui Compiles the wxLua bindings for wxAUI lib (default ! is yes) ! --enable-wxbindbase Compiles the wxLua bindings for wxBase lib (default ! is yes) ! --enable-wxbindcore Compiles the wxLua bindings for wxCore lib (default ! is yes) ! --enable-wxbindgl Compiles the wxLua bindings for wxGl lib (default is ! yes) ! --enable-wxbindhtml Compiles the wxLua bindings for wxHTML lib (default ! is yes) ! --enable-wxbindmedia Compiles the wxLua bindings for wxMedia lib (default ! is yes) ! --enable-wxbindnet Compiles the wxLua bindings for wxNet lib (default ! is yes) ! --enable-wxbindrichtext Compiles the wxLua bindings for wxRichText lib ! (default is yes) ! --enable-wxbindstc Compiles the wxLua bindings for wxSTC lib (default ! is yes) ! --enable-wxbindxml Compiles the wxLua bindings for wxXml lib (default ! is yes) ! --enable-wxbindxrc Compiles the wxLua bindings for wxXRC lib (default ! is yes) --enable-wxluadebug Compiles the wxLua debug support (default is yes) --enable-wxluasocket Compiles the wxLua socket support (default is yes) *************** *** 2277,2287 **** # Options for the MODULES section ! # Check whether --enable-wxbindstc was given. ! if test "${enable_wxbindstc+set}" = set; then ! enableval=$enable_wxbindstc; else ! enable_wxbindstc=yes fi # Check whether --enable-wxluadebug was given. if test "${enable_wxluadebug+set}" = set; then --- 2300,2418 ---- # Options for the MODULES section ! # NOTE: AC_BINDLIB_ENABLE saves us from some copy&paste ! ! ! ! # Check whether --enable-adv was given. ! if test "${enable_adv+set}" = set; then ! enableval=$enable_adv; else ! enable_wxbindadv=yes; wxbind_list="$wxbind_list,adv" ! fi ! ! ! ! # Check whether --enable-aui was given. ! if test "${enable_aui+set}" = set; then ! enableval=$enable_aui; ! else ! enable_wxbindaui=yes; wxbind_list="$wxbind_list,aui" ! fi ! ! ! ! # Check whether --enable-base was given. ! if test "${enable_base+set}" = set; then ! enableval=$enable_base; ! else ! enable_wxbindbase=yes; wxbind_list="$wxbind_list,base" ! fi ! ! ! ! # Check whether --enable-core was given. ! if test "${enable_core+set}" = set; then ! enableval=$enable_core; ! else ! enable_wxbindcore=yes; wxbind_list="$wxbind_list,core" ! fi ! ! ! ! # Check whether --enable-gl was given. ! if test "${enable_gl+set}" = set; then ! enableval=$enable_gl; ! else ! enable_wxbindgl=yes; wxbind_list="$wxbind_list,gl" ! fi ! ! ! ! # Check whether --enable-html was given. ! if test "${enable_html+set}" = set; then ! enableval=$enable_html; ! else ! enable_wxbindhtml=yes; wxbind_list="$wxbind_list,html" ! fi ! ! ! ! # Check whether --enable-media was given. ! if test "${enable_media+set}" = set; then ! enableval=$enable_media; ! else ! enable_wxbindmedia=yes; wxbind_list="$wxbind_list,media" ! fi ! ! ! ! # Check whether --enable-net was given. ! if test "${enable_net+set}" = set; then ! enableval=$enable_net; ! else ! enable_wxbindnet=yes; wxbind_list="$wxbind_list,net" ! fi ! ! ! ! # Check whether --enable-richtext was given. ! if test "${enable_richtext+set}" = set; then ! enableval=$enable_richtext; ! else ! enable_wxbindrichtext=yes; wxbind_list="$wxbind_list,richtext" ! fi ! ! ! ! # Check whether --enable-stc was given. ! if test "${enable_stc+set}" = set; then ! enableval=$enable_stc; ! else ! enable_wxbindstc=yes; wxbind_list="$wxbind_list,stc" ! fi ! ! ! ! # Check whether --enable-xml was given. ! if test "${enable_xml+set}" = set; then ! enableval=$enable_xml; ! else ! enable_wxbindxml=yes; wxbind_list="$wxbind_list,xml" ! fi ! ! ! ! # Check whether --enable-xrc was given. ! if test "${enable_xrc+set}" = set; then ! enableval=$enable_xrc; ! else ! enable_wxbindxrc=yes; wxbind_list="$wxbind_list,xrc" fi + + + # remove initial comma: + wxbind_list=${wxbind_list:1} + # Check whether --enable-wxluadebug was given. if test "${enable_wxluadebug+set}" = set; then *************** *** 2376,2379 **** --- 2507,2627 ---- + { echo "$as_me:$LINENO: checking for the --enable-wxbindadv option" >&5 + echo $ECHO_N "checking for the --enable-wxbindadv option... $ECHO_C" >&6; } + if [ "x$enable_wxbindadv" = "xyes" ]; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + USE_WXBINDADV=1 + else + { echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6; } + USE_WXBINDADV=0 + fi + + + { echo "$as_me:$LINENO: checking for the --enable-wxbindaui option" >&5 + echo $ECHO_N "checking for the --enable-wxbindaui option... $ECHO_C" >&6; } + if [ "x$enable_wxbindaui" = "xyes" ]; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + USE_WXBINDAUI=1 + else + { echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6; } + USE_WXBINDAUI=0 + fi + + + { echo "$as_me:$LINENO: checking for the --enable-wxbindbase option" >&5 + echo $ECHO_N "checking for the --enable-wxbindbase option... $ECHO_C" >&6; } + if [ "x$enable_wxbindbase" = "xyes" ]; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + USE_WXBINDBASE=1 + else + { echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6; } + USE_WXBINDBASE=0 + fi + + + { echo "$as_me:$LINENO: checking for the --enable-wxbindcore option" >&5 + echo $ECHO_N "checking for the --enable-wxbindcore option... $ECHO_C" >&6; } + if [ "x$enable_wxbindcore" = "xyes" ]; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + USE_WXBINDCORE=1 + else + { echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6; } + USE_WXBINDCORE=0 + fi + + + { echo "$as_me:$LINENO: checking for the --enable-wxbindgl option" >&5 + echo $ECHO_N "checking for the --enable-wxbindgl option... $ECHO_C" >&6; } + if [ "x$enable_wxbindgl" = "xyes" ]; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + USE_WXBINDGL=1 + else + { echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6; } + USE_WXBINDGL=0 + fi + + + { echo "$as_me:$LINENO: checking for the --enable-wxbindhtml option" >&5 + echo $ECHO_N "checking for the --enable-wxbindhtml option... $ECHO_C" >&6; } + if [ "x$enable_wxbindhtml" = "xyes" ]; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + USE_WXBINDHTML=1 + else + { echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6; } + USE_WXBINDHTML=0 + fi + + + { echo "$as_me:$LINENO: checking for the --enable-wxbindmedia option" >&5 + echo $ECHO_N "checking for the --enable-wxbindmedia option... $ECHO_C" >&6; } + if [ "x$enable_wxbindmedia" = "xyes" ]; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + USE_WXBINDMEDIA=1 + else + { echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6; } + USE_WXBINDMEDIA=0 + fi + + + { echo "$as_me:$LINENO: checking for the --enable-wxbindnet option" >&5 + echo $ECHO_N "checking for the --enable-wxbindnet option... $ECHO_C" >&6; } + if [ "x$enable_wxbindnet" = "xyes" ]; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + USE_WXBINDNET=1 + else + { echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6; } + USE_WXBINDNET=0 + fi + + + { echo "$as_me:$LINENO: checking for the --enable-wxbindrichtext option" >&5 + echo $ECHO_N "checking for the --enable-wxbindrichtext option... $ECHO_C" >&6; } + if [ "x$enable_wxbindrichtext" = "xyes" ]; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + USE_WXBINDRICHTEXT=1 + else + { echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6; } + USE_WXBINDRICHTEXT=0 + fi + + { echo "$as_me:$LINENO: checking for the --enable-wxbindstc option" >&5 echo $ECHO_N "checking for the --enable-wxbindstc option... $ECHO_C" >&6; } *************** *** 2389,2392 **** --- 2637,2667 ---- + { echo "$as_me:$LINENO: checking for the --enable-wxbindxml option" >&5 + echo $ECHO_N "checking for the --enable-wxbindxml option... $ECHO_C" >&6; } + if [ "x$enable_wxbindxml" = "xyes" ]; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + USE_WXBINDXML=1 + else + { echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6; } + USE_WXBINDXML=0 + fi + + + { echo "$as_me:$LINENO: checking for the --enable-wxbindxrc option" >&5 + echo $ECHO_N "checking for the --enable-wxbindxrc option... $ECHO_C" >&6; } + if [ "x$enable_wxbindxrc" = "xyes" ]; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + USE_WXBINDXRC=1 + else + { echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6; } + USE_WXBINDXRC=0 + fi + + + { echo "$as_me:$LINENO: checking for the --enable-wxluadebug option" >&5 echo $ECHO_N "checking for the --enable-wxluadebug option... $ECHO_C" >&6; } *************** *** 3893,3897 **** ! WXLIBS_REQUIRED="xrc,html,adv,net,xml,core,base" --- 4168,4172 ---- ! WXLIBS_REQUIRED="aui,xrc,html,adv,net,xml,core,base" *************** *** 6218,6223 **** ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxluasocket" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxluasocket""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" --- 6493,6498 ---- ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxbindadv" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbindadv""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" *************** *** 6226,6231 **** ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxluadebug" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxluadebug""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" --- 6501,6506 ---- ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxbindaui" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbindaui""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" *************** *** 6234,6239 **** ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxlua" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxlua""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" --- 6509,6514 ---- ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxbindbase" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbindbase""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" *************** *** 6242,6247 **** ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxbind" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbind""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" --- 6517,6562 ---- ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxbindcore" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbindcore""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" ! ! WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" ! ! WXLUA_LDFLAGS="$WXLUA_LDFLAGS -l$TMP" ! ! ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxbindgl" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbindgl""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" ! ! WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" ! ! WXLUA_LDFLAGS="$WXLUA_LDFLAGS -l$TMP" ! ! ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxbindhtml" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbindhtml""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" ! ! WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" ! ! WXLUA_LDFLAGS="$WXLUA_LDFLAGS -l$TMP" ! ! ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxbindmedia" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbindmedia""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" ! ! WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" ! ! WXLUA_LDFLAGS="$WXLUA_LDFLAGS -l$TMP" ! ! ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxbindnet" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbindnet""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" ! ! WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" ! ! WXLUA_LDFLAGS="$WXLUA_LDFLAGS -l$TMP" ! ! ! WXLUA_MODNAMES="$WXLUA_MODNAMES wxbindrichtext" ! TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbindrichtext""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" *************** *** 6258,6261 **** --- 6573,6617 ---- + WXLUA_MODNAMES="$WXLUA_MODNAMES wxbindxml" + TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbindxml""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" + + WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" + + WXLUA_LDFLAGS="$WXLUA_LDFLAGS -l$TMP" + + + WXLUA_MODNAMES="$WXLUA_MODNAMES wxbindxrc" + TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxbindxrc""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" + + WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" + + WXLUA_LDFLAGS="$WXLUA_LDFLAGS -l$TMP" + + + + WXLUA_MODNAMES="$WXLUA_MODNAMES wxluasocket" + TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxluasocket""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" + + WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" + + WXLUA_LDFLAGS="$WXLUA_LDFLAGS -l$TMP" + + + WXLUA_MODNAMES="$WXLUA_MODNAMES wxluadebug" + TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxluadebug""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" + + WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" + + WXLUA_LDFLAGS="$WXLUA_LDFLAGS -l$TMP" + + + WXLUA_MODNAMES="$WXLUA_MODNAMES wxlua" + TMP="wxlua_$WX_PORT""$WXLIBPOSTFIX""_wxlua""-$WX_VERSION_MAJOR"".$WX_VERSION_MINOR" + + WXLUA_LIBNAMES="$WXLUA_LIBNAMES $TMP" + + WXLUA_LDFLAGS="$WXLUA_LDFLAGS -l$TMP" + + WXLUA_LIBNAMES="$WXLUA_LIBNAMES lua5.1" WXLUA_LDFLAGS="$WXLUA_LDFLAGS -llua5.1" *************** *** 10177,10181 **** # declared as: # <exe id="app_wxlua" template="wxluaapp" cond="USE_WXLUAAPP=='1' and USE_WXBINDSTC=='1' and USE_WXLUADEBUG=='1'"> ! # and thus the AM_3BOOLOPT_SUMMARY([USE_WXLUAAPP], [USE_WXBINDSTC], [USE_WXLUADEBUG], ...) macro must be used ! --- 10533,10538 ---- # declared as: # <exe id="app_wxlua" template="wxluaapp" cond="USE_WXLUAAPP=='1' and USE_WXBINDSTC=='1' and USE_WXLUADEBUG=='1'"> ! # and thus the AM_3BOOLOPT_SUMMARY([USE_WXLUAAPP], [USE_WXBINDSTC], [USE_WXLUADEBUG], ...) ! # macro must be used ! *************** *** 10272,10275 **** --- 10629,10669 ---- + if [ "x$USE_WXBINDSTC" = "x1" ]; then + echo " - wxBindSTC module: yes" + elif [ "x$USE_WXBINDSTC" = "x0" ]; then + echo " - wxBindSTC module: no" + else + echo "USE_WXBINDSTC is $USE_WXBINDSTC" + fi + + + if [ "x$USE_WXBINDSTC" = "x1" ]; then + echo " - wxBindSTC module: yes" + elif [ "x$USE_WXBINDSTC" = "x0" ]; then + echo " - wxBindSTC module: no" + else + echo "USE_WXBINDSTC is $USE_WXBINDSTC" + fi + + + if [ "x$USE_WXBINDSTC" = "x1" ]; then + echo " - wxBindSTC module: yes" + elif [ "x$USE_WXBINDSTC" = "x0" ]; then + echo " - wxBindSTC module: no" + else + echo "USE_WXBINDSTC is $USE_WXBINDSTC" + fi + + + if [ "x$USE_WXBINDSTC" = "x1" ]; then + echo " - wxBindSTC module: yes" + elif [ "x$USE_WXBINDSTC" = "x0" ]; then + echo " - wxBindSTC module: no" + else + echo "USE_WXBINDSTC is $USE_WXBINDSTC" + fi + + + if [ "x$USE_WXLUADEBUG" = "x1" ]; then echo " - wxLuaDebug module: yes" *************** *** 10311,10314 **** --- 10705,10711 ---- + echo " - wxBind modules activated: " + echo " $wxbind_list" + |