vbox的更動 67995 路徑 trunk/src/libs
- 時間撮記:
- 2017-7-17 下午01:01:46 (7 年 以前)
- 位置:
- trunk/src/libs/xpcom18a4/python
- 檔案:
-
- 修改 2 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/libs/xpcom18a4/python/Makefile.kmk
r64057 r67995 27 27 # 28 28 # List of supported Python versions, defining a number of 29 # VBOX_PYTHON[26|27|31|32|32M|33|33M|34|34M|35|35M| DEF]_[INC|LIB] variables29 # VBOX_PYTHON[26|27|31|32|32M|33|33M|34|34M|35|35M|36|36M|37|37M|DEF]_[INC|LIB] variables 30 30 # which get picked up below. 31 31 # … … 387 387 endif 388 388 389 ifdef VBOX_PYTHON36_INC 390 # 391 # Python 3.6 version 392 # 393 DLLS += VBoxPython3_6 394 VBoxPython3_6_EXTENDS = VBoxPythonBase 395 VBoxPython3_6_EXTENDS_BY = appending 396 VBoxPython3_6_TEMPLATE = XPCOM 397 VBoxPython3_6_INCS = $(VBOX_PYTHON36_INC) 398 VBoxPython3_6_LIBS = $(VBOX_PYTHON36_LIB) 399 400 ifdef VBOX_WITH_32_ON_64_MAIN_API 401 ifdef VBOX_PYTHON36_LIB_X86 402 DLLS += VBoxPython3_6_x86 403 VBoxPython3_6_x86_EXTENDS = VBoxPythonBase_x86 404 VBoxPython3_6_x86_EXTENDS_BY = appending 405 VBoxPython3_6_x86_TEMPLATE = XPCOM 406 VBoxPython3_6_x86_INCS = $(VBOX_PYTHON36_INC) 407 VBoxPython3_6_x86_LIBS = $(VBOX_PYTHON36_LIB_X86) 408 endif 409 endif 410 endif 411 412 ifdef VBOX_PYTHON36M_INC 413 # 414 # Python 3.6 version with pymalloc 415 # 416 DLLS += VBoxPython3_6m 417 VBoxPython3_6m_EXTENDS = VBoxPythonBase 418 VBoxPython3_6m_EXTENDS_BY = appending 419 VBoxPython3_6m_TEMPLATE = XPCOM 420 VBoxPython3_6m_INCS = $(VBOX_PYTHON36M_INC) 421 VBoxPython3_6m_LIBS = $(VBOX_PYTHON36M_LIB) 422 423 ifdef VBOX_WITH_32_ON_64_MAIN_API 424 ifdef VBOX_PYTHON36M_LIB_X86 425 DLLS += VBoxPython3_6m_x86 426 VBoxPython3_6m_x86_EXTENDS = VBoxPythonBase_x86 427 VBoxPython3_6m_x86_EXTENDS_BY = appending 428 VBoxPython3_6m_x86_TEMPLATE = XPCOM 429 VBoxPython3_6m_x86_INCS = $(VBOX_PYTHON36M_INC) 430 VBoxPython3_6m_x86_LIBS = $(VBOX_PYTHON36M_LIB_X86) 431 endif 432 endif 433 endif 434 435 ifdef VBOX_PYTHON37_INC 436 # 437 # Python 3.7 version 438 # 439 DLLS += VBoxPython3_7 440 VBoxPython3_7_EXTENDS = VBoxPythonBase 441 VBoxPython3_7_EXTENDS_BY = appending 442 VBoxPython3_7_TEMPLATE = XPCOM 443 VBoxPython3_7_INCS = $(VBOX_PYTHON37_INC) 444 VBoxPython3_7_LIBS = $(VBOX_PYTHON37_LIB) 445 446 ifdef VBOX_WITH_32_ON_64_MAIN_API 447 ifdef VBOX_PYTHON37_LIB_X86 448 DLLS += VBoxPython3_7_x86 449 VBoxPython3_7_x86_EXTENDS = VBoxPythonBase_x86 450 VBoxPython3_7_x86_EXTENDS_BY = appending 451 VBoxPython3_7_x86_TEMPLATE = XPCOM 452 VBoxPython3_7_x86_INCS = $(VBOX_PYTHON37_INC) 453 VBoxPython3_7_x86_LIBS = $(VBOX_PYTHON37_LIB_X86) 454 endif 455 endif 456 endif 457 458 ifdef VBOX_PYTHON37M_INC 459 # 460 # Python 3.7 version with pymalloc 461 # 462 DLLS += VBoxPython3_7m 463 VBoxPython3_7m_EXTENDS = VBoxPythonBase 464 VBoxPython3_7m_EXTENDS_BY = appending 465 VBoxPython3_7m_TEMPLATE = XPCOM 466 VBoxPython3_7m_INCS = $(VBOX_PYTHON37M_INC) 467 VBoxPython3_7m_LIBS = $(VBOX_PYTHON37M_LIB) 468 469 ifdef VBOX_WITH_32_ON_64_MAIN_API 470 ifdef VBOX_PYTHON37M_LIB_X86 471 DLLS += VBoxPython3_7m_x86 472 VBoxPython3_7m_x86_EXTENDS = VBoxPythonBase_x86 473 VBoxPython3_7m_x86_EXTENDS_BY = appending 474 VBoxPython3_7m_x86_TEMPLATE = XPCOM 475 VBoxPython3_7m_x86_INCS = $(VBOX_PYTHON37M_INC) 476 VBoxPython3_7m_x86_LIBS = $(VBOX_PYTHON37M_LIB_X86) 477 endif 478 endif 479 endif 480 389 481 ifdef VBOX_PYTHONDEF_INC 390 482 # -
trunk/src/libs/xpcom18a4/python/gen_python_deps.py
r64070 r67995 17 17 from distutils.version import StrictVersion 18 18 19 versions = ["2.6", "2.7", "3.1", "3.2", "3.2m", "3.3", "3.3m", "3.4", "3.4m", "3.5", "3.5m" ]19 versions = ["2.6", "2.7", "3.1", "3.2", "3.2m", "3.3", "3.3m", "3.4", "3.4m", "3.5", "3.5m", "3.6", "3.6m", "3.7", "3.7m"] 20 20 prefixes = ["/usr", "/usr/local", "/opt", "/opt/local"] 21 21 known = {}
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器