- Timestamp:
- Sep 11, 2008 1:14:55 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 36434
- Location:
- trunk/src/libs/xpcom18a4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/Makefile.kmk
r12383 r12388 1351 1351 VBoxPython_DEFS = _IMPL_NS_COM _IMPL_NS_BASE EXPORT_XPTI_API EXPORT_XPT_API \ 1352 1352 VBOX_PYXPCOM VBOX_WITH_XPCOM 1353 VBoxPython_DEFS.darwin = VBOX_PYXPCOM_VERSIONED 1353 1354 VBoxPython_NAME.darwin = VBoxPython2_3 1354 1355 ifeq ($(KBUILD_TARGET),darwin) … … 1396 1397 VBoxPython2_5_TEMPLATE = XPCOMOSX105 1397 1398 VBoxPython2_5_NAME.darwin = VBoxPython2_5 1398 VBoxPython2_5_DEFS = VBOX_PYXPCOM_VERSIONED $(VBoxPython_DEFS)1399 1399 VBoxPython2_5_INCS = \ 1400 1400 python/src \ -
trunk/src/libs/xpcom18a4/python/src/module/_xpcom.cpp
r12379 r12388 73 73 #ifdef VBOX_PYXPCOM 74 74 # ifdef VBOX_PYXPCOM_VERSIONED 75 # if PY_VERSION_HEX >= 0x0208000075 # if PY_VERSION_HEX >= 0x02080000 76 76 # define MODULE_NAME "VBoxPython2_8" 77 77 # elif PY_VERSION_HEX >= 0x02070000 … … 611 611 void 612 612 # ifdef VBOX_PYXPCOM_VERSIONED 613 # if PY_VERSION_HEX >= 0x02080000613 # if PY_VERSION_HEX >= 0x02080000 614 614 initVBoxPython2_8() { 615 615 # elif PY_VERSION_HEX >= 0x02070000 … … 620 620 initVBoxPython2_5() { 621 621 # elif PY_VERSION_HEX >= 0x02040000 622 # error "you must test VBOX_PYXPCOM_VERSIONED on 2.4" 623 initVBoxPython() { 622 initVBoxPython2_4() { 624 623 # elif PY_VERSION_HEX >= 0x02030000 625 # error "you must test VBOX_PYXPCOM_VERSIONED on 2.3" 626 initVBoxPython() { 624 initVBoxPython2_3() { 627 625 # else 628 626 # error "Fix module versioning.
Note:
See TracChangeset
for help on using the changeset viewer.