Changeset 48282 in vbox for trunk/src/libs
- Timestamp:
- Sep 4, 2013 11:59:15 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88697
- Location:
- trunk/src/libs
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/kStuff/Makefile.kmk
r42074 r48282 71 71 iprt/kRdrFile-iprt.cpp 72 72 73 ifdef VBOX_WITH_32_ON_64_MAIN_API # 32-bit edition. 74 LIBRARIES += VBox-kStuff-x86 75 VBox-kStuff-x86_TEMPLATE = VBoxR3Dll-x86 76 VBox-kStuff-x86_EXTENDS = VBox-kStuff 77 endif 73 78 74 79 # -
trunk/src/libs/liblzf-3.4/Makefile.kmk
r41477 r48282 41 41 VBox-liblzf-static_SOURCES = $(VBox-liblzf_SOURCES) 42 42 43 ifdef VBOX_WITH_32_ON_64_MAIN_API # 32-bit edition. 44 LIBRARIES += VBox-liblzf-x86 45 VBox-liblzf-x86_TEMPLATE = VBoxR3Dll-x86 46 VBox-liblzf-x86_EXTENDS = VBox-liblzf 47 endif 48 49 43 50 include $(FILE_KBUILD_SUB_FOOTER) 44 51 -
trunk/src/libs/libxml2-2.6.31/Makefile.kmk
r46593 r48282 80 80 # VBox-libxml2_SDKS.win += WINPSDK 81 81 82 ifdef VBOX_WITH_32_ON_64_MAIN_API # 32-bit edition. 83 LIBRARIES += VBox-libxml2-x86 84 VBox-libxml2-x86_TEMPLATE = VBoxR3DllNonPedantic-x86 85 VBox-libxml2-x86_EXTENDS = VBox-libxml2 86 endif 87 88 82 89 include $(FILE_KBUILD_SUB_FOOTER) 83 90 -
trunk/src/libs/xpcom18a4/Config.kmk
r48225 r48282 25 25 # 26 26 VBOX_PATH_XPCOM_SRC := $(PATH_ROOT)/src/libs/xpcom18a4 27 27 28 28 29 # … … 259 260 TEMPLATE_XPCOMOSX107_DEFS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_DEFS),$(TEMPLATE_XPCOM_DEFS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_7_DEFS) 260 261 TEMPLATE_XPCOMOSX107_INCS.darwin = $(VBOX_PATH_MACOSX_SDK_10_7)/Developer/Headers/FlatCarbon 262 263 264 # 265 # Creates a x86 target for an XPCOM target if so desired. 266 # The target is specified as the first argument: $(evalcall VBOX_XPCOM_X86,target). 267 # 268 ifdef VBOX_WITH_32_ON_64_MAIN_API 269 define VBOX_XPCOM_X86 270 $(1)-x86_TEMPLATE := $(strip $($(1)_TEMPLATE))-x86 271 $(1)-x86_EXTENDS := $(1) 272 endef 273 else 274 define VBOX_XPCOM_X86 275 endef 276 endif 277 278 # Corresponding 32-bit template(s). 279 TEMPLATE_XPCOM-x86 = 32-bit XPCOM libraries (shared) 280 TEMPLATE_XPCOM-x86_EXTENDS = XPCOM 281 TEMPLATE_XPCOM-x86_BLD_TRG_ARCH = x86 282 TEMPLATE_XPCOM-x86_DEFS = $(TEMPLATE_XPCOM_DEFS) VBOX_IN_32_ON_64_MAIN_API 283 TEMPLATE_XPCOM-x86_LIBS = $(subst $(LIB_RUNTIME),$(VBOX_LIB_RUNTIME_X86),$(TEMPLATE_XPCOM_LIBS)) 261 284 262 285 -
trunk/src/libs/xpcom18a4/Makefile.kmk
r48245 r48282 75 75 ifndef VBOX_ONLY_SDK 76 76 77 LIBRARIES += \77 VBOX_XPCOM_LIBRARIES := \ 78 78 VBox-xpcom-nspr \ 79 79 VBox-xpcom-typelib \ … … 87 87 VBox-xpcom-xptcall \ 88 88 VBox-xpcom-proxy \ 89 VBox-xpcom-ipcshared \ 89 90 VBoxXPCOMGlue_s \ 90 $(if $(VBOX_WITH_XPCOM_GLUE_WHICH_IS_UNUSED),VBoxXPCOMGlue,) \ 91 VBox-xpcom-ipcutils \ 92 VBox-xpcom-ipcshared \ 93 VBox-xpcom-ipcdlock \ 94 VBox-xpcom-ipctransmgr \ 95 VBox-xpcom-ipctmgrcom 96 97 DLLS += \ 98 VBoxXPCOM \ 91 $(if $(VBOX_WITH_XPCOM_GLUE_WHICH_IS_UNUSED),VBoxXPCOMGlue,) 92 LIBRARIES += $(VBOX_XPCOM_LIBRARIES) 93 94 VBOX_XPCOM_DLLS := \ 95 VBoxXPCOM \ 99 96 VBoxXPCOMIPCC 97 DLLS += $(VBOX_XPCOM_DLLS) 98 99 ifdef VBOX_WITH_32_ON_64_MAIN_API 100 LIBRARIES += $(addsuffix -x86,$(VBOX_XPCOM_LIBRARIES)) 101 DLLS += $(addsuffix -x86,$(VBOX_XPCOM_DLLS)) 102 endif 103 100 104 101 105 ifdef VBOX_WITH_TESTCASES … … 676 680 $(QUIET)$(APPEND) -t $@ '#define _BUILD_STRING "$(date +%Y-%m-%d %T)"' 677 681 682 $(evalcall2 VBOX_XPCOM_X86,VBox-xpcom-nspr) 683 678 684 679 685 VBox-xpcom-typelib_TEMPLATE = XPCOM … … 683 689 xpcom/typelib/xpt/src/xpt_struct.c \ 684 690 xpcom/typelib/xpt/src/xpt_xdr.c 691 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-typelib) 685 692 686 693 VBox-xpcom-string_TEMPLATE = XPCOM … … 698 705 xpcom/string/src/nsStringComparator.cpp \ 699 706 xpcom/string/src/nsStringObsolete.cpp 707 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-string) 700 708 701 709 VBox-xpcom-base_TEMPLATE = XPCOM … … 713 721 xpcom/base/nsTraceRefcntImpl.cpp \ 714 722 xpcom/base/nsStackFrameUnix.cpp 723 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-base) 715 724 716 725 VBox-xpcom-ds_TEMPLATE = XPCOM … … 752 761 xpcom/ds/nsArrayEnumerator.cpp 753 762 # xpcom/ds/nsHashPropertyBag.cpp 763 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-ds) 754 764 755 765 # @todo what about MOZ_USER_DIR? … … 793 803 VBox-xpcom-io_SOURCES.os2 = \ 794 804 xpcom/io/nsLocalFileOS2.cpp 805 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-io) 795 806 796 807 VBox-xpcom-components_TEMPLATE = XPCOM … … 805 816 xpcom/components/xcDll.cpp \ 806 817 xpcom/components/nsStaticComponentLoader.cpp 818 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-components) 807 819 808 820 VBox-xpcom-threads_TEMPLATE = XPCOM … … 819 831 xpcom/threads/nsProcessCommon.cpp \ 820 832 xpcom/threads/TimerThread.cpp 833 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-threads) 821 834 822 835 VBox-xpcom-xptinfo_TEMPLATE = XPCOM … … 833 846 xpcom/reflect/xptinfo/src/xptiZipItem.cpp \ 834 847 xpcom/reflect/xptinfo/src/xptiZipLoader.cpp 848 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-xptinfo) 835 849 836 850 … … 867 881 xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_64_linux.cpp 868 882 endif 869 870 883 xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_solaris.cpp_CXXFLAGS = -O0 871 884 # -O0 works fine, while -O1 doesn't. The gcc man page can't be listing all the -f* … … 874 887 # bug and it's not worth investigating as I'm not the maintainger of the solaris gcc port. [bird, 2007-09-17] 875 888 889 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-xptcall) 890 876 891 877 892 VBox-xpcom-proxy_TEMPLATE = XPCOM 878 893 VBox-xpcom-proxy_INSTTYPE = none 879 894 VBox-xpcom-proxy_DEFS = _IMPL_NS_COM EXPORT_XPTC_API EXPORT_XPTI_API 880 VBox-xpcom-proxy_SOURCES = xpcom/proxy/src/nsProxyEvent.cpp \ 881 xpcom/proxy/src/nsProxyEventClass.cpp \ 882 xpcom/proxy/src/nsProxyEventObject.cpp \ 883 xpcom/proxy/src/nsProxyObjectManager.cpp \ 884 xpcom/proxy/src/nsProxyRelease.cpp 895 VBox-xpcom-proxy_SOURCES = \ 896 xpcom/proxy/src/nsProxyEvent.cpp \ 897 xpcom/proxy/src/nsProxyEventClass.cpp \ 898 xpcom/proxy/src/nsProxyEventObject.cpp \ 899 xpcom/proxy/src/nsProxyObjectManager.cpp \ 900 xpcom/proxy/src/nsProxyRelease.cpp 901 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-proxy) 885 902 886 903 … … 918 935 VBoxXPCOMGlue_s_DEFS = _IMPL_NS_COM 919 936 VBoxXPCOMGlue_s_SOURCES = $(VBoxXPCOMGlue_COMMON_SOURCES) 937 $(evalcall VBOX_XPCOM_X86,VBoxXPCOMGlue_s) 920 938 921 939 # standalone glue library which all third-party client apps (if any) will … … 924 942 VBoxXPCOMGlue_SOURCES = $(VBoxXPCOMGlue_COMMON_SOURCES) 925 943 #VBoxXPCOMGlue_INST = lib/ $(INST_SDK)lib/ 944 $(evalcall VBOX_XPCOM_X86,VBoxXPCOMGlue) 926 945 927 946 … … 1000 1019 VBoxXPCOM_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxXPCOM.dylib 1001 1020 1021 # 1022 # The 32-bit VBoxXPCOM Shared Object, assembling all lib files. 1023 # 1024 VBoxXPCOM-x86_TEMPLATE = XPCOM-x86 1025 VBoxXPCOM-x86_EXTENDS = VBoxXPCOM 1026 VBoxXPCOM-x86_NAME = VBoxXPCOM-x86 1027 VBoxXPCOM-x86_LIBS = \ 1028 $(VBox-xpcom-typelib-x86_1_TARGET) \ 1029 $(VBox-xpcom-string-x86_1_TARGET) \ 1030 $(VBox-xpcom-base-x86_1_TARGET) \ 1031 $(VBox-xpcom-ds-x86_1_TARGET) \ 1032 $(VBox-xpcom-io-x86_1_TARGET) \ 1033 $(VBox-xpcom-components-x86_1_TARGET) \ 1034 $(VBox-xpcom-threads-x86_1_TARGET) \ 1035 $(VBox-xpcom-xptinfo-x86_1_TARGET) \ 1036 $(VBox-xpcom-xptcall-x86_1_TARGET) \ 1037 $(VBox-xpcom-proxy-x86_1_TARGET) \ 1038 $(VBox-xpcom-nspr-x86_1_TARGET) \ 1039 $(VBoxXPCOMGlue_s-x86_1_TARGET) 1040 1041 ifeq ($(filter-out freebsd linux netbsd openbsd,$(KBUILD_TARGET)),) # gnu ld. 1042 VBoxXPCOM-x86_LDFLAGS = -Wl,--whole-archive \ 1043 $(VBox-xpcom-typelib-x86_1_TARGET) \ 1044 $(VBox-xpcom-string-x86_1_TARGET) \ 1045 $(VBox-xpcom-base-x86_1_TARGET) \ 1046 $(VBox-xpcom-ds-x86_1_TARGET) \ 1047 $(VBox-xpcom-io-x86_1_TARGET) \ 1048 $(VBox-xpcom-components-x86_1_TARGET) \ 1049 $(VBox-xpcom-threads-x86_1_TARGET) \ 1050 $(VBox-xpcom-xptinfo-x86_1_TARGET) \ 1051 $(VBox-xpcom-xptcall-x86_1_TARGET) \ 1052 $(VBox-xpcom-proxy-x86_1_TARGET) \ 1053 $(VBox-xpcom-nspr-x86_1_TARGET) \ 1054 $(VBoxXPCOMGlue_s-x86_1_TARGET) \ 1055 -Wl,--no-whole-archive 1056 endif 1057 1058 VBoxXPCOM-x86_LDFLAGS.solaris += -Wl,-z,allextract \ 1059 $(VBox-xpcom-typelib-x86_1_TARGET) \ 1060 $(VBox-xpcom-string-x86_1_TARGET) \ 1061 $(VBox-xpcom-base-x86_1_TARGET) \ 1062 $(VBox-xpcom-ds-x86_1_TARGET) \ 1063 $(VBox-xpcom-io-x86_1_TARGET) \ 1064 $(VBox-xpcom-components-x86_1_TARGET) \ 1065 $(VBox-xpcom-threads-x86_1_TARGET) \ 1066 $(VBox-xpcom-xptinfo-x86_1_TARGET) \ 1067 $(VBox-xpcom-xptcall-x86_1_TARGET) \ 1068 $(VBox-xpcom-proxy-x86_1_TARGET) \ 1069 $(VBox-xpcom-nspr-x86_1_TARGET) \ 1070 $(VBoxXPCOMGlue_s-x86_1_TARGET) \ 1071 -Wl,-z,defaultextract 1072 1073 1074 # 1075 # IPC templates. 1076 # 1002 1077 ifdef VBOX_IPC_RELEASE_LOG 1003 1078 IPC_LOGGING = 1 … … 1014 1089 TEMPLATE_XPCOMIPC_DEFS += IPC_LOGGING 1015 1090 endif 1016 1017 1091 TEMPLATE_XPCOMIPC_LIBS = $(VBoxXPCOM_1_TARGET) $(TEMPLATE_XPCOM_LIBS) 1092 ifneq ($(KBUILD_TARGET),win) 1093 ifeq ($(filter-out solaris.x86 %.amd64 %.sparc32 %.sparc64,$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)),) ## TODO: cleanup! 1094 if defined(VBOX_WITH_RELATIVE_RUNPATH) && !defined(VBOX_WITH_HARDENING) 1095 TEMPLATE_XPCOMIPC_LDFLAGS = $(filter-out '$(VBOX_GCC_RPATH_OPT)%',$(TEMPLATE_XPCOM_LDFLAGS)) '$(VBOX_GCC_RPATH_OPT)$(VBOX_WITH_RELATIVE_RUNPATH)/..' 1096 endif 1097 else ifndef VBOX_WITH_HARDENING 1098 ifdef VBOX_WITH_RELATIVE_RUNPATH 1099 TEMPLATE_XPCOMIPC_LDFLAGS = $(filter-out '$(VBOX_GCC_RPATH_OPT)%',$(TEMPLATE_XPCOM_LDFLAGS)) '$(VBOX_GCC_RPATH_OPT)$(VBOX_WITH_RELATIVE_RUNPATH)/..' 1100 endif 1101 endif 1102 endif 1103 1104 TEMPLATE_XPCOMIPC-x86 = 32-bit XPCOM IPC libraries 1105 TEMPLATE_XPCOMIPC-x86_EXTENDS = XPCOMIPC 1106 TEMPLATE_XPCOMIPC-x86_BLD_TRG_ARCH = x86 1107 TEMPLATE_XPCOMIPC-x86_LIBS = $(VBoxXPCOM-x86_1_TARGET) $(TEMPLATE_XPCOM-x86_LIBS) 1108 1018 1109 1019 1110 TEMPLATE_XPCOMIPCEXE = XPCOM IPC executables … … 1024 1115 endif 1025 1116 1026 VBox-xpcom-ipcutils_TEMPLATE = XPCOMIPC 1027 VBox-xpcom-ipcutils_INSTTYPE = none 1028 VBox-xpcom-ipcutils_SOURCES = \ 1029 ipc/ipcd/util/src/ipcMessageReader.cpp \ 1030 ipc/ipcd/util/src/ipcMessageWriter.cpp 1031 1117 # 1118 # Shared IPC code. Used by the IPC component as well as the executables. 1119 # 1032 1120 VBox-xpcom-ipcshared_TEMPLATE = XPCOMIPC 1033 1121 VBox-xpcom-ipcshared_INSTTYPE = none … … 1040 1128 ipc/ipcd/shared/src/ipcIDList.cpp \ 1041 1129 ipc/ipcd/shared/src/ipcm.cpp 1042 1043 VBox-xpcom-ipcdlock_TEMPLATE = XPCOMIPC 1044 VBox-xpcom-ipcdlock_INSTTYPE = none 1045 VBox-xpcom-ipcdlock_SOURCES = \ 1046 ipc/ipcd/extensions/lock/src/ipcLockProtocol.cpp \ 1047 ipc/ipcd/extensions/lock/src/ipcLockService.cpp 1048 1049 VBox-xpcom-ipctransmgr_TEMPLATE = XPCOMIPC 1050 VBox-xpcom-ipctransmgr_INSTTYPE = none 1051 VBox-xpcom-ipctransmgr_SOURCES = \ 1052 ipc/ipcd/extensions/transmngr/src/tmTransactionService.cpp 1053 1054 VBox-xpcom-ipctmgrcom_TEMPLATE = XPCOMIPC 1055 VBox-xpcom-ipctmgrcom_INSTTYPE = none 1056 VBox-xpcom-ipctmgrcom_SOURCES = \ 1057 ipc/ipcd/extensions/transmngr/common/tmTransaction.cpp \ 1058 ipc/ipcd/extensions/transmngr/common/tmVector.cpp 1130 $(evalcall VBOX_XPCOM_X86,VBox-xpcom-ipcshared) 1059 1131 1060 1132 … … 1070 1142 ipc/ipcd/client/src/ipcService.cpp \ 1071 1143 ipc/ipcd/client/src/ipcModuleFactory.cpp \ 1072 ipc/ipcd/extensions/dconnect/src/ipcDConnectService.cpp 1144 ipc/ipcd/extensions/dconnect/src/ipcDConnectService.cpp\ 1145 \ 1146 ipc/ipcd/util/src/ipcMessageReader.cpp \ 1147 ipc/ipcd/util/src/ipcMessageWriter.cpp \ 1148 \ 1149 ipc/ipcd/extensions/lock/src/ipcLockProtocol.cpp \ 1150 ipc/ipcd/extensions/lock/src/ipcLockService.cpp \ 1151 \ 1152 ipc/ipcd/extensions/transmngr/src/tmTransactionService.cpp \ 1153 \ 1154 ipc/ipcd/extensions/transmngr/common/tmTransaction.cpp \ 1155 ipc/ipcd/extensions/transmngr/common/tmVector.cpp 1156 1073 1157 ifeq ($(KBUILD_TARGET),win) 1074 1158 VBoxXPCOMIPCC_SOURCES += \ … … 1080 1164 VBoxXPCOMIPCC_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/components/VBoxXPCOMIPCC.dylib 1081 1165 VBoxXPCOMIPCC_LIBS = \ 1082 $(VBox-xpcom-ipcutils_1_TARGET) \ 1083 $(VBox-xpcom-ipcshared_1_TARGET) \ 1084 $(VBox-xpcom-ipcdlock_1_TARGET) \ 1085 $(VBox-xpcom-ipctransmgr_1_TARGET) \ 1086 $(VBox-xpcom-ipctmgrcom_1_TARGET) 1087 # EF 1088 #VBoxXPCOMIPCC_LIBS += $(LIB_RUNTIME) 1166 $(VBox-xpcom-ipcshared_1_TARGET) 1167 1168 # 32-bit version of the component. 1169 $(evalcall VBOX_XPCOM_X86,VBoxXPCOMIPCC) 1170 VBoxXPCOMIPCC-x86_LIBS = \ 1171 $(VBox-xpcom-ipcshared-x86_1_TARGET) 1089 1172 1090 1173 -
trunk/src/libs/xpcom18a4/python/Makefile.kmk
r41477 r48282 27 27 # 28 28 # List of supported Python versions, defining a number of 29 # VBOX_PYTHON[25|26|27| 28|DEF]_[INC|LIB] variables which get picked up below.29 # VBOX_PYTHON[25|26|27|DEF]_[INC|LIB] variables which get picked up below. 30 30 # 31 31 ifeq ($(KBUILD_TARGET),darwin) # Relatively predictable, don't script. … … 33 33 VBOX_PYTHON25_INC = $(VBOX_PATH_MACOSX_SDK)/usr/include/python2.5 34 34 VBOX_PYTHON25_LIB = $(VBOX_PATH_MACOSX_SDK)/usr/lib/libpython2.5.dylib 35 VBOX_PYTHON25_LIB_X86 = $(VBOX_PYTHON25_LIB) 35 36 endif 36 37 if !defined(VBOX_WITHOUT_VBOXPYTHON_FOR_OSX_10_6) \ … … 39 40 VBOX_PYTHON26_INC = $(VBOX_PATH_MACOSX_SDK_10_6)/usr/include/python2.6 40 41 VBOX_PYTHON26_LIB = $(VBOX_PATH_MACOSX_SDK_10_6)/usr/lib/libpython2.6.dylib 42 VBOX_PYTHON26_LIB_X86 = $(VBOX_PYTHON26_LIB) 41 43 endif 42 44 if !defined(VBOX_WITHOUT_VBOXPYTHON_FOR_OSX_10_7) \ … … 45 47 VBOX_PYTHON27_INC = $(VBOX_PATH_MACOSX_SDK_10_7)/usr/include/python2.7 46 48 VBOX_PYTHON27_LIB = $(VBOX_PATH_MACOSX_SDK_10_7)/usr/lib/libpython2.7.dylib 49 VBOX_PYTHON27_LIB_X86 = $(VBOX_PYTHON27_LIB) 47 50 endif 48 51 … … 103 106 $(PATH_STAGE_BIN)/VBoxXPCOM$(VBOX_SUFF_DLL) 104 107 108 # 32-bit base. 109 VBoxPythonBase_x86_TEMPLATE = XPCOM-x86 110 VBoxPythonBase_x86_EXTENDS = VBoxPythonBase 111 VBoxPythonBase_x86_DEFS = MODULE_NAME_SUFFIX=_x86 $(VBoxPythonBase_DEFS) 112 VBoxPythonBase_x86_LIBS = \ 113 $(PATH_STAGE_LIB)/VBoxCOM-x86$(VBOX_SUFF_LIB) \ 114 $(PATH_STAGE_BIN)/VBoxXPCOM-x86$(VBOX_SUFF_DLL) 115 105 116 106 117 ifdef VBOX_PYTHON23_INC … … 114 125 VBoxPython2_3_INCS = $(VBOX_PYTHON23_INC) 115 126 VBoxPython2_3_LIBS = $(VBOX_PYTHON23_LIB) 127 128 ifdef VBOX_WITH_32_ON_64_MAIN_API 129 DLLS += VBoxPython2_3_x86 130 VBoxPython2_3_x86_EXTENDS = VBoxPythonBase_x86 131 VBoxPython2_3_x86_EXTENDS_BY = appending 132 VBoxPython2_3_x86_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin",OSX104,-x86) 133 VBoxPython2_3_x86_INCS = $(VBOX_PYTHON23_INC) 134 VBoxPython2_3_x86_LIBS = $(VBOX_PYTHON23_LIB_X86) 135 endif 116 136 endif 117 137 … … 125 145 VBoxPython2_4_INCS = $(VBOX_PYTHON24_INC) 126 146 VBoxPython2_4_LIBS = $(VBOX_PYTHON24_LIB) 147 148 ifdef VBOX_WITH_32_ON_64_MAIN_API 149 DLLS += VBoxPython2_4_x86 150 VBoxPython2_4_x86_EXTENDS = VBoxPythonBase_x86 151 VBoxPython2_4_x86_EXTENDS_BY = appending 152 VBoxPython2_4_x86_INCS = $(VBOX_PYTHON24_INC) 153 VBoxPython2_4_x86_LIBS = $(VBOX_PYTHON24_LIB_X86) 154 endif 127 155 endif 128 156 … … 134 162 VBoxPython2_5_EXTENDS = VBoxPythonBase 135 163 VBoxPython2_5_EXTENDS_BY = appending 136 VBoxPython2_5_TEMPLATE = XPCOM137 164 VBoxPython2_5_INCS = $(VBOX_PYTHON25_INC) 138 165 VBoxPython2_5_LIBS = $(VBOX_PYTHON25_LIB) 166 167 ifdef VBOX_WITH_32_ON_64_MAIN_API 168 DLLS += VBoxPython2_5_x86 169 VBoxPython2_5_x86_EXTENDS = VBoxPythonBase_x86 170 VBoxPython2_5_x86_EXTENDS_BY = appending 171 VBoxPython2_5_x86_INCS = $(VBOX_PYTHON25_INC) 172 VBoxPython2_5_x86_LIBS = $(VBOX_PYTHON25_LIB_X86) 173 endif 139 174 endif 140 175 … … 149 184 VBoxPython2_6_INCS = $(VBOX_PYTHON26_INC) 150 185 VBoxPython2_6_LIBS = $(VBOX_PYTHON26_LIB) 186 187 ifdef VBOX_WITH_32_ON_64_MAIN_API 188 DLLS += VBoxPython2_6_x86 189 VBoxPython2_6_x86_EXTENDS = VBoxPythonBase_x86 190 VBoxPython2_6_x86_EXTENDS_BY = appending 191 VBoxPython2_6_x86_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin",OSX106,-x86) 192 VBoxPython2_6_x86_INCS = $(VBOX_PYTHON26_INC) 193 VBoxPython2_6_x86_LIBS = $(VBOX_PYTHON26_LIB_X86) 194 endif 151 195 endif 152 196 … … 160 204 VBoxPython2_7_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin",OSX107,) 161 205 VBoxPython2_7_INCS = $(VBOX_PYTHON27_INC) 162 VBoxPython2_7_LIBS = $(VBOX_PYTHON27_LIB) 163 endif 164 165 ifdef VBOX_PYTHON28_INC 166 # 167 # Python 2.8 version 168 # 169 DLLS += VBoxPython2_8 170 VBoxPython2_8_EXTENDS = VBoxPythonBase 171 VBoxPython2_8_EXTENDS_BY = appending 172 VBoxPython2_8_INCS = $(VBOX_PYTHON28_INC) 173 VBoxPython2_8_LIBS = $(VBOX_PYTHON28_LIB) 206 VBoxPython2_7_LIBS = $(VBOX_PYTHON27_LIB_X86) 207 208 ifdef VBOX_WITH_32_ON_64_MAIN_API 209 DLLS += VBoxPython2_7_x86 210 VBoxPython2_7_x86_EXTENDS = VBoxPythonBase_x86 211 VBoxPython2_7_x86_EXTENDS_BY = appending 212 VBoxPython2_7_x86_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin",OSX107,-x86) 213 VBoxPython2_7_x86_INCS = $(VBOX_PYTHON27_INC) 214 VBoxPython2_7_x86_LIBS = $(VBOX_PYTHON27_LIB_X86) 215 endif 174 216 endif 175 217 … … 187 229 VBoxPython_LIBS = $(VBoxPythonBase_LIBS) $(VBOX_PYTHONDEF_LIB) 188 230 endif 231 232 ifdef VBOX_WITH_32_ON_64_MAIN_API 233 VBoxPython_x86_EXTENDS = VBoxPythonBase_x86 234 VBoxPython_x86_DEFS = $(filter-out VBOX_PYXPCOM_VERSIONED,$(VBoxPythonBase_x86_DEFS)) 235 VBoxPython_x86_INCS = $(VBoxPythonBase_x86_INCS) $(VBOX_PYTHONDEF_INC) 236 if "$(KBUILD_TARGET)" == "linux" 237 VBoxPython_x86_LIBS = $(VBoxPythonBase_x86_LIBS) 238 else 239 VBoxPython_x86_LIBS = $(VBoxPythonBase_x86_LIBS) $(VBOX_PYTHONDEF_LIB_X86) 240 endif 241 endif 189 242 endif 190 243 -
trunk/src/libs/xpcom18a4/python/gen_python_deps.py
r46230 r48282 15 15 import os,sys 16 16 17 versions = ["2.3", "2.4", "2.5", "2.6", "2.7", "2.8"]17 versions = ["2.3", "2.4", "2.5", "2.6", "2.7",] 18 18 prefixes = ["/usr", "/usr/local", "/opt", "/opt/local"] 19 19 known = {} … … 44 44 if bitness_magic > 0: 45 45 print "VBOX_PYTHON%s_LIB=%s%s" %(vers, known[2], sep) 46 print "VBOX_PYTHON%s_LIB_X86=%s%s" %(vers, known[1], sep) 46 47 else: 47 48 print "VBOX_PYTHON%s_LIB=%s%s" %(vers, known[1], sep) -
trunk/src/libs/xpcom18a4/python/src/module/_xpcom.cpp
r46649 r48282 75 75 76 76 #ifdef VBOX_PYXPCOM 77 # include <iprt/cdefs.h> 78 # ifndef MODULE_NAME_SUFFIX 79 # define MANGLE_MODULE_NAME(a_szName) a_szName 80 # define MANGLE_MODULE_INIT(a_Name) a_Name 81 # else 82 # define MANGLE_MODULE_NAME(a_szName) a_szName RT_XSTR(MODULE_NAME_SUFFIX) 83 # define MANGLE_MODULE_INIT(a_Name) RT_CONCAT(a_Name, MODULE_NAME_SUFFIX) 84 # endif 77 85 # ifdef VBOX_PYXPCOM_VERSIONED 78 86 # if PY_VERSION_HEX >= 0x02080000 79 # define MODULE_NAME "VBoxPython2_8" 87 # define MODULE_NAME MANGLE_MODULE_NAME("VBoxPython2_8") 88 # define initVBoxPython MANGLE_MODULE_INIT(initVBoxPython2_8) 89 80 90 # elif PY_VERSION_HEX >= 0x02070000 81 # define MODULE_NAME "VBoxPython2_7" 91 # define MODULE_NAME MANGLE_MODULE_NAME("VBoxPython2_7") 92 # define initVBoxPython MANGLE_MODULE_INIT(initVBoxPython2_7) 93 82 94 # elif PY_VERSION_HEX >= 0x02060000 83 # define MODULE_NAME "VBoxPython2_6" 95 # define MODULE_NAME MANGLE_MODULE_NAME("VBoxPython2_6") 96 # define initVBoxPython MANGLE_MODULE_INIT(initVBoxPython2_6) 97 84 98 # elif PY_VERSION_HEX >= 0x02050000 85 # define MODULE_NAME "VBoxPython2_5" 99 # define MODULE_NAME MANGLE_MODULE_NAME("VBoxPython2_5") 100 # define initVBoxPython MANGLE_MODULE_INIT(initVBoxPython2_5) 101 86 102 # elif PY_VERSION_HEX >= 0x02040000 87 # define MODULE_NAME "VBoxPython2_4" 103 # define MODULE_NAME MANGLE_MODULE_NAME("VBoxPython2_4") 104 # define initVBoxPython MANGLE_MODULE_INIT(initVBoxPython2_4) 105 88 106 # elif PY_VERSION_HEX >= 0x02030000 89 # define MODULE_NAME "VBoxPython2_3" 107 # define MODULE_NAME MANGLE_MODULE_NAME("VBoxPython2_3") 108 # define initVBoxPython MANGLE_MODULE_INIT(initVBoxPython2_3) 90 109 # else 91 110 # error "Fix module versioning." 92 111 # endif 93 112 # else 94 # define MODULE_NAME "VBoxPython" 113 # define MODULE_NAME MANGLE_MODULE_NAME("VBoxPython") 114 # define initVBoxPython MANGLE_MODULE_INIT(initVBoxPython) 95 115 # endif 96 116 #else … … 777 797 extern "C" NS_EXPORT 778 798 void 779 # ifdef VBOX_PYXPCOM_VERSIONED 780 # if PY_VERSION_HEX >= 0x02080000 781 initVBoxPython2_8() { 782 # elif PY_VERSION_HEX >= 0x02070000 783 initVBoxPython2_7() { 784 # elif PY_VERSION_HEX >= 0x02060000 785 initVBoxPython2_6() { 786 # elif PY_VERSION_HEX >= 0x02050000 787 initVBoxPython2_5() { 788 # elif PY_VERSION_HEX >= 0x02040000 789 initVBoxPython2_4() { 790 # elif PY_VERSION_HEX >= 0x02030000 791 initVBoxPython2_3() { 792 # else 793 # error "Fix module versioning." 794 # endif 795 # else 796 initVBoxPython() { 797 # endif 799 initVBoxPython() { /* NOTE! This name is redefined at the top of the file! */ 798 800 static bool s_vboxInited = false; 799 801 if (!s_vboxInited) { -
trunk/src/libs/xpcom18a4/python/vboxxpcom.py
r44529 r48282 15 15 import platform 16 16 17 # this code overcomes somewhat unlucky feature of Python, where it searches 17 # 18 # This code overcomes somewhat unlucky feature of Python, where it searches 18 19 # for binaries in the same place as platfom independent modules, while 19 20 # rest of Python bindings expect _xpcom to be inside xpcom module 21 # 20 22 21 candidates = ['VBoxPython' + str(sys.version_info[0]) + '_' + str(sys.version_info[1]), 22 'VBoxPython' + str(sys.version_info[0]), 23 'VBoxPython'] 23 _asVBoxPythons = [ 24 'VBoxPython' + str(sys.version_info[0]) + '_' + str(sys.version_info[1]), 25 'VBoxPython' + str(sys.version_info[0]), 26 'VBoxPython' 27 ]; 28 29 # On platforms where we ship both 32-bit and 64-bit API bindings, we have to 30 # look for the right set if we're a 32-bit process. 31 if platform.system() in [ 'SunOS', ] and sys.maxsize <= 2**32: 32 _asNew = [ sCandidate + '_x86' for sCandidate in _asVBoxPythons ]; 33 _asNew.extend(_asVBoxPythons); 34 _asVBoxPythons = _asNew; 35 del _asNew; 36 37 # On Darwin (aka Mac OS X) we know exactly where things are in a normal 38 # VirtualBox installation. 39 ## @todo Edit this at build time to the actual VBox location set in the make files. 40 ## @todo We know the location for most hardened builds, not just darwin! 24 41 if platform.system() == 'Darwin': 25 # On Darwin (aka Mac OS X) we know exactly where things are in a normal26 # VirtualBox installation. Also, there are two versions of python there27 # (2.3.x and 2.5.x) depending on whether the os is striped or spotty, so28 # we have to choose the right module to load.29 #30 # XXX: This needs to be adjusted for OSE builds. A more general solution would31 # be to to sed the file during install and inject the VBOX_PATH_APP_PRIVATE_ARCH32 # and VBOX_PATH_SHARED_LIBS when these are set.33 42 sys.path.append('/Applications/VirtualBox.app/Contents/MacOS') 34 43 35 cglue = None 36 for m in candidates: 37 try: 38 cglue = __import__(m) 39 break 40 except: 41 pass 44 _oVBoxPythonMod = None 45 for m in _asVBoxPythons: 46 try: 47 _oVBoxPythonMod = __import__(m) 48 break 49 except Exception, x: 50 print 'm=%s x=%s' % (m, x); 51 #except: 52 # pass 42 53 43 54 if platform.system() == 'Darwin': 44 55 sys.path.remove('/Applications/VirtualBox.app/Contents/MacOS') 45 56 46 if cglue== None:47 raise Exception , "Cannot find VBoxPython module"57 if _oVBoxPythonMod == None: 58 raise Exception('Cannot find VBoxPython module (tried: %s)' % (', '.join(_asVBoxPythons),)); 48 59 49 sys.modules['xpcom._xpcom'] = cglue50 xpcom._xpcom = cglue60 sys.modules['xpcom._xpcom'] = _oVBoxPythonMod; 61 xpcom._xpcom = _oVBoxPythonMod; 51 62 -
trunk/src/libs/xpcom18a4/xpcom/components/nsNativeComponentLoader.cpp
r38276 r48282 675 675 *registered = PR_FALSE; 676 676 677 #ifndef VBOX 677 678 /* this should be a pref or registry entry, or something */ 678 679 static const char *ValidDllExtensions[] = { … … 749 750 // Skip invalid extensions 750 751 return NS_OK; 752 753 #else /* VBOX */ 754 /* VBox: Only one valid suffix exist, so dispense with the the list. */ 755 # ifdef RT_OS_DARWIN 756 # ifdef VBOX_IN_32_ON_64_MAIN_API 757 static const char s_szSuff[] = "-x86.dylib"; 758 # else 759 static const char s_szSuff[] = ".dylib"; 760 static const char s_szSuffInvalid[] = "-x86.dylib"; 761 # endif 762 # elif defined(RT_OS_OS2) || defined(RT_OS_WINDOWS) 763 # ifdef VBOX_IN_32_ON_64_MAIN_API 764 static const char s_szSuff[] = "-x86.dll"; 765 #else 766 static const char s_szSuff[] = ".dll"; 767 static const char s_szSuffInvalid[] = "-x86.dll"; 768 # endif 769 # else 770 # ifdef VBOX_IN_32_ON_64_MAIN_API 771 static const char s_szSuff[] = "-x86.so"; 772 #else 773 static const char s_szSuff[] = ".so"; 774 static const char s_szSuffInvalid[] = "-x86.so"; 775 # endif 776 # endif 777 778 nsCAutoString strLeafName; 779 rv = component->GetNativeLeafName(strLeafName); 780 if (NS_FAILED(rv)) 781 return rv; 782 size_t cchLeafName = strLeafName.Length(); 783 if ( cchLeafName <= sizeof(s_szSuff) 784 || PL_strcasecmp(strLeafName.get() + cchLeafName - sizeof(s_szSuff) + 1, s_szSuff)) 785 { 786 PR_LOG(nsComponentManagerLog, PR_LOG_DEBUG, ("Skipping '%s'...", strLeafName.get())); 787 return NS_OK; /* skip */ 788 } 789 # ifndef VBOX_IN_32_ON_64_MAIN_API 790 if ( cchLeafName >= sizeof(s_szSuffInvalid) 791 && !PL_strcasecmp(strLeafName.get() + cchLeafName - sizeof(s_szSuffInvalid) + 1, s_szSuffInvalid)) 792 { 793 PR_LOG(nsComponentManagerLog, PR_LOG_DEBUG, ("Skipping '%s' (#2)...", strLeafName.get())); 794 return NS_OK; /* skip */ 795 } 796 # endif 797 PR_LOG(nsComponentManagerLog, PR_LOG_DEBUG, ("... '%s'", strLeafName.get())); 798 #endif /* VBOX */ 751 799 752 800 nsXPIDLCString persistentDescriptor; -
trunk/src/libs/zlib-1.2.6/Makefile.kmk
r41477 r48282 47 47 VBox-zlib-static_SOURCES = $(VBox-zlib_SOURCES) 48 48 49 ifdef VBOX_WITH_32_ON_64_MAIN_API # 32-bit edition. 50 LIBRARIES += VBox-zlib-x86 51 VBox-zlib-x86_TEMPLATE = VBoxR3Dll-x86 52 VBox-zlib-x86_EXTENDS = VBox-zlib 53 endif 54 49 55 include $(FILE_KBUILD_SUB_FOOTER) 50 56
Note:
See TracChangeset
for help on using the changeset viewer.