Changeset 87442 in vbox
- Timestamp:
- Jan 26, 2021 7:20:45 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r86228 r87442 2042 2042 EOF 2043 2043 found= 2044 SUPPYTHONLIBS="python2.7 python2.6 python3.1 python3.2 python3.3 python3.4 python3.4m python3.5 python3.5m python3.6 python3.6m python3.7 python3.7m python3.8 python3.8m "2044 SUPPYTHONLIBS="python2.7 python2.6 python3.1 python3.2 python3.3 python3.4 python3.4m python3.5 python3.5m python3.6 python3.6m python3.7 python3.7m python3.8 python3.8m python3.9 python3.9m" 2045 2045 for p in $PYTHONDIR; do 2046 2046 for d in $SUPPYTHONLIBS; do -
trunk/src/libs/xpcom18a4/python/Makefile.kmk
r86650 r87442 21 21 # 22 22 # List of supported Python versions, defining a number of 23 # VBOX_PYTHON[26|27|31|32|32M|33|33M|34|34M|35|35M|36|36M|37|37M|38|38M| DEF]_[INC|LIB] variables23 # VBOX_PYTHON[26|27|31|32|32M|33|33M|34|34M|35|35M|36|36M|37|37M|38|38M|39|39M|DEF]_[INC|LIB] variables 24 24 # which get picked up below. 25 25 # … … 601 601 endif 602 602 603 ifdef VBOX_PYTHON39_INC 604 # 605 # Python 3.9 version 606 # 607 DLLS += VBoxPython3_9 608 VBoxPython3_9_EXTENDS = VBoxPythonBase 609 VBoxPython3_9_EXTENDS_BY = appending 610 VBoxPython3_9_TEMPLATE = XPCOM 611 VBoxPython3_9_INCS = $(VBOX_PYTHON39_INC) 612 VBoxPython3_9_LIBS = $(VBOX_PYTHON39_LIB) 613 614 ifdef VBOX_WITH_32_ON_64_MAIN_API 615 ifdef VBOX_PYTHON39_LIB_X86 616 DLLS += VBoxPython3_9_x86 617 VBoxPython3_9_x86_EXTENDS = VBoxPythonBase_x86 618 VBoxPython3_9_x86_EXTENDS_BY = appending 619 VBoxPython3_9_x86_TEMPLATE = XPCOM 620 VBoxPython3_9_x86_INCS = $(VBOX_PYTHON39_INC) 621 VBoxPython3_9_x86_LIBS = $(VBOX_PYTHON39_LIB_X86) 622 endif 623 endif 624 endif 625 626 ifdef VBOX_PYTHON39M_INC 627 # 628 # Python 3.9 version with pymalloc 629 # 630 DLLS += VBoxPython3_9m 631 VBoxPython3_9m_EXTENDS = VBoxPythonBase_m 632 VBoxPython3_9m_EXTENDS_BY = appending 633 VBoxPython3_9m_TEMPLATE = XPCOM 634 VBoxPython3_9m_INCS = $(VBOX_PYTHON39M_INC) 635 VBoxPython3_9m_LIBS = $(VBOX_PYTHON39M_LIB) 636 637 ifdef VBOX_WITH_32_ON_64_MAIN_API 638 ifdef VBOX_PYTHON39M_LIB_X86 639 DLLS += VBoxPython3_9m_x86 640 VBoxPython3_9m_x86_EXTENDS = VBoxPythonBase_x86_m 641 VBoxPython3_9m_x86_EXTENDS_BY = appending 642 VBoxPython3_9m_x86_TEMPLATE_ = XPCOM 643 VBoxPython3_9m_x86_INCS = $(VBOX_PYTHON39M_INC) 644 VBoxPython3_9m_x86_LIBS = $(VBOX_PYTHON39M_LIB_X86) 645 endif 646 endif 647 endif 648 603 649 ifdef VBOX_PYTHONDEF_INC 604 650 #
Note:
See TracChangeset
for help on using the changeset viewer.