Another pass at fixing Pmw

This commit is contained in:
rdb 2011-10-31 14:06:49 +00:00
parent f711cbf0bb
commit eb78f7cd0d
2 changed files with 5 additions and 5 deletions

View File

@ -80,10 +80,10 @@ class panda3d(package):
excludeModule('wx',
'direct.showbase.WxGlobal')
excludeModule('Tkinter',
excludeModule('Tkinter', 'Pmw',
'direct.showbase.TkGlobal',
'direct.tkpanels',
'direct.tkwidgets')
'direct.tkpanels', 'direct.tkwidgets',
'tkCommonDialog', 'tkMessageBox', 'tkSimpleDialog')
# Most of the core Panda3D DLL's will be included implicitly due to
# being referenced by the above Python code. Here we name a few more

View File

@ -37,8 +37,8 @@ class tk(package):
module('direct.showbase.TkGlobal',
'direct.tkpanels',
'direct.tkwidgets',
'Pmw', 'Pmw.Pmw_1_2.lib.PmwLoader',
'Pmw.Pmw_1_3.lib.PmwLoader')
'Pmw', 'Pmw.Pmw_1_2.lib.*',
'Pmw.Pmw_1_3.lib.*')
class sqlite(package):
config(display_name = "SQLite Interface")