- Timestamp:
- Jan 23, 2023 1:14:34 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/Makefile.kmk
r98221 r98222 50 50 endif 51 51 52 # @todo check whether VBoxXPComI pcDllC.so or VBoxXPComIpcDllD contain undefined52 # @todo check whether VBoxXPComIPCC.so or VBoxXPCOMIPCD contain undefined 53 53 # symbols starting with NS_, PL_, PR_ or XPT. Would move the test time failure 54 54 # when missing a symbol renaming to a build time failure. Likewise, there … … 108 108 VBOX_XPCOM_DLLS := \ 109 109 VBoxXPCOM \ 110 VBoxXPComI pcDllC110 VBoxXPComIPCC 111 111 DLLS += $(VBOX_XPCOM_DLLS) 112 112 … … 147 147 # tstXptLink 148 148 endif # VBOX_WITH_TESTCASES 149 PROGRAMS += VBoxXPC omIpcDllD149 PROGRAMS += VBoxXPCOMIPCD 150 150 151 151 endif # !VBOX_ONLY_SDK && (!defined(VBOX_ONLY_EXTPACKS) || !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS)) … … 1120 1120 TEMPLATE_XPComIpcDll_DEFS = $(TEMPLATE_XPComDll_DEFS) BUILD_DCONNECT=1 1121 1121 ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING 1122 TEMPLATE_XPComIpcDll_DEFS += IPC_DAEMON_APP_NAME="VBoxXPC omIpcDllD$(SUFF_EXE)"1122 TEMPLATE_XPComIpcDll_DEFS += IPC_DAEMON_APP_NAME="VBoxXPCOMIPCD$(SUFF_EXE)" 1123 1123 else 1124 TEMPLATE_XPComIpcDll_DEFS += IPC_DAEMON_APP_NAME=\"VBoxXPC omIpcDllD$(SUFF_EXE)\"1124 TEMPLATE_XPComIpcDll_DEFS += IPC_DAEMON_APP_NAME=\"VBoxXPCOMIPCD$(SUFF_EXE)\" 1125 1125 endif 1126 1126 ifdef IPC_LOGGING … … 1171 1171 # DCONNECT client shared object 1172 1172 # 1173 VBoxXPComI pcDllC_TEMPLATE = XPComIpcDll1174 VBoxXPComI pcDllC_NAME.os2 = VBoxIPCC1175 VBoxXPComI pcDllC_INST = $(INST_BIN)components/1176 #VBoxXPComI pcDllC_DEFS = HAVE_DEPENDENT_LIBS - dependentLibs.h is linux specific, so this cannot be required.1177 VBoxXPComI pcDllC_SOURCES = \1173 VBoxXPComIPCC_TEMPLATE = XPComIpcDll 1174 VBoxXPComIPCC_NAME.os2 = VBoxIPCC 1175 VBoxXPComIPCC_INST = $(INST_BIN)components/ 1176 #VBoxXPComIPCC_DEFS = HAVE_DEPENDENT_LIBS - dependentLibs.h is linux specific, so this cannot be required. 1177 VBoxXPComIPCC_SOURCES = \ 1178 1178 ipc/ipcd/client/src/ipcdclient.cpp \ 1179 1179 ipc/ipcd/client/src/ipcService.cpp \ … … 1193 1193 1194 1194 ifeq ($(KBUILD_TARGET),win) 1195 VBoxXPComI pcDllC_SOURCES += \1195 VBoxXPComIPCC_SOURCES += \ 1196 1196 ipc/ipcd/client/src/ipcConnectionWin.cpp 1197 1197 else 1198 VBoxXPComI pcDllC_SOURCES += \1198 VBoxXPComIPCC_SOURCES += \ 1199 1199 ipc/ipcd/client/src/ipcConnectionUnix.cpp 1200 1200 endif 1201 VBoxXPComI pcDllC_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/components/VBoxXPComIpcDllC.dylib1202 VBoxXPComI pcDllC_LIBS = \1201 VBoxXPComIPCC_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/components/VBoxXPComIPCC.dylib 1202 VBoxXPComIPCC_LIBS = \ 1203 1203 $(VBox-xpcom-ipcshared_1_TARGET) 1204 1204 1205 1205 # 32-bit version of the component. 1206 $(evalcall VBOX_XPCOM_X86,VBoxXPComI pcDllC)1207 VBoxXPComI pcDllC-x86_LIBS = \1206 $(evalcall VBOX_XPCOM_X86,VBoxXPComIPCC) 1207 VBoxXPComIPCC-x86_LIBS = \ 1208 1208 $(VBox-xpcom-ipcshared-x86_1_TARGET) 1209 1209 … … 1212 1212 # DCONNECT daemon executable 1213 1213 # 1214 VBoxXPC omIpcDllD_TEMPLATE = XPComIpcExe1215 VBoxXPC omIpcDllD_SOURCES = \1214 VBoxXPCOMIPCD_TEMPLATE = XPComIpcExe 1215 VBoxXPCOMIPCD_SOURCES = \ 1216 1216 ipc/ipcd/daemon/src/ipcd.cpp \ 1217 1217 ipc/ipcd/daemon/src/ipcClient.cpp \ … … 1219 1219 ipc/ipcd/daemon/src/ipcCommandModule.cpp 1220 1220 ifeq ($(KBUILD_TARGET),win) 1221 VBoxXPC omIpcDllD_SOURCES += \1221 VBoxXPCOMIPCD_SOURCES += \ 1222 1222 ipc/ipcd/daemon/src/ipcdWin.cpp 1223 1223 else 1224 VBoxXPC omIpcDllD_SOURCES += \1224 VBoxXPCOMIPCD_SOURCES += \ 1225 1225 ipc/ipcd/daemon/src/ipcdUnix.cpp 1226 1226 endif
Note:
See TracChangeset
for help on using the changeset viewer.