Update of /cvsroot/wxlua/wxLua/modules/wxbind/setup
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv20968/wxLua/modules/wxbind/setup
Modified Files:
wxluasetup.h
Log Message:
Renamed wxcore_wxlprint to wxcore_wxlcore and wxhtml_wxlhtmlwin to wxhtml_wxlhtml
since these files contain more than just printing or the htmlwin.
Updated configure.ac to check for $WXSTEDIT shell env var and added --with-wxstedit-prefix
to make it easier to specify where wxStEdit is.
Index: wxluasetup.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxbind/setup/wxluasetup.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** wxluasetup.h 16 Jul 2007 19:34:44 -0000 1.20
--- wxluasetup.h 10 Jan 2008 23:06:27 -0000 1.21
***************
*** 1,7 ****
! // Automatically generated by utils/get_luasetup edit as necessary.
#ifndef __WXLUA_SETUP__
#define __WXLUA_SETUP__
#define wxLUA_USE_Geometry 1
#define wxLUA_USE_MDI 1
--- 1,64 ----
! /////////////////////////////////////////////////////////////////////////////
! // Name: wxluasetup.h
! // Purpose: Control what wxLua bindings for wxWidgets are built
! // Author: John Labenski
! // Created: 1/10/2008
! // Copyright: (c) 2008 John Labenski
! // Licence: wxWidgets licence
! /////////////////////////////////////////////////////////////////////////////
!
#ifndef __WXLUA_SETUP__
#define __WXLUA_SETUP__
+ // Enable or disable the wxLua bindings based on the libs
+
+ #ifndef wxLUA_USEBINDING_WXLUA
+ #define wxLUA_USEBINDING_WXLUA 1
+ #endif
+ #ifndef wxLUA_USEBINDING_WXLUASOCKET
+ #define wxLUA_USEBINDING_WXLUASOCKET 1
+ #endif
+
+ // Enable or disable whole wxWidgets bindings based on the libs
+
+ #ifndef wxLUA_USEBINDING_WXADV
+ #define wxLUA_USEBINDING_WXADV 1
+ #endif
+ #ifndef wxLUA_USEBINDING_WXAUI
+ #define wxLUA_USEBINDING_WXAUI 1
+ #endif
+ #ifndef wxLUA_USEBINDING_WXBASE
+ #define wxLUA_USEBINDING_WXBASE 1
+ #endif
+ #ifndef wxLUA_USEBINDING_WXCORE
+ #define wxLUA_USEBINDING_WXCORE 1
+ #endif
+ #ifndef wxLUA_USEBINDING_WXGL
+ #define wxLUA_USEBINDING_WXGL 1
+ #endif
+ #ifndef wxLUA_USEBINDING_WXHTML
+ #define wxLUA_USEBINDING_WXHTML 1
+ #endif
+ #ifndef wxLUA_USEBINDING_WXMEDIA
+ #define wxLUA_USEBINDING_WXMEDIA 1
+ #endif
+ #ifndef wxLUA_USEBINDING_WXNET
+ #define wxLUA_USEBINDING_WXNET 1
+ #endif
+ #ifndef wxLUA_USEBINDING_WXRICHTEXT
+ #define wxLUA_USEBINDING_WXRICHTEXT 0
+ #endif
+ #ifndef wxLUA_USEBINDING_WXSTC
+ #define wxLUA_USEBINDING_WXSTC 1
+ #endif
+ #ifndef wxLUA_USEBINDING_WXXML
+ #define wxLUA_USEBINDING_WXXML 1
+ #endif
+ #ifndef wxLUA_USEBINDING_WXXRC
+ #define wxLUA_USEBINDING_WXXRC 1
+ #endif
+
+ // Enable or disable single or small groups of classes, see bindings/*.i
#define wxLUA_USE_Geometry 1
#define wxLUA_USE_MDI 1
|