VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/Makefile.kmk@ 28321

Last change on this file since 28321 was 27140, checked in by vboxsync, 15 years ago

Config.kmk,xpcom18a4/Makefile.kmk: Merged VBOX_WITH_ORIGIN into VBOX_WITH_RELATIVE_RUNPATH.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 68.4 KB
Line 
1# $Id: Makefile.kmk 27140 2010-03-07 00:43:51Z vboxsync $
2## @file
3# Sub-Makefile for XPCOM.
4#
5
6#
7# Copyright (C) 2006-2007 Sun Microsystems, Inc.
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18# Clara, CA 95054 USA or visit http://www.sun.com if you need
19# additional information or have any questions.
20#
21
22SUB_DEPTH = ../../..
23include $(KBUILD_PATH)/subheader.kmk
24
25# File for filtering out C symbols from the XPCOM library. Used to avoid
26# symbol namespace pollution, causing trouble with system libraries.
27XPCOM_C_NAMESPACE_MAP = $(VBOX_PATH_XPCOM_SRC)/xpcom-namespace-cleanup.map
28ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
29 VBOX_NM = nm$(HOSTSUFF_EXE)
30 # At the moment, only Solaris uses the generated map file. GNU ld is smart
31 # enough to handle symbol wildcards itself.
32 if1of ($(KBUILD_TARGET), solaris)
33 XPCOM_C_NAMESPACE_MAP = $(PATH_TARGET)/xpcom-namespace-cleanup.map
34 OTHER_CLEAN += $(XPCOM_C_NAMESPACE_MAP)
35 endif
36endif
37
38# @todo check whether VBoxXPCOMIPCC.so or VBoxXPCOMIPCD contain undefined
39# symbols starting with NS_, PL_, PR_ or XPT. Would move the test time failure
40# when missing a symbol renaming to a build time failure. Likewise, there
41# should be a check whether VBoxXPCOM.so contains global C symbols (at least
42# where the whitelisting of symbols via the map file is not used).
43
44#
45# Globals.
46#
47VBOX_PATH_XPCOM_SRC := $(PATH_SUB_CURRENT)
48
49BLDDIRS += $(PATH_TARGET)/VBox-xpcom-xpt-files/
50
51
52#
53# Template for building the XPCOM libraries (shared).
54#
55TEMPLATE_XPCOM = XPCOM libraries (shared)
56TEMPLATE_XPCOM_EXTENDS = VBOXR3NP
57## @todo correct inheritance here to make it use all the VBOXR3NP settings instead of overriding all of them.
58TEMPLATE_XPCOM_ASTOOL = $(TEMPLATE_VBOXR3NP_TOOL)
59TEMPLATE_XPCOM_ASFLAGS = $(NO_SUCH_VARIABLE)
60TEMPLATE_XPCOM_ASFLAGS.x86 = -m32
61TEMPLATE_XPCOM_ASFLAGS.amd64 = -m64
62TEMPLATE_XPCOM_ASDEFS = $(NO_SUCH_VARIABLE)
63TEMPLATE_XPCOM_CXXFLAGS = -g -pipe -ansi -Wall -Wno-unused -Wno-non-virtual-dtor \
64 $(VBOX_GCC_Wno-invalid-offsetof) -Wno-sign-compare -Wno-unused -Wno-ctor-dtor-privacy \
65 $(VBOX_GCC_fvisibility-inlines-hidden) $(VBOX_GCC_fvisibility-hidden) $(VBOX_GCC_fdiagnostics-show-option)
66TEMPLATE_XPCOM_CXXFLAGS.x86 = -m32
67TEMPLATE_XPCOM_CXXFLAGS.amd64 = -m64
68TEMPLATE_XPCOM_CXXFLAGS.release = -O
69TEMPLATE_XPCOM_CXXFLAGS.profile = -O
70TEMPLATE_XPCOM_CXXFLAGS.darwin = -fpascal-strings -fshort-wchar -fno-common -fno-rtti $(VBOX_DARWIN_DEF_SDK_CXXFLAGS)
71TEMPLATE_XPCOM_CXXFLAGS.freebsd = -pthread
72TEMPLATE_XPCOM_CXXFLAGS.l4 = -fno-exceptions -nostdinc
73TEMPLATE_XPCOM_CXXFLAGS.linux = -pthread
74TEMPLATE_XPCOM_CXXFLAGS.solaris = -fno-omit-frame-pointer # for now anyway.
75TEMPLATE_XPCOM_CFLAGS = -g -pipe -Wall -Wno-unused -Wno-parentheses -Wno-uninitialized $(VBOX_GCC_fvisibility-hidden) \
76 $(VBOX_GCC_fdiagnostics-show-option)
77TEMPLATE_XPCOM_CFLAGS.x86 = -m32
78TEMPLATE_XPCOM_CFLAGS.amd64 = -m64
79TEMPLATE_XPCOM_CFLAGS.release = -O
80TEMPLATE_XPCOM_CFLAGS.profile = -O
81TEMPLATE_XPCOM_CFLAGS.freebsd = -pthread
82TEMPLATE_XPCOM_CFLAGS.l4 = -nostdinc
83TEMPLATE_XPCOM_CFLAGS.linux = -pthread -ansi
84TEMPLATE_XPCOM_CFLAGS.solaris = -fno-omit-frame-pointer # for now anyway.
85TEMPLATE_XPCOM_DEFS = MOZILLA_CLIENT=1 NDEBUG=1 _IMPL_NS_COM \
86 XPCOM_DLL_BASE=\"$(basename $(notdir $(LIB_XPCOM)))\" \
87 MOZ_DLL_SUFFIX=\"$(suffix $(LIB_XPCOM))\" \
88 IN_RING3
89ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
90 TEMPLATE_XPCOM_DEFS += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
91endif
92TEMPLATE_XPCOM_DEFS.x86 = i386=1
93TEMPLATE_XPCOM_DEFS.amd64 = HAVE_VA_LIST_AS_ARRAY HAVE_VA_COPY VA_COPY\(a\,b\)=__builtin_va_copy\(a\,b\)
94TEMPLATE_XPCOM_DEFS.darwin = OSTYPE=\"Darwin8.8.1\" OSARCH=\"Darwin\" XP_UNIX=1 XP_MACOSX=1 TARGET_CARBON=1 HAVE_VISIBILITY_ATTRIBUTE=1 DARWIN=1 $(TEMPLATE_VBOXR3NP_DEFS.darwin)
95TEMPLATE_XPCOM_DEFS.darwin.amd64 = VBOX_MACOSX_FOLLOWS_UNIX_IO
96TEMPLATE_XPCOM_DEFS.freebsd = OSTYPE=\"FreeBSD5+\" OSARCH=\"FreeBSD\" XP_UNIX=1 FREEBSD=1 HAVE_VISIBILITY_ATTRIBUTE=1
97TEMPLATE_XPCOM_DEFS.linux = OSTYPE=\"Linux2.6\" OSARCH=\"Linux\" XP_UNIX=1 _GNU_SOURCE HAVE_VISIBILITY_ATTRIBUTE=1 ## @todo LINUX=1
98TEMPLATE_XPCOM_DEFS.l4 = OSTYPE=\"L4ENV\" OSARCH=\"L4\" XP_UNIX=1 L4ENV HAVE_VISIBILITY_ATTRIBUTE=1
99# Don't define BSD_SELECT because bsdselect() from kLIBC <= 0.6.3 has problems on SMP
100TEMPLATE_XPCOM_DEFS.os2 = OSTYPE=\"OS/2_4.5\" OSARCH=\"OS/2\" XP_OS2 XP_PC OS2=4
101TEMPLATE_XPCOM_DEFS.solaris = OSTYPE=\"Solaris10\" OSARCH=\"Solaris\" XP_UNIX=1 XP_SOLARIS=1 HAVE_LIBDL=1 HAVE_SENDFILEV=1 SOLARIS=1 _REENTRANT
102## @todo The LDFLAGS inheriting is being hidden here and below where -fPIC is added.
103ifdef VBOX_WITH_RUNPATH
104TEMPLATE_XPCOM_LDFLAGS += '$(VBOX_GCC_RPATH_OPT)$(VBOX_WITH_RUNPATH)'
105else ifdef VBOX_WITH_RELATIVE_RUNPATH
106TEMPLATE_XPCOM_LDFLAGS += '$(VBOX_GCC_RPATH_OPT)$(VBOX_WITH_RELATIVE_RUNPATH)'
107endif
108TEMPLATE_XPCOM_LDFLAGS.x86 = -m32
109TEMPLATE_XPCOM_LDFLAGS.amd64 = -m64
110TEMPLATE_XPCOM_LDFLAGS.darwin = $(TEMPLATE_VBOXR3NP_LDFLAGS.darwin) \
111 -fshort-wchar -fno-rtti -fno-exceptions -fpascal-strings \
112 -current_version $(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD) \
113 -compatibility_version $(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD) \
114 -framework CoreServices \
115 -framework CoreFoundation \
116 -framework Foundation \
117 -framework AppKit \
118 -framework Carbon
119## @todo wy is -fno-exceptions here.
120ifn1of ($(KBUILD_TARGET), os2 win)
121 TEMPLATE_XPCOM_CXXFLAGS += -fPIC
122 TEMPLATE_XPCOM_CFLAGS += -fPIC
123 TEMPLATE_XPCOM_LDFLAGS += -fPIC
124 TEMPLATE_XPCOM_DEFS += MOZ_PRESERVE_PIC
125endif
126TEMPLATE_XPCOM_INCS = xpcom/build \
127 xpcom/ds \
128 xpcom/io \
129 xpcom/base \
130 xpcom/components \
131 xpcom/threads \
132 xpcom/proxy/src \
133 xpcom/reflect/xptcall/src \
134 ipc/ipcd/client/src \
135 ipc/ipcd/shared/src \
136 ipc/ipcd/extensions/lock/src \
137 ipc/ipcd/extensions/transmngr/src \
138 ipc/ipcd/extensions/dconnect/src \
139 ipc/ipcd/extensions/transmngr/common \
140 $(VBOX_PATH_SDK)/bindings/xpcom/include \
141 $(VBOX_PATH_SDK)/bindings/xpcom/include/nsprpub \
142 $(VBOX_PATH_SDK)/bindings/xpcom/include/string \
143 $(VBOX_PATH_SDK)/bindings/xpcom/include/xpcom \
144 $(VBOX_PATH_SDK)/bindings/xpcom/include/ipcd \
145 .
146TEMPLATE_XPCOM_INCS.darwin = $(VBOX_PATH_MACOSX_SDK)/Developer/Headers/FlatCarbon
147TEMPLATE_XPCOM_INCS.l4 = $(L4_INCDIR) $(VBOX_L4_GCC3_INCS)
148TEMPLATE_XPCOM_LDFLAGS.l4 = $(L4_DIR)/lib/x86_586/crt0.o \
149 -T$(L4_DIR)/lib/x86_586/main_rel.ld -nostdlib \
150 # -Wl,--whole-archive,--no-allow-shlib-undefined
151TEMPLATE_XPCOM_LIBS.l4 = $(VBOX_GCC_LIBGCC)
152TEMPLATE_XPCOM_LIBS.solaris = sendfile
153TEMPLATE_XPCOM_ORDERDEPS = $(foreach hdrinst, $(filter %-HEADERS, $(INSTALLS)), $(TARGET_$(hdrinst))) \
154 $(PATH_VBox-xpcom-string)/idl_ts
155ifeq ($(KBUILD_TARGET),os2)
156 ifndef USE_OS2_TOOLKIT_HEADERS
157 TEMPLATE_XPCOM_DEFS.os2 += OS2EMX_PLAIN_CHAR
158 endif
159 TEMPLATE_XPCOM_DEFS.os2 += XP_OS2_EMX OS2=4
160 # this is at least for strnicmp()
161 TEMPLATE_XPCOM_DEFS.os2 += _EMX_SOURCE
162 # @@todo shouldn't this be somehow default for ASTOOL?
163 TEMPLATE_XPCOM_ASFLAGS.os2 += -Zomf
164endif
165
166# When using IPRT in NSRP or/and using IPRT for logging, link with IPRT.
167TEMPLATE_XPCOM_LIBS += $(LIB_RUNTIME)
168
169#
170# Template for building the XPCOM executables.
171# Used as a base template by XPCOMTSTEXE and XPCOMIPCEXE.
172#
173TEMPLATE_XPCOMEXE = XPCOM executable files
174TEMPLATE_XPCOMEXE_EXTENDS = XPCOM
175## @todo undo -fPIC.
176TEMPLATE_XPCOMEXE_INCS = ipc/ipcd/shared/src \
177 $(VBOX_PATH_SDK)/bindings/xpcom/include \
178 $(VBOX_PATH_SDK)/bindings/xpcom/include/nsprpub \
179 $(VBOX_PATH_SDK)/bindings/xpcom/include/string \
180 $(VBOX_PATH_SDK)/bindings/xpcom/include/xpcom \
181 $(VBOX_PATH_SDK)/bindings/xpcom/include/ipcd \
182 .
183TEMPLATE_XPCOMEXE_LIBS = \
184 $(TARGET_VBox-xpcom-ipcshared) \
185 $(TARGET_VBoxXPCOM) \
186 $(TEMPLATE_XPCOM_LIBS)
187TEMPLATE_XPCOMEXE_LIBS.freebsd = $(LIB_PTHREAD)
188TEMPLATE_XPCOMEXE_LIBS.linux = dl $(LIB_PTHREAD)
189TEMPLATE_XPCOMEXE_LIBS.l4 = $(LIB_RUNTIME) $(VBOX_GCC_LIBGCC)
190TEMPLATE_XPCOMEXE_LDFLAGS.darwin = -bind_at_load $(filter-out -current_version -compatibility_version $(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD),$(TEMPLATE_XPCOM_LDFLAGS.darwin))
191TEMPLATE_XPCOMEXE_LDFLAGS.l4 = $(L4_DIR)/lib/x86_586/crt0.o \
192 -T$(L4_DIR)/lib/x86_586/main_dyn.ld -nostdlib -lgcc \
193 -Wl,--export-dynamic,--dynamic-linker=libld-l4.s.so \
194 -Wl,--rpath-link,$(L4_LIBDIR) \
195 # -Wl,--whole-archive,--no-allow-shlib-undefined
196# -Wno-format
197
198
199#
200# Template for building the XPCOM testcase executables
201#
202TEMPLATE_XPCOMTSTEXE = XPCOM executable files (testcases)
203TEMPLATE_XPCOMTSTEXE_EXTENDS = XPCOMEXE
204TEMPLATE_XPCOMTSTEXE_CXXFLAGS = $(TEMPLATE_XPCOMEXE_CXXFLAGS) -Wno-format
205TEMPLATE_XPCOMTSTEXE_CFLAGS = $(TEMPLATE_XPCOMEXE_CFLAGS) -Wno-format
206
207
208#
209# Template for building XPCOM executables for running at build time.
210#
211# It extends the BLDPROG template in config.kmk but overrides CFLAGS
212# and CXXFLAGS completely at the moment.
213#
214TEMPLATE_XPCOMBLDPROG = XPCOM Build programs executables
215TEMPLATE_XPCOMBLDPROG_EXTENDS = VBOXBLDPROG
216## @todo Verify that this doesn't blow up because of template inheriance ordering. (we're assuming XPCOMEXE is expanded when this is being used.)
217TEMPLATE_XPCOMBLDPROG_DEFS = $(TEMPLATE_VBOXBLDPROG_DEFS) $(TEMPLATE_XPCOMEXE_DEFS)
218TEMPLATE_XPCOMBLDPROG_DEFS.$(KBUILD_HOST) = $(TEMPLATE_VBOXBLDPROG_DEFS.$(KBUILD_HOST)) $(TEMPLATE_XPCOMEXE_DEFS.$(KBUILD_HOST))
219TEMPLATE_XPCOMBLDPROG_DEFS.x86 = $(TEMPLATE_VBOXBLDPROG_DEFS.x86) $(TEMPLATE_XPCOMEXE_DEFS.x86)
220TEMPLATE_XPCOMBLDPROG_DEFS.amd64 = $(TEMPLATE_VBOXBLDPROG_DEFS.amd64) $(TEMPLATE_XPCOMEXE_DEFS.amd64)
221TEMPLATE_XPCOMBLDPROG_INCS = \
222 $(VBOX_PATH_SDK)/bindings/xpcom/include \
223 $(VBOX_PATH_SDK)/bindings/xpcom/include/nsprpub \
224 $(VBOX_PATH_SDK)/bindings/xpcom/include/string \
225 $(VBOX_PATH_SDK)/bindings/xpcom/include/xpcom \
226 $(VBOX_PATH_SDK)/bindings/xpcom/include/ipcd
227TEMPLATE_XPCOMBLDPROG_CFLAGS = $(filter-out -pedantic -Wshadow, $(TEMPLATE_VBOX_BLDPROG_CFLAGS)) $(VBOX_GCC_Wno-int-to-pointer-cast) $(VBOX_GCC_Wno-pointer-to-int-cast) -Wno-format
228TEMPLATE_XPCOMBLDPROG_CXXFLAGS.darwin = $(TEMPLATE_VBOXBLDPROG_CXXFLAGS.darwin) -fpascal-strings -fshort-wchar -fno-common -fno-rtti
229TEMPLATE_XPCOMBLDPROG_CXXFLAGS.solaris = $(TEMPLATE_VBOXBLDPROG_CXXFLAGS.solaris) -fno-omit-frame-pointer # for now anyway.
230TEMPLATE_XPCOMBLDPROG_LDFLAGS.darwin = $(TEMPLATE_VBOXBLDPROG_LDFLAGS.darwin) -fpascal-strings -fshort-wchar -fno-rtti -fno-exceptions
231TEMPLATE_XPCOMBLDPROG_ORDERDEPS = $(foreach hdrinst, $(filter %-HEADERS, $(INSTALLS)), $(TARGET_$(hdrinst)))
232
233
234ifeq ($(VBOX_DEF_MACOSX_VERSION_MIN),10.4)
235 #
236 # Template for building VBoxPhython against the Mac OS X 10.4 SDK.
237 # ASSUMES that the SDK bits are in the .darwin properties we're overriding below.
238 #
239 TEMPLATE_XPCOMOSX104 = XPCOM libraries (shared) built against the Mac OS X 10.4 SDK
240 TEMPLATE_XPCOMOSX104_EXTENDS = XPCOM
241 TEMPLATE_XPCOMOSX104_CXXFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_CXXFLAGS),$(TEMPLATE_XPCOM_CXXFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_4_CXXFLAGS)
242 TEMPLATE_XPCOMOSX104_CFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_CFLAGS),$(TEMPLATE_XPCOM_CFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_4_CFLAGS)
243 TEMPLATE_XPCOMOSX104_LDFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_LDFLAGS),$(TEMPLATE_XPCOM_LDFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_4_LDFLAGS)
244 TEMPLATE_XPCOMOSX104_DEFS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_DEFS),$(TEMPLATE_XPCOM_DEFS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_4_DEFS)
245 TEMPLATE_XPCOMOSX104_INCS.darwin = $(VBOX_PATH_MACOSX_SDK_10_4)/Developer/Headers/FlatCarbon
246endif
247
248#
249# Template for building VBoxPhython against the Mac OS X 10.5 SDK.
250# ASSUMES that the SDK bits are in the .darwin properties we're overriding below.
251#
252TEMPLATE_XPCOMOSX105 = XPCOM libraries (shared) built against the Mac OS X 10.5 SDK
253TEMPLATE_XPCOMOSX105_EXTENDS = XPCOM
254TEMPLATE_XPCOMOSX105_CXXFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_CXXFLAGS),$(TEMPLATE_XPCOM_CXXFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_5_CXXFLAGS)
255TEMPLATE_XPCOMOSX105_CFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_CFLAGS),$(TEMPLATE_XPCOM_CFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_5_CFLAGS)
256TEMPLATE_XPCOMOSX105_LDFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_LDFLAGS),$(TEMPLATE_XPCOM_LDFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_5_LDFLAGS)
257TEMPLATE_XPCOMOSX105_DEFS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_DEFS),$(TEMPLATE_XPCOM_DEFS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_5_DEFS)
258TEMPLATE_XPCOMOSX105_INCS.darwin = $(VBOX_PATH_MACOSX_SDK_10_5)/Developer/Headers/FlatCarbon
259
260#
261# Template for building VBoxPhython against the Mac OS X 10.6 SDK.
262# ASSUMES that the SDK bits are in the .darwin properties we're overriding below.
263#
264TEMPLATE_XPCOMOSX106 = XPCOM libraries (shared) built against the Mac OS X 10.6 SDK
265TEMPLATE_XPCOMOSX106_EXTENDS = XPCOM
266TEMPLATE_XPCOMOSX106_CXXFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_CXXFLAGS),$(TEMPLATE_XPCOM_CXXFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_6_CXXFLAGS)
267TEMPLATE_XPCOMOSX106_CFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_CFLAGS),$(TEMPLATE_XPCOM_CFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_6_CFLAGS)
268TEMPLATE_XPCOMOSX106_LDFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_LDFLAGS),$(TEMPLATE_XPCOM_LDFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_6_LDFLAGS)
269TEMPLATE_XPCOMOSX106_DEFS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_DEFS),$(TEMPLATE_XPCOM_DEFS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_6_DEFS)
270TEMPLATE_XPCOMOSX106_INCS.darwin = $(VBOX_PATH_MACOSX_SDK_10_6)/Developer/Headers/FlatCarbon
271
272
273#
274# Header installs.
275#
276INSTALLS += \
277 NSPRPUB-HEADERS \
278 NSPRPUB-MD-HEADERS \
279 NSPRPUB-OBS-HEADERS \
280 NSPRPUB-PRIV-HEADERS \
281 STRING-HEADERS \
282 XPCOM-HEADERS \
283 IPCD-HEADERS
284
285#
286# The IDL compiler and typelib linker.
287#
288BLDPROGS += \
289 xpidl \
290 xpt_link
291
292#
293# We build several libraries so that any linker command line
294# length restrictions limit will be avoided. (Solaris, Mac?)
295#
296
297ifndef VBOX_ONLY_SDK
298LIBRARIES += \
299 VBox-xpcom-nspr \
300 VBox-xpcom-typelib \
301 VBox-xpcom-string \
302 VBox-xpcom-base \
303 VBox-xpcom-ds \
304 VBox-xpcom-io \
305 VBox-xpcom-components \
306 VBox-xpcom-threads \
307 VBox-xpcom-xptinfo \
308 VBox-xpcom-xptcall \
309 VBox-xpcom-proxy \
310 VBoxXPCOMGlue_s \
311 VBoxXPCOMGlue \
312 VBox-xpcom-ipcutils \
313 VBox-xpcom-ipcshared \
314 VBox-xpcom-ipcdlock \
315 VBox-xpcom-ipctransmgr \
316 VBox-xpcom-ipctmgrcom
317
318DLLS += \
319 VBoxXPCOM \
320 VBoxXPCOMIPCC
321
322ifdef VBOX_WITH_TESTCASES
323PROGRAMS += \
324 tstnsIFileEnumerator \
325 tstnsIFileTest \
326 tstTestArray \
327 tstTestAtoms \
328 tstTestAutoLock \
329 tstTestCallTemplates \
330 tstTestCOMPtr \
331 tstTestCOMPtrEq \
332 tstTestCRT \
333 tstTestFactory \
334 tstTestHashtables \
335 tstTestID \
336 tstTestObserverService \
337 tstTestPipes \
338 tstTestServMgr \
339 tstTestThreads \
340 tstTestXPIDLString \
341 tstTestDeque \
342 tstTestAutoPtr \
343 tstTestMinStringAPI \
344 tstTestStrings \
345 tstPrimitiveTest \
346 tstSimpleTypeLib \
347 tstXptDump \
348 tstXptLink
349# tstTestPermanentAtoms
350endif # VBOX_WITH_TESTCASES
351PROGRAMS += VBoxXPCOMIPCD
352
353
354else
355
356PATH_VBox-xpcom-string=$(PATH_BIN)
357
358endif # !VBOX_ONLY_SDK
359
360
361
362
363#
364# SDK headers - lot's of files to install...
365#
366# Tip: If you are going to remove files here, you might
367# wish to do a `kmk uninstall' first to avoid have
368# obsoleted files in the $(INST_SDK) directory.
369#
370NSPRPUB-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/nsprpub/
371NSPRPUB-HEADERS_IFFLAGS = -m 644
372NSPRPUB-HEADERS_SOURCES = \
373 nsprpub/pr/include/nspr.h \
374 nsprpub/lib/ds/plarena.h \
375 nsprpub/lib/ds/plarenas.h \
376 nsprpub/lib/libc/include/plbase64.h \
377 nsprpub/lib/libc/include/plerror.h \
378 nsprpub/lib/libc/include/plgetopt.h \
379 nsprpub/lib/ds/plhash.h \
380 nsprpub/lib/libc/include/plresolv.h \
381 nsprpub/lib/libc/include/plstr.h \
382 nsprpub/pr/include/pratom.h \
383 nsprpub/pr/include/prbit.h \
384 nsprpub/pr/include/prclist.h \
385 nsprpub/pr/include/prcmon.h \
386 nsprpub/pr/include/prcountr.h \
387 nsprpub/pr/include/prcvar.h \
388 nsprpub/pr/include/prdtoa.h \
389 nsprpub/pr/include/prenv.h \
390 nsprpub/pr/include/prerr.h \
391 nsprpub/pr/include/prerror.h \
392 nsprpub/pr/include/prinet.h \
393 nsprpub/pr/include/prinit.h \
394 nsprpub/pr/include/prinrval.h \
395 nsprpub/pr/include/prio.h \
396 nsprpub/pr/include/pripcsem.h \
397 nsprpub/pr/include/prlink.h \
398 nsprpub/pr/include/prlock.h \
399 nsprpub/pr/include/prlog.h \
400 nsprpub/pr/include/prlong.h \
401 nsprpub/pr/include/prmem.h \
402 nsprpub/pr/include/prmon.h \
403 nsprpub/pr/include/prmwait.h \
404 nsprpub/pr/include/prnetdb.h \
405 nsprpub/pr/include/prolock.h \
406 nsprpub/pr/include/prpdce.h \
407 nsprpub/pr/include/prprf.h \
408 nsprpub/pr/include/prproces.h \
409 nsprpub/pr/include/prrng.h \
410 nsprpub/pr/include/prrwlock.h \
411 nsprpub/pr/include/prshm.h \
412 nsprpub/pr/include/prshma.h \
413 nsprpub/pr/include/prsystem.h \
414 nsprpub/pr/include/prthread.h \
415 nsprpub/pr/include/prtime.h \
416 nsprpub/pr/include/prtpool.h \
417 nsprpub/pr/include/prtrace.h \
418 nsprpub/pr/include/prtypes.h \
419 nsprpub/pr/include/prvrsion.h \
420 nsprpub/pr/include/prwin16.h \
421 nsprpub/pr/include/md/_vbox.cfg=>prcpucfg.h \
422
423NSPRPUB-MD-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/nsprpub/md/
424NSPRPUB-MD-HEADERS_IFFLAGS = -m 644
425NSPRPUB-MD-HEADERS_SOURCES = \
426 nsprpub/pr/include/md/_iprt_atomic.h \
427 nsprpub/pr/include/md/_darwin.h \
428 nsprpub/pr/include/md/_freebsd.h \
429 nsprpub/pr/include/md/_l4v2.h \
430 nsprpub/pr/include/md/_linux.h \
431 nsprpub/pr/include/md/_macos.h \
432 nsprpub/pr/include/md/_netbsd.h \
433 nsprpub/pr/include/md/_openbsd.h \
434 nsprpub/pr/include/md/_os2_errors.h \
435 nsprpub/pr/include/md/_os2.h \
436 nsprpub/pr/include/md/_pcos.h \
437 nsprpub/pr/include/md/_solaris.h \
438 nsprpub/pr/include/md/_unix_errors.h \
439 nsprpub/pr/include/md/_unixos.h \
440 nsprpub/pr/include/md/_pth.h \
441 nsprpub/pr/include/md/prosdep.h \
442 \
443 nsprpub/pr/include/md/_freebsd.cfg \
444 nsprpub/pr/include/md/_linux.cfg \
445 nsprpub/pr/include/md/_darwin.cfg \
446 nsprpub/pr/include/md/_netbsd.cfg \
447 nsprpub/pr/include/md/_openbsd.cfg \
448 nsprpub/pr/include/md/_os2.cfg \
449 nsprpub/pr/include/md/_solaris32.cfg \
450 nsprpub/pr/include/md/_solaris64.cfg \
451 nsprpub/pr/include/md/_l4v2.cfg
452
453NSPRPUB-OBS-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/nsprpub/obsolete/
454NSPRPUB-OBS-HEADERS_IFFLAGS = -m 644
455NSPRPUB-OBS-HEADERS_SOURCES = \
456 nsprpub/pr/include/obsolete/pralarm.h \
457 nsprpub/pr/include/obsolete/probslet.h \
458 nsprpub/pr/include/obsolete/protypes.h \
459 nsprpub/pr/include/obsolete/prsem.h
460
461NSPRPUB-PRIV-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/nsprpub/private/
462NSPRPUB-PRIV-HEADERS_IFFLAGS = -m 644
463NSPRPUB-PRIV-HEADERS_SOURCES = \
464 nsprpub/pr/include/private/pprio.h \
465 nsprpub/pr/include/private/pprthred.h \
466 nsprpub/pr/include/private/prpriv.h
467
468STRING-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/string
469STRING-HEADERS_IFFLAGS = -m 644
470STRING-HEADERS_SOURCES = \
471 xpcom/string/public/nsAString.h \
472 xpcom/string/public/nsAlgorithm.h \
473 xpcom/string/public/nsCharTraits.h \
474 xpcom/string/public/nsDependentString.h \
475 xpcom/string/public/nsDependentSubstring.h \
476 xpcom/string/public/nsEmbedString.h \
477 xpcom/string/public/nsLiteralString.h \
478 xpcom/string/public/nsObsoleteAString.h \
479 xpcom/string/public/nsPrintfCString.h \
480 xpcom/string/public/nsPromiseFlatString.h \
481 xpcom/string/public/nsReadableUtils.h \
482 xpcom/string/public/nsString.h \
483 xpcom/string/public/nsStringAPI.h \
484 xpcom/string/public/nsStringFwd.h \
485 xpcom/string/public/nsStringIterator.h \
486 xpcom/string/public/nsSubstring.h \
487 xpcom/string/public/nsSubstringTuple.h \
488 xpcom/string/public/nsTAString.h \
489 xpcom/string/public/nsTDependentString.h \
490 xpcom/string/public/nsTDependentSubstring.h \
491 xpcom/string/public/nsTObsoleteAString.h \
492 xpcom/string/public/nsTPromiseFlatString.h \
493 xpcom/string/public/nsTString.h \
494 xpcom/string/public/nsTSubstring.h \
495 xpcom/string/public/nsTSubstringTuple.h \
496 xpcom/string/public/nsUTF8Utils.h \
497 xpcom/string/public/nsXPIDLString.h \
498 xpcom/string/public/string-template-def-char.h \
499 xpcom/string/public/string-template-def-unichar.h \
500 xpcom/string/public/string-template-undef.h
501
502XPCOM-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/xpcom
503XPCOM-HEADERS_IFFLAGS = -m 644
504XPCOM-HEADERS_SOURCES = \
505 xpcom/base/nsAgg.h \
506 xpcom/io/nsAppDirectoryServiceDefs.h \
507 xpcom/ds/nsArray.h \
508 xpcom/ds/nsArrayEnumerator.h \
509 xpcom/ds/nsAtomService.h \
510 xpcom/ds/nsAutoBuffer.h \
511 xpcom/threads/nsAutoLock.h \
512 xpcom/base/nsAutoPtr.h \
513 xpcom/ds/nsBaseHashtable.h \
514 xpcom/ds/nsCOMArray.h \
515 xpcom/ds/nsCRT.h \
516 xpcom/components/nsCategoryManagerUtils.h \
517 xpcom/ds/nsCheapSets.h \
518 xpcom/ds/nsClassHashtable.h \
519 xpcom/base/nsCom.h \
520 xpcom/components/nsComponentManagerObsolete.h \
521 xpcom/components/nsComponentManagerUtils.h \
522 xpcom/ds/nsCppSharedAllocator.h \
523 xpcom/ds/nsDataHashtable.h \
524 xpcom/base/nsDebugImpl.h \
525 xpcom/ds/nsDeque.h \
526 xpcom/io/nsDirectoryService.h \
527 xpcom/io/nsDirectoryServiceDefs.h \
528 xpcom/io/nsDirectoryServiceUtils.h \
529 xpcom/ds/nsDoubleHashtable.h \
530 xpcom/ds/nsEnumeratorUtils.h \
531 xpcom/base/nsError.h \
532 xpcom/io/nsEscape.h \
533 xpcom/threads/nsEventQueueUtils.h \
534 xpcom/io/nsFastLoadPtr.h \
535 xpcom/io/nsFastLoadService.h \
536 xpcom/ds/nsFixedSizeAllocator.h \
537 xpcom/ds/nsHashKeys.h \
538 xpcom/ds/nsHashSets.h \
539 xpcom/ds/nsHashtable.h \
540 xpcom/base/nsIAllocator.h \
541 xpcom/ds/nsIByteBuffer.h \
542 xpcom/base/nsID.h \
543 xpcom/base/nsIID.h \
544 xpcom/components/nsIServiceManagerObsolete.h \
545 xpcom/components/nsIServiceManagerUtils.h \
546 xpcom/base/nsISupportsBase.h \
547 xpcom/base/nsISupportsObsolete.h \
548 xpcom/ds/nsIUnicharBuffer.h \
549 xpcom/io/nsIUnicharInputStream.h \
550 xpcom/ds/nsInt64.h \
551 xpcom/ds/nsInterfaceHashtable.h \
552 xpcom/io/nsLinebreakConverter.h \
553 xpcom/io/nsLocalFile.h \
554 xpcom/io/nsLocalFileUnix.h \
555 xpcom/io/nsLocalFileOS2.h \
556 xpcom/io/nsLocalFileOSX.h \
557 xpcom/components/nsModule.h \
558 xpcom/io/nsMultiplexInputStream.h \
559 xpcom/io/nsNativeCharsetUtils.h \
560 xpcom/components/nsNativeComponentLoader.h \
561 xpcom/ds/nsObserverService.h \
562 xpcom/components/nsObsoleteModuleLoading.h \
563 xpcom/threads/nsProcess.h \
564 xpcom/proxy/public/nsProxiedService.h \
565 xpcom/proxy/public/nsProxyEvent.h \
566 xpcom/proxy/public/nsProxyRelease.h \
567 xpcom/ds/nsQuickSort.h \
568 xpcom/ds/nsRecyclingAllocator.h \
569 xpcom/ds/nsRefPtrHashtable.h \
570 xpcom/io/nsScriptableInputStream.h \
571 xpcom/ds/nsStaticAtom.h \
572 xpcom/components/nsStaticComponent.h \
573 xpcom/ds/nsStaticNameTable.h \
574 xpcom/io/nsStorageStream.h \
575 xpcom/io/nsStreamUtils.h \
576 xpcom/ds/nsStringEnumerator.h \
577 xpcom/io/nsStringIO.h \
578 xpcom/io/nsStringStream.h \
579 xpcom/ds/nsSupportsArray.h \
580 xpcom/ds/nsSupportsPrimitives.h \
581 xpcom/ds/nsTHashtable.h \
582 xpcom/ds/nsTextFormatter.h \
583 xpcom/ds/nsTime.h \
584 xpcom/base/nsTraceRefcntImpl.h \
585 xpcom/ds/nsUnitConversion.h \
586 xpcom/ds/nsValueArray.h \
587 xpcom/ds/nsVariant.h \
588 xpcom/ds/nsVoidArray.h \
589 xpcom/base/nsWeakPtr.h \
590 xpcom/build/nsXPCOM.h \
591 xpcom/build/nsXPCOMCID.h \
592 xpcom/base/nscore.h \
593 xpcom/ds/pldhash.h \
594 xpcom/threads/plevent.h \
595 xpcom/components/xcDll.h \
596 xpcom/typelib/xpt/public/xpt_arena.h \
597 xpcom/typelib/xpt/public/xpt_struct.h \
598 xpcom/typelib/xpt/public/xpt_xdr.h \
599 xpcom/reflect/xptcall/public/xptcall.h \
600 xpcom/reflect/xptcall/public/xptcstubsdecl.inc \
601 xpcom/reflect/xptcall/public/xptcstubsdef.inc \
602 xpcom/reflect/xptinfo/public/xptinfo.h \
603 \
604 xpcom/glue/nsIInterfaceRequestorUtils.h \
605 xpcom/glue/nsISupportsImpl.h \
606 xpcom/glue/nsISupportsUtils.h \
607 xpcom/glue/nsIWeakReferenceUtils.h \
608 \
609 xpcom/glue/nsCOMPtr.h \
610 xpcom/glue/nsDebug.h \
611 xpcom/glue/nsGenericFactory.h \
612 xpcom/glue/nsIGenericFactory.h \
613 xpcom/glue/nsMemory.h \
614 xpcom/glue/nsTraceRefcnt.h \
615 xpcom/glue/nsWeakReference.h \
616 \
617 xpcom/glue/standalone/nsXPCOMGlue.h \
618 \
619 xpcom-config.h
620
621IPCD-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/ipcd/
622IPCD-HEADERS_IFFLAGS = -m 644
623IPCD-HEADERS_SOURCES = \
624 ipc/ipcd/client/public/ipcCID.h \
625 ipc/ipcd/extensions/lock/public/ipcLockCID.h \
626 ipc/ipcd/util/public/ipcMessageReader.h \
627 ipc/ipcd/util/public/ipcMessageWriter.h \
628 ipc/ipcd/daemon/public/ipcModule.h \
629 ipc/ipcd/daemon/public/ipcModuleUtil.h \
630 ipc/ipcd/client/public/ipcdclient.h
631
632
633#
634# The IDL compiler.
635#
636# We build it statically because we cannot rely on additional .a files
637# like in the original build
638#
639xpidl_TEMPLATE = XPCOMBLDPROG
640xpidl_DEFS = EXPORT_XPT_API
641## @todo This assumes HOST == TARGET.
642xpidl_INST = $(INST_BIN)
643## Obsolete hack: MacPorts is 32-bit on 10.5 and 64-bit on 10.6. Set your KBUILD_HOST_ARCH env.vars. accordingly.
644#if "$(KBUILD_HOST).$(KBUILD_HOST_ARCH)" == "darwin.amd64" && defined(VBOX_MACOS_10_5_WORKAROUND)
645# xpidl_BLD_TRG_ARCH = x86
646# ## @todo kBuild ticket 84 workarounds:
647# xpidl_DEFS.x86 = $(TEMPLATE_XPCOMBLDPROG_DEFS.x86)
648# xpidl_CFLAGS.x86 = $(TEMPLATE_XPCOMBLDPROG_CFLAGS.x86)
649# xpidl_CXXFLAGS.x86 = $(TEMPLATE_XPCOMBLDPROG_CXXFLAGS.x86)
650# xpidl_LDFLAGS.x86 = $(TEMPLATE_XPCOMBLDPROG_LDFLAGS.x86)
651#endif
652xpidl_SOURCES = \
653 xpcom/typelib/xpidl/xpidl.c \
654 xpcom/typelib/xpidl/xpidl_idl.c \
655 xpcom/typelib/xpidl/xpidl_util.c \
656 xpcom/typelib/xpidl/xpidl_header.c \
657 xpcom/typelib/xpidl/xpidl_typelib.c \
658 xpcom/typelib/xpidl/xpidl_doc.c \
659 xpcom/typelib/xpidl/xpidl_java.c \
660 xpcom/typelib/xpt/src/xpt_arena.c \
661 xpcom/typelib/xpt/src/xpt_struct.c \
662 xpcom/typelib/xpt/src/xpt_xdr.c
663
664ifeq ($(KBUILD_TARGET),os2)
665 # glib and libIDL needed by XPCOM on OS/2.
666 ifeq ($(VBOX_PATH_GLIB),)
667 VBOX_PATH_GLIB := $(lastword $(sort $(wildcard $(PATH_DEVTOOLS_TRG)/glibidl/*/glibidl/gcc335)))
668 endif
669 VBOX_PATH_LIBIDL ?= $(VBOX_PATH_GLIB)
670 ifeq ($(wildcard $(VBOX_PATH_GLIB)),)
671 $(warning VBOX_PATH_GLIB is "$(VBOX_PATH_GLIB)" which is not a valid directory!)
672 endif
673 ifeq ($(wildcard $(VBOX_PATH_LIBIDL)),)
674 $(warning VBOX_PATH_LIBIDL is "$(VBOX_PATH_LIBIDL)" which is not a valid directory!)
675 endif
676 xpidl_INCS = \
677 $(VBOX_PATH_LIBIDL)/include \
678 $(VBOX_PATH_GLIB)/include
679 xpidl_LIBS = \
680 $(VBOX_PATH_LIBIDL)/lib/libidl.lib \
681 $(VBOX_PATH_LIBIDL)/lib/glib.lib
682 # install necessary DLLs to the same place where xpidl goes
683 INSTALLS += xpidl-DLLS
684 xpidl_ORDERDEPS = $(TARGET_xpidl-DLLS)
685 xpidl-DLLS_INST = $(xpidl_INST)
686 # static libraries of these may be provided instead,
687 # so copy DLLs only when they are present
688 xpidl-DLLS_SOURCES += $(wildcard $(VBOX_PATH_GLIB)/lib/glib.dll)
689 xpidl-DLLS_SOURCES += $(wildcard $(VBOX_PATH_LIBIDL)/lib/libIDL.dll)
690else
691 # We do these ONCE.
692 libIDL_config_cflags := $(shell $(VBOX_LIBIDL_CONFIG) --cflags)
693 libIDL_config_libs := $(shell $(VBOX_LIBIDL_CONFIG) --libs)
694 xpidl_CFLAGS = \
695 $(libIDL_config_cflags)
696 xpidl_LDFLAGS = \
697 $(libIDL_config_libs)
698endif
699
700#
701# The XPT linker.
702#
703xpt_link_TEMPLATE = XPCOMBLDPROG
704xpt_link_SOURCES = \
705 xpcom/typelib/xpt/tools/xpt_link.c \
706 xpcom/typelib/xpt/src/xpt_arena.c \
707 xpcom/typelib/xpt/src/xpt_struct.c \
708 xpcom/typelib/xpt/src/xpt_xdr.c
709
710
711#
712# The NSPR Library.
713#
714VBox-xpcom-nspr_TEMPLATE = XPCOM
715VBox-xpcom-nspr_NOINST = 1
716VBox-xpcom-nspr_DEFS = \
717 _NSPR_BUILD_ \
718 HAVE_LCHOWN=1 \
719 HAVE_STRERROR=1 \
720 FORCE_PR_LOG
721VBox-xpcom-nspr_DEFS += \
722 VBOX_USE_IPRT_IN_NSPR
723VBox-xpcom-nspr_DEFS.darwin.amd64 = \
724 VBOX_USE_MORE_IPRT_IN_NSPR
725VBox-xpcom-nspr_DEFS.darwin = \
726 HAVE_BSD_FLOCK=1 \
727 _PR_PTHREADS
728VBox-xpcom-nspr_DEFS.freebsd = \
729 FREEBSD=1 \
730 HAVE_CVAR_BUILT_ON_SEM \
731 _PR_PTHREADS
732## @todo filling in the missing stuff, please don't just copy it from linux.
733# FIXME: LINUX should be defined by _linux.cfg
734VBox-xpcom-nspr_DEFS.linux = \
735 LINUX=1 \
736 _POSIX_SOURCE=1 \
737 _BSD_SOURCE=1 \
738 _SVID_SOURCE=1 \
739 _REENTRANT=1 \
740 _LARGEFILE64_SOURCE=1 \
741 HAVE_FCNTL_FILE_LOCKING=1 \
742 HAVE_CVAR_BUILT_ON_SEM \
743 _PR_PTHREADS
744# _BSD_SOURCE is here to keep the Glibc header files happy and make them include the right things
745# FIXME: L4 should be defined by _linux.cfg
746VBox-xpcom-nspr_DEFS.l4 = \
747 L4=1 \
748 _REENTRANT=1 \
749 _LARGEFILE64_SOURCE=1 \
750 _POSIX_SOURCE=1 \
751 _BSD_SOURCE=1 \
752 HAVE_FCNTL_FILE_LOCKING=1 \
753 HAVE_CVAR_BUILT_ON_SEM
754VBox-xpcom-nspr_DEFS.netbsd = \
755 _PR_PTHREADS
756VBox-xpcom-nspr_DEFS.openbsd = \
757 _PR_PTHREADS
758VBox-xpcom-nspr_DEFS.os2 =
759VBox-xpcom-nspr_DEFS.solaris = \
760 HAVE_FCNTL_FILE_LOCKING=1 \
761 _PR_PTHREADS
762VBox-xpcom-nspr_INCS = \
763 nsprpub/pr/include/private \
764 $(PATH_VBox-xpcom-nspr)
765
766VBox-xpcom-nspr_SOURCES = \
767 nsprpub/pr/src/io/prfdcach.c \
768 nsprpub/pr/src/io/prmwait.c \
769 nsprpub/pr/src/io/priometh.c \
770 nsprpub/pr/src/io/pripv6.c \
771 nsprpub/pr/src/io/prmapopt.c \
772 nsprpub/pr/src/io/prlayer.c \
773 nsprpub/pr/src/io/prlog.c \
774 nsprpub/pr/src/io/prmmap.c \
775 nsprpub/pr/src/io/prpolevt.c \
776 nsprpub/pr/src/io/prprf.c \
777 nsprpub/pr/src/io/prscanf.c \
778 nsprpub/pr/src/io/prstdio.c \
779 nsprpub/pr/src/linking/prlink.c \
780 nsprpub/pr/src/malloc/prmalloc.c \
781 nsprpub/pr/src/malloc/prmem.c \
782 nsprpub/pr/src/md/prosdep.c \
783 nsprpub/pr/src/memory/prseg.c \
784 nsprpub/pr/src/memory/prshm.c \
785 nsprpub/pr/src/memory/prshma.c \
786 nsprpub/pr/src/misc/pralarm.c \
787 nsprpub/pr/src/misc/pratom.c \
788 nsprpub/pr/src/misc/prcountr.c \
789 nsprpub/pr/src/misc/prdtoa.c \
790 nsprpub/pr/src/misc/prenv.c \
791 nsprpub/pr/src/misc/prerr.c \
792 nsprpub/pr/src/misc/prerror.c \
793 nsprpub/pr/src/misc/prerrortable.c \
794 nsprpub/pr/src/misc/prinit.c \
795 nsprpub/pr/src/misc/prinrval.c \
796 nsprpub/pr/src/misc/pripc.c \
797 nsprpub/pr/src/misc/prlog2.c \
798 nsprpub/pr/src/misc/prlong.c \
799 nsprpub/pr/src/misc/prnetdb.c \
800 nsprpub/pr/src/misc/prolock.c \
801 nsprpub/pr/src/misc/prrng.c \
802 nsprpub/pr/src/misc/prsystem.c \
803 nsprpub/pr/src/misc/prtime.c \
804 nsprpub/pr/src/misc/prthinfo.c \
805 nsprpub/pr/src/misc/prtpool.c \
806 nsprpub/pr/src/misc/prtrace.c \
807 nsprpub/pr/src/threads/prcmon.c \
808 nsprpub/pr/src/threads/prrwlock.c \
809 nsprpub/pr/src/threads/prtpd.c \
810 nsprpub/pr/src/prvrsion.c \
811 nsprpub/lib/ds/plarena.c \
812 nsprpub/lib/ds/plhash.c \
813 nsprpub/lib/libc/src/strlen.c \
814 nsprpub/lib/libc/src/strcpy.c \
815 nsprpub/lib/libc/src/strdup.c \
816 nsprpub/lib/libc/src/strcat.c \
817 nsprpub/lib/libc/src/strcmp.c \
818 nsprpub/lib/libc/src/strccmp.c \
819 nsprpub/lib/libc/src/strchr.c \
820 nsprpub/lib/libc/src/strpbrk.c \
821 nsprpub/lib/libc/src/strstr.c \
822 nsprpub/lib/libc/src/strcstr.c \
823 nsprpub/lib/libc/src/strtok.c \
824 nsprpub/lib/libc/src/base64.c \
825 nsprpub/lib/libc/src/plerror.c \
826 nsprpub/lib/libc/src/plgetopt.c
827
828ifeq ($(filter-out darwin freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # unixish
829VBox-xpcom-nspr_SOURCES += \
830 nsprpub/pr/src/md/unix/unix.c \
831 nsprpub/pr/src/md/unix/unix_errors.c \
832 nsprpub/pr/src/md/unix/uxproces.c \
833 nsprpub/pr/src/md/unix/uxrng.c \
834 nsprpub/pr/src/md/unix/uxshm.c \
835 nsprpub/pr/src/md/unix/uxwrap.c \
836 nsprpub/pr/src/pthreads/ptio.c \
837 nsprpub/pr/src/pthreads/ptsynch.c \
838 nsprpub/pr/src/pthreads/ptthread.c \
839 nsprpub/pr/src/pthreads/ptmisc.c
840endif
841
842VBox-xpcom-nspr_SOURCES.darwin = nsprpub/pr/src/md/unix/darwin.c
843VBox-xpcom-nspr_SOURCES.darwin.x86 = nsprpub/pr/src/md/unix/os_Darwin_x86.s
844
845VBox-xpcom-nspr_SOURCES.freebsd = nsprpub/pr/src/md/unix/freebsd.c
846
847VBox-xpcom-nspr_SOURCES.l4 = \
848 nsprpub/pr/src/io/prfile.c /* why not for Linux? */ \
849 nsprpub/pr/src/io/prio.c /* "" "" "" "" */ \
850 nsprpub/pr/src/io/prsocket.c \
851 nsprpub/pr/src/md/unix/unix.c \
852 nsprpub/pr/src/md/unix/unix_errors.c \
853 nsprpub/pr/src/md/unix/uxpoll.c \
854 nsprpub/pr/src/md/unix/uxproces.c \
855 nsprpub/pr/src/md/unix/uxrng.c \
856 nsprpub/pr/src/md/unix/uxshm.c \
857 nsprpub/pr/src/md/unix/uxwrap.c \
858 nsprpub/pr/src/md/unix/l4env.c \
859 nsprpub/pr/src/threads/prcthr.c \
860 nsprpub/pr/src/threads/prmon.c \
861 nsprpub/pr/src/threads/combined/prucpu.c \
862 nsprpub/pr/src/threads/combined/prucv.c \
863 nsprpub/pr/src/threads/combined/prulock.c \
864 nsprpub/pr/src/threads/combined/prustack.c \
865 nsprpub/pr/src/threads/combined/pruthr.c
866# nsprpub/pr/src/md/l4env/prnetdb.c \
867# nsprpub/pr/src/md/l4env/threads.c
868VBox-xpcom-nspr_SOURCES.l4.x86 = nsprpub/pr/src/md/unix/os_Linux_x86.s
869VBox-xpcom-nspr_SOURCES.l4.amd64 = nsprpub/pr/src/md/unix/os_Linux_x86_64.s
870
871VBox-xpcom-nspr_SOURCES.linux = nsprpub/pr/src/md/unix/linux.c
872VBox-xpcom-nspr_SOURCES.linux.x86 = nsprpub/pr/src/md/unix/os_Linux_x86.s
873VBox-xpcom-nspr_SOURCES.linux.amd64 = nsprpub/pr/src/md/unix/os_Linux_x86_64.s
874
875VBox-xpcom-nspr_SOURCES.os2 = \
876 nsprpub/pr/src/io/prdir.c \
877 nsprpub/pr/src/io/prfile.c \
878 nsprpub/pr/src/io/prio.c \
879 nsprpub/pr/src/io/prsocket.c \
880 nsprpub/pr/src/md/os2/os2misc.c \
881 nsprpub/pr/src/md/os2/os2sem.c \
882 nsprpub/pr/src/md/os2/os2inrval.c \
883 nsprpub/pr/src/md/os2/os2gc.c \
884 nsprpub/pr/src/md/os2/os2thred.c \
885 nsprpub/pr/src/md/os2/os2io.c \
886 nsprpub/pr/src/md/os2/os2cv.c \
887 nsprpub/pr/src/md/os2/os2sock.c \
888 nsprpub/pr/src/md/os2/os2_errors.c \
889 nsprpub/pr/src/md/os2/os2poll.c \
890 nsprpub/pr/src/md/os2/os2rng.c \
891 nsprpub/pr/src/threads/prdump.c \
892 nsprpub/pr/src/threads/prmon.c \
893 nsprpub/pr/src/threads/prsem.c \
894 nsprpub/pr/src/threads/prcthr.c \
895 nsprpub/pr/src/threads/combined/prucpu.c \
896 nsprpub/pr/src/threads/combined/prucv.c \
897 nsprpub/pr/src/threads/combined/prulock.c \
898 nsprpub/pr/src/threads/combined/prustack.c \
899 nsprpub/pr/src/threads/combined/pruthr.c
900# gcc/emx sources
901VBox-xpcom-nspr_SOURCES.os2 += \
902 nsprpub/pr/src/md/os2/os2emx.s \
903 nsprpub/pr/src/md/os2/os2vaclegacy.s
904# IBM VAC sources (not used)
905#VBox-xpcom-nspr_SOURCES.os2 += \
906# nsprpub/pr/src/md/os2/os2vacpp.asm
907
908VBox-xpcom-nspr_SOURCES.solaris = nsprpub/pr/src/md/unix/solaris.c
909VBox-xpcom-nspr_SOURCES.solaris.x86 = nsprpub/pr/src/md/unix/os_SunOS_x86.s
910VBox-xpcom-nspr_SOURCES.solaris.amd64 = nsprpub/pr/src/md/unix/os_SunOS_x86_64.s
911
912# generate build stamps
913nsprpub/pr/src/prvrsion.c_DEPS = $(PATH_VBox-xpcom-nspr)/_pr_bld.h
914nsprpub/lib/ds/plvrsion.c_DEPS = $(PATH_VBox-xpcom-nspr)/_pl_bld.h
915VBox-xpcom-nspr_CLEAN += \
916 $(PATH_VBox-xpcom-nspr)/_pr_bld.h \
917 $(PATH_VBox-xpcom-nspr)/_pl_bld.h
918
919$$(PATH_VBox-xpcom-nspr)/_pr_bld.h: | $$(PATH_VBox-xpcom-nspr)/
920 $(call MSG_GENERATE,,$@)
921 $(QUIET)$(APPEND) -t $@ '#define _BUILD_STRING "$(date +%Y-%m-%d %T)"'
922
923$$(PATH_VBox-xpcom-nspr)/_pl_bld.h: | $$(PATH_VBox-xpcom-nspr)/
924 $(call MSG_GENERATE,,$@)
925 $(QUIET)$(APPEND) -t $@ '#define _BUILD_STRING "$(date +%Y-%m-%d %T)"'
926
927
928VBox-xpcom-typelib_TEMPLATE = XPCOM
929VBox-xpcom-typelib_NOINST = 1
930VBox-xpcom-typelib_SOURCES = \
931 xpcom/typelib/xpt/src/xpt_arena.c \
932 xpcom/typelib/xpt/src/xpt_struct.c \
933 xpcom/typelib/xpt/src/xpt_xdr.c
934
935VBox-xpcom-string_TEMPLATE = XPCOM
936VBox-xpcom-string_NOINST = 1
937VBox-xpcom-string_SOURCES = \
938 xpcom/string/src/nsAString.cpp \
939 xpcom/string/src/nsDependentSubstring.cpp \
940 xpcom/string/src/nsObsoleteAStringThunk.cpp \
941 xpcom/string/src/nsPrintfCString.cpp \
942 xpcom/string/src/nsPromiseFlatString.cpp \
943 xpcom/string/src/nsReadableUtils.cpp \
944 xpcom/string/src/nsSubstring.cpp \
945 xpcom/string/src/nsSubstringTuple.cpp \
946 xpcom/string/src/nsString.cpp \
947 xpcom/string/src/nsStringComparator.cpp \
948 xpcom/string/src/nsStringObsolete.cpp
949
950VBox-xpcom-base_TEMPLATE = XPCOM
951VBox-xpcom-base_NOINST = 1
952VBox-xpcom-base_DEFS = _IMPL_NS_COM
953VBox-xpcom-base_SOURCES = \
954 xpcom/base/nsAllocator.cpp \
955 xpcom/base/nsConsoleMessage.cpp \
956 xpcom/base/nsConsoleService.cpp \
957 xpcom/base/nsDebugImpl.cpp \
958 xpcom/base/nsErrorService.cpp \
959 xpcom/base/nsExceptionService.cpp \
960 xpcom/base/nsID.cpp \
961 xpcom/base/nsMemoryImpl.cpp \
962 xpcom/base/nsTraceRefcntImpl.cpp \
963 xpcom/base/nsStackFrameUnix.cpp
964
965VBox-xpcom-ds_TEMPLATE = XPCOM
966VBox-xpcom-ds_NOINST = 1
967VBox-xpcom-ds_DEFS = _IMPL_NS_COM
968VBox-xpcom-ds_SOURCES = \
969 xpcom/ds/pldhash.c \
970 xpcom/ds/nsAtomTable.cpp \
971 xpcom/ds/nsAtomService.cpp \
972 xpcom/ds/nsByteBuffer.cpp \
973 xpcom/ds/nsCheapSets.cpp \
974 xpcom/ds/nsCRT.cpp \
975 xpcom/ds/nsDeque.cpp \
976 xpcom/ds/nsEmptyEnumerator.cpp \
977 xpcom/ds/nsEnumeratorUtils.cpp \
978 xpcom/ds/nsFixedSizeAllocator.cpp \
979 xpcom/ds/nsHashSets.cpp \
980 xpcom/ds/nsHashtable.cpp \
981 xpcom/ds/nsObserverList.cpp \
982 xpcom/ds/nsObserverService.cpp \
983 xpcom/ds/nsProperties.cpp \
984 xpcom/ds/nsPersistentProperties.cpp \
985 xpcom/ds/nsQuickSort.cpp \
986 xpcom/ds/nsRecyclingAllocator.cpp \
987 xpcom/ds/nsStaticNameTable.cpp \
988 xpcom/ds/nsStringEnumerator.cpp \
989 xpcom/ds/nsSupportsArray.cpp \
990 xpcom/ds/nsSupportsArrayEnumerator.cpp \
991 xpcom/ds/nsSupportsPrimitives.cpp \
992 xpcom/ds/nsTHashtable.cpp \
993 xpcom/ds/nsUnicharBuffer.cpp \
994 xpcom/ds/nsVariant.cpp \
995 xpcom/ds/nsVoidArray.cpp \
996 xpcom/ds/nsTextFormatter.cpp \
997 xpcom/ds/nsTimelineService.cpp \
998 xpcom/ds/nsValueArray.cpp \
999 xpcom/ds/nsCOMArray.cpp \
1000 xpcom/ds/nsArray.cpp \
1001 xpcom/ds/nsArrayEnumerator.cpp
1002# xpcom/ds/nsHashPropertyBag.cpp
1003
1004# @todo what about MOZ_USER_DIR?
1005VBox-xpcom-io_TEMPLATE = XPCOM
1006VBox-xpcom-io_NOINST = 1
1007VBox-xpcom-io_DEFS = _IMPL_NS_COM MOZ_USER_DIR=\".mozilla\"
1008VBox-xpcom-io_INCS.darwin = \
1009 xpcom/MoreFiles
1010VBox-xpcom-io_SOURCES = \
1011 xpcom/io/nsAppFileLocationProvider.cpp \
1012 xpcom/io/nsBinaryStream.cpp \
1013 xpcom/io/nsByteArrayInputStream.cpp \
1014 xpcom/io/nsDirectoryService.cpp \
1015 xpcom/io/nsEscape.cpp \
1016 xpcom/io/nsFastLoadFile.cpp \
1017 xpcom/io/nsFastLoadService.cpp \
1018 xpcom/io/nsInputStreamTee.cpp \
1019 xpcom/io/nsLinebreakConverter.cpp \
1020 xpcom/io/nsLocalFileCommon.cpp \
1021 xpcom/io/nsMultiplexInputStream.cpp \
1022 xpcom/io/nsPipe3.cpp \
1023 xpcom/io/nsStreamUtils.cpp \
1024 xpcom/io/nsScriptableInputStream.cpp \
1025 xpcom/io/nsSegmentedBuffer.cpp \
1026 xpcom/io/SpecialSystemDirectory.cpp \
1027 xpcom/io/nsStorageStream.cpp \
1028 xpcom/io/nsStringStream.cpp \
1029 xpcom/io/nsUnicharInputStream.cpp \
1030 xpcom/io/nsNativeCharsetUtils.cpp
1031VBox-xpcom-io_SOURCES.darwin.x86 = \
1032 xpcom/io/nsLocalFileOSX.cpp \
1033 xpcom/MoreFiles/FSCopyObject.c \
1034 xpcom/MoreFiles/MoreFilesX.c
1035VBox-xpcom-io_SOURCES.l4 = \
1036 xpcom/io/nsLocalFileL4.cpp
1037if1of ($(KBUILD_TARGET) $(KBUILD_TARGET).$(KBUILD_TARGET_ARCH), freebsd linux netbsd openbsd solaris darwin.amd64)
1038VBox-xpcom-io_SOURCES += \
1039 xpcom/io/nsLocalFileUnix.cpp
1040endif
1041VBox-xpcom-io_SOURCES.os2 = \
1042 xpcom/io/nsLocalFileOS2.cpp
1043
1044VBox-xpcom-components_TEMPLATE = XPCOM
1045VBox-xpcom-components_NOINST = 1
1046VBox-xpcom-components_DEFS = _IMPL_NS_COM EXPORT_XPTI_API
1047VBox-xpcom-components_SOURCES = \
1048 xpcom/components/nsCategoryManager.cpp \
1049 xpcom/components/nsComponentManager.cpp \
1050 xpcom/components/nsComponentManagerObsolete.cpp \
1051 xpcom/components/nsNativeComponentLoader.cpp \
1052 xpcom/components/nsServiceManagerObsolete.cpp \
1053 xpcom/components/xcDll.cpp \
1054 xpcom/components/nsStaticComponentLoader.cpp
1055
1056VBox-xpcom-threads_TEMPLATE = XPCOM
1057VBox-xpcom-threads_NOINST = 1
1058VBox-xpcom-threads_DEFS = _IMPL_NS_COM
1059VBox-xpcom-threads_SOURCES = \
1060 xpcom/threads/plevent.c \
1061 xpcom/threads/nsAutoLock.cpp \
1062 xpcom/threads/nsEnvironment.cpp \
1063 xpcom/threads/nsEventQueue.cpp \
1064 xpcom/threads/nsEventQueueService.cpp \
1065 xpcom/threads/nsThread.cpp \
1066 xpcom/threads/nsTimerImpl.cpp \
1067 xpcom/threads/nsProcessCommon.cpp \
1068 xpcom/threads/TimerThread.cpp
1069
1070VBox-xpcom-xptinfo_TEMPLATE = XPCOM
1071VBox-xpcom-xptinfo_NOINST = 1
1072VBox-xpcom-xptinfo_DEFS = _IMPL_NS_COM _IMPL_NS_BASE EXPORT_XPTI_API EXPORT_XPT_API
1073VBox-xpcom-xptinfo_SOURCES = \
1074 xpcom/reflect/xptinfo/src/xptiFile.cpp \
1075 xpcom/reflect/xptinfo/src/xptiInterfaceInfo.cpp \
1076 xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp \
1077 xpcom/reflect/xptinfo/src/xptiManifest.cpp \
1078 xpcom/reflect/xptinfo/src/xptiMisc.cpp \
1079 xpcom/reflect/xptinfo/src/xptiTypelibGuts.cpp \
1080 xpcom/reflect/xptinfo/src/xptiWorkingSet.cpp \
1081 xpcom/reflect/xptinfo/src/xptiZipItem.cpp \
1082 xpcom/reflect/xptinfo/src/xptiZipLoader.cpp
1083
1084
1085VBox-xpcom-xptcall_TEMPLATE = XPCOM
1086VBox-xpcom-xptcall_NOINST = 1
1087VBox-xpcom-xptcall_DEFS = _IMPL_NS_COM _IMPL_NS_BASE EXPORT_XPTC_API
1088VBox-xpcom-xptcall_DEFS.darwin = KEEP_STACK_16_BYTE_ALIGNED
1089VBox-xpcom-xptcall_DEFS.l4 = L4
1090VBox-xpcom-xptcall_DEFS.os2 = MOZ_NEED_LEADING_UNDERSCORE
1091VBox-xpcom-xptcall_INCS.os2 = xpcom/reflect/xptcall/src/md/unix
1092VBox-xpcom-xptcall_SOURCES = xpcom/reflect/xptcall/src/xptcall.cpp
1093VBox-xpcom-xptcall_SOURCES.darwin.x86 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_unixish_x86.cpp \
1094 xpcom/reflect/xptcall/src/md/unix/xptcstubs_unixish_x86.cpp
1095VBox-xpcom-xptcall_SOURCES.darwin.amd64= xpcom/reflect/xptcall/src/md/unix/xptcinvoke_amd64_darwin.cpp \
1096 xpcom/reflect/xptcall/src/md/unix/xptcstubs_amd64_darwin.cpp
1097VBox-xpcom-xptcall_SOURCES.freebsd.x86 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_gcc_x86_unix.cpp \
1098 xpcom/reflect/xptcall/src/md/unix/xptcstubs_gcc_x86_unix.cpp
1099VBox-xpcom-xptcall_SOURCES.freebsd.amd64=xpcom/reflect/xptcall/src/md/unix/xptcinvoke_x86_64_linux.cpp \
1100 xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_64_linux.cpp
1101VBox-xpcom-xptcall_SOURCES.linux.x86 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_gcc_x86_unix.cpp \
1102 xpcom/reflect/xptcall/src/md/unix/xptcstubs_gcc_x86_unix.cpp
1103VBox-xpcom-xptcall_SOURCES.linux.amd64 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_x86_64_linux.cpp \
1104 xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_64_linux.cpp
1105VBox-xpcom-xptcall_SOURCES.os2 = xpcom/reflect/xptcall/src/md/os2/xptcinvoke_gcc_x86_os2.cpp \
1106 xpcom/reflect/xptcall/src/md/os2/xptcstubs_gcc_x86_os2.cpp
1107VBox-xpcom-xptcall_SOURCES.solaris.x86 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_x86_solaris.cpp \
1108 xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_solaris.cpp
1109VBox-xpcom-xptcall_SOURCES.solaris.amd64 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_x86_64_linux.cpp \
1110 xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_64_linux.cpp
1111
1112xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_solaris.cpp_CXXFLAGS = -O0
1113# -O0 works fine, while -O1 doesn't. The gcc man page can't be listing all the -f*
1114# stuff that -O1 enables, because when using the options without -O1, it's -fomit-frame-pointer
1115# that triggers is, while -O1 -fno-omit-frame-pointer does not work. Anyway, it's probably a gcc/mozila
1116# bug and it's not worth investigating as I'm not the maintainger of the solaris gcc port. [bird, 2007-09-17]
1117
1118
1119VBox-xpcom-proxy_TEMPLATE = XPCOM
1120VBox-xpcom-proxy_NOINST = 1
1121VBox-xpcom-proxy_DEFS = _IMPL_NS_COM EXPORT_XPTC_API EXPORT_XPTI_API
1122VBox-xpcom-proxy_SOURCES = xpcom/proxy/src/nsProxyEvent.cpp \
1123 xpcom/proxy/src/nsProxyEventClass.cpp \
1124 xpcom/proxy/src/nsProxyEventObject.cpp \
1125 xpcom/proxy/src/nsProxyObjectManager.cpp \
1126 xpcom/proxy/src/nsProxyRelease.cpp
1127
1128
1129#
1130# The VBoxXPCOM Glue static libraries.
1131#
1132# See http://developer.mozilla.org/en/docs/XPCOM_Glue for details about the
1133# original XPCOM glue library purpose and usage.
1134#
1135# We don't really use the glue library in the described way because we don't
1136# provide frozen APIs (yet), so all VBox XPCOM client applications are
1137# dependent on the given version of both the VBox XPCOM runtime (binary
1138# dependency) and VirtualBox component library (COM interface dependency). For
1139# this reason, VBox client applications link to the VBox XPCOM shared library
1140# directly (instead of linking to the standalone XPCOM glue library that would
1141# dynamically search for and load the installed XPCOM runtime). For the same
1142# reason, we link all parts of XPCOM into a single shared XPCOM library below
1143# (as opposed to the original XPCOM where e.g. NSPR lives in a separate DLL).
1144#
1145VBoxXPCOMGlue_COMMON_SOURCES = \
1146 xpcom/glue/nsCOMPtr.cpp \
1147 xpcom/glue/nsComponentManagerUtils.cpp \
1148 xpcom/glue/nsDebug.cpp \
1149 xpcom/glue/nsGenericFactory.cpp \
1150 xpcom/glue/nsIInterfaceRequestorUtils.cpp \
1151 xpcom/glue/nsMemory.cpp \
1152 xpcom/glue/nsTraceRefcnt.cpp \
1153 xpcom/glue/nsWeakReference.cpp
1154
1155# dependent glue library which goes in to the VBoxXPCOM shared library
1156VBoxXPCOMGlue_s_TEMPLATE = XPCOM
1157VBoxXPCOMGlue_s_NOINST = 1
1158VBoxXPCOMGlue_s_DEFS = _IMPL_NS_COM
1159VBoxXPCOMGlue_s_SOURCES = $(VBoxXPCOMGlue_COMMON_SOURCES)
1160
1161# standalone glue library which all third-party client apps (if any) will link with
1162# (currently not used anywhere (see above) but still built to make sure
1163# the code inside #ifdef XPCOM_GLUE compiles)
1164VBoxXPCOMGlue_TEMPLATE = XPCOM
1165VBoxXPCOMGlue_DEFS = XPCOM_GLUE
1166VBoxXPCOMGlue_SOURCES = $(VBoxXPCOMGlue_COMMON_SOURCES) \
1167 xpcom/glue/standalone/nsXPCOMGlue.cpp \
1168 xpcom/glue/standalone/nsGREDirServiceProvider.cpp
1169VBoxXPCOMGlue_SOURCES += \
1170 $(TARGET_VBox-xpcom-string)
1171#VBoxXPCOMGlue_INST = lib/ $(INST_SDK)lib/
1172
1173
1174#
1175# The VBoxXPCOM Shared Object, assembling all lib files.
1176#
1177VBoxXPCOM_TEMPLATE = XPCOM
1178VBoxXPCOM_NAME = $(basename $(notdir $(LIB_XPCOM)))
1179VBoxXPCOM_DEFS = BUILD_DCONNECT="1" _IMPL_NS_COM
1180ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
1181 VBoxXPCOM_LDFLAGS.linux = -Wl,--version-script=$(XPCOM_C_NAMESPACE_MAP)
1182 VBoxXPCOM_LNK_DEPS.linux += $(XPCOM_C_NAMESPACE_MAP)
1183 VBoxXPCOM_LDFLAGS.solaris = -Wl,-M,$(XPCOM_C_NAMESPACE_MAP)
1184 VBoxXPCOM_LNK_DEPS.solaris+= $(XPCOM_C_NAMESPACE_MAP)
1185endif
1186VBoxXPCOM_SOURCES = \
1187 xpcom/build/nsXPComInit.cpp \
1188 xpcom/build/nsStringAPI.cpp
1189VBoxXPCOM_SOURCES.darwin = \
1190 vboxdeps.cpp
1191VBoxXPCOM_SOURCES.os2 = \
1192 vboxdeps.cpp
1193VBoxXPCOM_SOURCES.solaris = \
1194 vboxdeps.cpp
1195VBoxXPCOM_LIBS = \
1196 $(TARGET_VBox-xpcom-typelib) \
1197 $(TARGET_VBox-xpcom-string) \
1198 $(TARGET_VBox-xpcom-base) \
1199 $(TARGET_VBox-xpcom-ds) \
1200 $(TARGET_VBox-xpcom-io) \
1201 $(TARGET_VBox-xpcom-components) \
1202 $(TARGET_VBox-xpcom-threads) \
1203 $(TARGET_VBox-xpcom-xptinfo) \
1204 $(TARGET_VBox-xpcom-xptcall) \
1205 $(TARGET_VBox-xpcom-proxy) \
1206 $(TARGET_VBox-xpcom-nspr) \
1207 $(TARGET_VBoxXPCOMGlue_s)
1208VBoxXPCOM_LIBS.linux = \
1209 pthread dl
1210
1211ifeq ($(filter-out freebsd l4 linux netbsd openbsd,$(KBUILD_TARGET)),) # gnu ld.
1212VBoxXPCOM_LDFLAGS = -Wl,--whole-archive \
1213 $(TARGET_VBox-xpcom-typelib) \
1214 $(TARGET_VBox-xpcom-string) \
1215 $(TARGET_VBox-xpcom-base) \
1216 $(TARGET_VBox-xpcom-ds) \
1217 $(TARGET_VBox-xpcom-io) \
1218 $(TARGET_VBox-xpcom-components) \
1219 $(TARGET_VBox-xpcom-threads) \
1220 $(TARGET_VBox-xpcom-xptinfo) \
1221 $(TARGET_VBox-xpcom-xptcall) \
1222 $(TARGET_VBox-xpcom-proxy) \
1223 $(TARGET_VBox-xpcom-nspr) \
1224 $(TARGET_VBoxXPCOMGlue_s) \
1225 -Wl,--no-whole-archive
1226endif
1227
1228VBoxXPCOM_LDFLAGS.solaris += -Wl,-z,allextract \
1229 $(TARGET_VBox-xpcom-typelib) \
1230 $(TARGET_VBox-xpcom-string) \
1231 $(TARGET_VBox-xpcom-base) \
1232 $(TARGET_VBox-xpcom-ds) \
1233 $(TARGET_VBox-xpcom-io) \
1234 $(TARGET_VBox-xpcom-components) \
1235 $(TARGET_VBox-xpcom-threads) \
1236 $(TARGET_VBox-xpcom-xptinfo) \
1237 $(TARGET_VBox-xpcom-xptcall) \
1238 $(TARGET_VBox-xpcom-proxy) \
1239 $(TARGET_VBox-xpcom-nspr) \
1240 $(TARGET_VBoxXPCOMGlue_s) \
1241 -Wl,-z,defaultextract
1242
1243#VBoxXPCOM_LIBS.l4 = $(L4_LIBDIR)/libxpcomstubs.a $(L4_LIBDIR)/../libuc_c++.a \
1244# $(VBOX_PATH_L4_GCC3_INSTALL)/libsupc++.a $(VBOX_PATH_L4_GCC3_INSTALL)/libgcc_eh.a
1245# EF heap
1246#VBoxXPCOM_LIBS += $(LIB_RUNTIME_EF)
1247#VBoxXPCOM_LDFLAGS = -Wl,--whole-archive $(VBoxXPCOM_LIBS) -Wl,--no-whole-archive $(LIB_RUNTIME)
1248VBoxXPCOM_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxXPCOM.dylib
1249
1250ifdef VBOX_IPC_RELEASE_LOG
1251IPC_LOGGING = 1
1252else ifneq ($(KBUILD_TYPE),release)
1253IPC_LOGGING = 1
1254endif
1255
1256TEMPLATE_XPCOMIPC = XPCOM IPC libraries
1257TEMPLATE_XPCOMIPC_EXTENDS = XPCOM
1258TEMPLATE_XPCOMIPC_DEFS = \
1259 $(TEMPLATE_XPCOM_DEFS) BUILD_DCONNECT="1" \
1260 IPC_DAEMON_APP_NAME=\"VBoxXPCOMIPCD$(SUFF_EXE)\"
1261ifdef IPC_LOGGING
1262 TEMPLATE_XPCOMIPC_DEFS += IPC_LOGGING
1263endif
1264
1265TEMPLATE_XPCOMIPC_LIBS = $(TARGET_VBoxXPCOM) $(TEMPLATE_XPCOM_LIBS)
1266
1267TEMPLATE_XPCOMIPCEXE = XPCOM IPC executables
1268TEMPLATE_XPCOMIPCEXE_EXTENDS = XPCOMEXE
1269TEMPLATE_XPCOMIPCEXE_DEFS = $(TEMPLATE_XPCOMEXE_DEFS) BUILD_DCONNECT="1"
1270ifdef IPC_LOGGING
1271 TEMPLATE_XPCOMIPCEXE_DEFS += IPC_LOGGING
1272endif
1273
1274VBox-xpcom-ipcutils_TEMPLATE = XPCOMIPC
1275VBox-xpcom-ipcutils_NOINST = 1
1276VBox-xpcom-ipcutils_SOURCES = \
1277 ipc/ipcd/util/src/ipcMessageReader.cpp \
1278 ipc/ipcd/util/src/ipcMessageWriter.cpp
1279
1280VBox-xpcom-ipcshared_TEMPLATE = XPCOMIPC
1281VBox-xpcom-ipcshared_NOINST = 1
1282VBox-xpcom-ipcshared_SOURCES = \
1283 ipc/ipcd/shared/src/ipcLog.cpp \
1284 ipc/ipcd/shared/src/ipcConfig.cpp \
1285 ipc/ipcd/shared/src/ipcMessage.cpp \
1286 ipc/ipcd/shared/src/ipcMessagePrimitives.cpp \
1287 ipc/ipcd/shared/src/ipcStringList.cpp \
1288 ipc/ipcd/shared/src/ipcIDList.cpp \
1289 ipc/ipcd/shared/src/ipcm.cpp
1290
1291VBox-xpcom-ipcdlock_TEMPLATE = XPCOMIPC
1292VBox-xpcom-ipcdlock_NOINST = 1
1293VBox-xpcom-ipcdlock_SOURCES = \
1294 ipc/ipcd/extensions/lock/src/ipcLockProtocol.cpp \
1295 ipc/ipcd/extensions/lock/src/ipcLockService.cpp
1296
1297VBox-xpcom-ipctransmgr_TEMPLATE = XPCOMIPC
1298VBox-xpcom-ipctransmgr_NOINST = 1
1299VBox-xpcom-ipctransmgr_SOURCES = \
1300 ipc/ipcd/extensions/transmngr/src/tmTransactionService.cpp
1301
1302VBox-xpcom-ipctmgrcom_TEMPLATE = XPCOMIPC
1303VBox-xpcom-ipctmgrcom_NOINST = 1
1304VBox-xpcom-ipctmgrcom_SOURCES = \
1305 ipc/ipcd/extensions/transmngr/common/tmTransaction.cpp \
1306 ipc/ipcd/extensions/transmngr/common/tmVector.cpp
1307
1308
1309#
1310# DCONNECT client shared object
1311#
1312VBoxXPCOMIPCC_TEMPLATE = XPCOMIPC
1313VBoxXPCOMIPCC_NAME.os2 = VBoxIPCC
1314VBoxXPCOMIPCC_INST = $(INST_BIN)components/
1315#VBoxXPCOMIPCC_DEFS = HAVE_DEPENDENT_LIBS - dependentLibs.h is linux specific, so this cannot be required.
1316VBoxXPCOMIPCC_SOURCES = \
1317 ipc/ipcd/client/src/ipcdclient.cpp \
1318 ipc/ipcd/client/src/ipcService.cpp \
1319 ipc/ipcd/client/src/ipcModuleFactory.cpp \
1320 ipc/ipcd/extensions/dconnect/src/ipcDConnectService.cpp
1321ifeq ($(KBUILD_TARGET),win)
1322VBoxXPCOMIPCC_SOURCES += \
1323 ipc/ipcd/client/src/ipcConnectionWin.cpp
1324else
1325VBoxXPCOMIPCC_SOURCES += \
1326 ipc/ipcd/client/src/ipcConnectionUnix.cpp
1327endif
1328VBoxXPCOMIPCC_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/components/VBoxXPCOMIPCC.dylib
1329VBoxXPCOMIPCC_LIBS = \
1330 $(TARGET_VBox-xpcom-ipcutils) \
1331 $(TARGET_VBox-xpcom-ipcshared) \
1332 $(TARGET_VBox-xpcom-ipcdlock) \
1333 $(TARGET_VBox-xpcom-ipctransmgr) \
1334 $(TARGET_VBox-xpcom-ipctmgrcom)
1335# EF
1336#VBoxXPCOMIPCC_LIBS += $(LIB_RUNTIME)
1337
1338
1339#
1340# DCONNECT daemon executable
1341#
1342VBoxXPCOMIPCD_TEMPLATE = XPCOMIPCEXE
1343VBoxXPCOMIPCD_SOURCES = \
1344 ipc/ipcd/daemon/src/ipcd.cpp \
1345 ipc/ipcd/daemon/src/ipcClient.cpp \
1346 ipc/ipcd/daemon/src/ipcModuleReg.cpp \
1347 ipc/ipcd/daemon/src/ipcCommandModule.cpp
1348ifeq ($(KBUILD_TARGET),win)
1349 VBoxXPCOMIPCD_SOURCES += \
1350 ipc/ipcd/daemon/src/ipcdWin.cpp
1351else
1352 VBoxXPCOMIPCD_SOURCES += \
1353 ipc/ipcd/daemon/src/ipcdUnix.cpp
1354endif
1355
1356
1357#
1358# Python<->XPCOM bridge.
1359#
1360
1361# Find the Python headers for the Python<->XPCOM bridge if enabled.
1362ifdef VBOX_WITH_PYTHON
1363ifdef VBOX_WITH_MULTIVERSION_PYTHON
1364 include $(PATH_SUB_CURRENT)/python/Makefile.kmk
1365else
1366 if "$(KBUILD_TARGET)" == "darwin" && !defined(VBOX_PATH_PYTHON_INC) && !defined(VBOX_LIB_PYTHON)
1367 ifndef VBOX_PYTHON_FRAMEWORK
1368 VBOX_PYTHON_FRAMEWORK := -framework Python
1369 VBOX_PATH_PYTHON_INC := $(VBOX_PATH_MACOSX_SDK)/System/Library/Frameworks/Python.framework/Headers
1370 endif
1371 else # !darwin || configured darwin
1372 ifndef VBOX_PATH_PYTHON_INC
1373 # As we build Solaris on newer Nevadas (109 currently) we want to use libpython2.4 for IPS compatiblity
1374 # with older Nevada/OpenSolaris versions upon importing/installing the package. Otherwise we pick the
1375 # highest libpython2.X available on the build box (2.6 on 109). We thus hardcode it to 2.4 here...
1376 ifeq ($(KBUILD_TARGET),solaris)
1377 VBOX_PATH_PYTHON_INC := /usr/include/python2.4
1378 else
1379 VBOX_PATH_PYTHON_INC := $(patsubst %/Python.h,%, $(lastword $(sort $(wildcard \
1380 /usr/include/python2.*/Python.h \
1381 /usr/local/include/python2.*/Python.h \
1382 ))))
1383 endif
1384 ifeq ($(VBOX_PATH_PYTHON_INC),)
1385 $(warning Unable to determine the python include directory (VBOX_PATH_PYTHON_INC).)
1386 endif
1387 endif
1388 VBOX_PYTHON_VER := 2$(lastword $(subst ., .,$(VBOX_PATH_PYTHON_INC)))
1389 ifndef VBOX_LIB_PYTHON
1390 VBOX_TMP := $(if $(eq $(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),solaris.amd64),64/,)
1391 VBOX_LIB_PYTHON := $(firstword $(wildcard \
1392 /usr/lib/$(VBOX_TMP)libpython$(VBOX_PYTHON_VER)$(SUFF_DLL) \
1393 /usr/local/lib/$(VBOX_TMP)libpython$(VBOX_PYTHON_VER)$(SUFF_DLL) \
1394 /usr/lib/$(VBOX_TMP)libpython2$(SUFF_DLL) \
1395 /usr/local/lib/$(VBOX_TMP)libpython2$(SUFF_DLL) \
1396 /usr/lib/$(VBOX_TMP)libpython$(SUFF_DLL) \
1397 /usr/local/lib/$(VBOX_TMP)libpython$(SUFF_DLL) \
1398 ))
1399 ifeq ($(VBOX_LIB_PYTHON),)
1400 $(warning Unable to determine the python library (VBOX_LIB_PYTHON).)
1401 endif
1402 endif # !darwin || configured darwin
1403 endif
1404 ifndef VBOX_ONLY_SDK
1405 DLLS += VBoxPython
1406 endif
1407 INSTALLS += VBoxPython-inst-py-xpcom
1408
1409 # Python Client Module - the C++/XPCOM bits.
1410 VBoxPython_TEMPLATE = XPCOM
1411 VBoxPython_DEFS = _IMPL_NS_COM _IMPL_NS_BASE EXPORT_XPTI_API EXPORT_XPT_API \
1412 VBOX_PYXPCOM VBOX_WITH_XPCOM
1413 VBoxPython_DEFS.darwin = VBOX_PYXPCOM_VERSIONED
1414 VBoxPython_NAME.darwin = VBoxPython2_$(translate $(substr $(VBOX_DEF_MACOSX_VERSION_MIN),4),456,356)
1415 ifeq ($(KBUILD_TARGET),darwin)
1416 ## @todo kBuild - this ain't working: VBoxPython_DLLSUFF.darwin = .so
1417 VBoxPython_DLLSUFF = .so
1418 endif
1419 VBoxPython_LDFLAGS.darwin = $(VBOX_PYTHON_FRAMEWORK)
1420 VBoxPython_CXXFLAGS = -Wno-format
1421 VBoxPython_INCS = \
1422 python/src \
1423 $(VBOX_PATH_PYTHON_INC)
1424 VBoxPython_SOURCES = \
1425 python/src/module/_xpcom.cpp \
1426 python/src/dllmain.cpp \
1427 python/src/ErrorUtils.cpp \
1428 python/src/PyGBase.cpp \
1429 python/src/PyGInputStream.cpp \
1430 python/src/PyGModule.cpp \
1431 python/src/PyGStub.cpp \
1432 python/src/PyGWeakReference.cpp \
1433 python/src/PyIClassInfo.cpp \
1434 python/src/PyIComponentManager.cpp \
1435 python/src/PyIComponentManagerObsolete.cpp \
1436 python/src/PyIEnumerator.cpp \
1437 python/src/PyIID.cpp \
1438 python/src/PyIInputStream.cpp \
1439 python/src/PyIInterfaceInfo.cpp \
1440 python/src/PyIInterfaceInfoManager.cpp \
1441 python/src/PyISimpleEnumerator.cpp \
1442 python/src/PyISupports.cpp \
1443 python/src/PyIVariant.cpp \
1444 python/src/Pyxpt_info.cpp \
1445 python/src/TypeObject.cpp \
1446 python/src/VariantUtils.cpp
1447 VBoxPython_LIBS = \
1448 $(PATH_LIB)/VBoxCOM$(VBOX_SUFF_LIB) \
1449 $(PATH_BIN)/VBoxXPCOM$(VBOX_SUFF_DLL) \
1450 $(VBOX_LIB_PYTHON)
1451
1452 if !defined(VBOX_WITHOUT_VBOXPYTHON_FOR_OSX_10_5) \
1453 && "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "darwin.x86" \
1454 && "$(VBOX_DEF_MACOSX_VERSION_MIN)" != "10.5"
1455 # Same as VBoxPython except built against the Mac OS X 10.5 SDK.
1456 DLLS += VBoxPython2_5
1457 VBoxPython2_5_EXTENDS = VBoxPython
1458 VBoxPython2_5_TEMPLATE = XPCOMOSX105
1459 VBoxPython2_5_NAME.darwin = VBoxPython2_5
1460 VBoxPython2_5_INCS = \
1461 python/src \
1462 $(VBOX_PATH_MACOSX_SDK_10_5)/System/Library/Frameworks/Python.framework/Headers
1463 endif
1464
1465 if defined(VBOX_WITH_VBOXPYTHON25_FOR_SOLARIS) && "$(KBUILD_TARGET)" == "solaris"
1466 # Same as VBoxPython except built against the newer python version.
1467 DLLS += VBoxPython2_5
1468 VBoxPython2_5_EXTENDS = VBoxPython
1469 VBoxPython2_5_TEMPLATE = XPCOM
1470 VBoxPython2_5_NAME = VBoxPython2_5
1471 VBoxPython2_5_INCS = \
1472 python/src \
1473 /usr/include/python2.5
1474 VBoxPython2_5_LIBS = \
1475 $(PATH_LIB)/VBoxCOM$(VBOX_SUFF_LIB) \
1476 $(PATH_BIN)/VBoxXPCOM$(VBOX_SUFF_DLL) \
1477 /usr/lib/$(VBOX_TMP)libpython2.5$(SUFF_DLL)
1478 endif
1479
1480 if !defined(VBOX_WITHOUT_VBOXPYTHON_FOR_OSX_10_6) \
1481 && "$(KBUILD_TARGET)" == "darwin" \
1482 && "$(VBOX_DEF_MACOSX_VERSION_MIN)" != "10.6"
1483 # Same as VBoxPython except built against the Mac OS X 10.6 SDK.
1484 DLLS += VBoxPython2_6
1485 VBoxPython2_6_EXTENDS = VBoxPython
1486 VBoxPython2_6_TEMPLATE = XPCOMOSX106
1487 VBoxPython2_6_NAME.darwin = VBoxPython2_6
1488 VBoxPython2_6_INCS = \
1489 python/src \
1490 $(VBOX_PATH_MACOSX_SDK_10_6)/System/Library/Frameworks/Python.framework/Headers
1491 endif
1492
1493 # Python Client Module - the Python bits.
1494 VBoxPython-inst-py-xpcom_INST = $(INST_SDK)bindings/xpcom/python/xpcom/
1495 VBoxPython-inst-py-xpcom_SOURCES = \
1496 python/vboxxpcom.py \
1497 python/components.py \
1498 python/file.py \
1499 python/__init__.py \
1500 python/nsError.py \
1501 python/primitives.py \
1502 python/xpcom_consts.py \
1503 python/xpt.py \
1504 python/client/__init__.py=>client/__init__.py \
1505 python/server/__init__.py=>server/__init__.py \
1506 python/server/enumerator.py=>server/enumerator.py \
1507 python/server/factory.py=>server/factory.py \
1508 python/server/loader.py=>server/loader.py \
1509 python/server/module.py=>server/module.py \
1510 python/server/policy.py=>server/policy.py
1511
1512endif # !VBOX_WITH_MULTIVERSION_PYTHON
1513endif # VBOX_WITH_PYTHON
1514
1515#
1516# testcases
1517#
1518tstnsIFileEnumerator_TEMPLATE = XPCOMTSTEXE
1519tstnsIFileEnumerator_SOURCES = xpcom/tests/nsIFileEnumerator.cpp
1520tstnsIFileTest_TEMPLATE = XPCOMTSTEXE
1521tstnsIFileTest_SOURCES = xpcom/tests/nsIFileTest.cpp
1522tstTestArray_TEMPLATE = XPCOMTSTEXE
1523tstTestArray_SOURCES = xpcom/tests/TestArray.cpp
1524tstTestAtoms_TEMPLATE = XPCOMTSTEXE
1525tstTestAtoms_SOURCES = xpcom/tests/TestAtoms.cpp
1526tstTestAutoLock_TEMPLATE = XPCOMTSTEXE
1527tstTestAutoLock_SOURCES = xpcom/tests/TestAutoLock.cpp
1528tstTestCallTemplates_TEMPLATE = XPCOMTSTEXE
1529tstTestCallTemplates_SOURCES = xpcom/tests/TestCallTemplates.cpp
1530tstTestCOMPtr_TEMPLATE = XPCOMTSTEXE
1531tstTestCOMPtr_SOURCES = xpcom/tests/TestCOMPtr.cpp
1532tstTestCOMPtrEq_TEMPLATE = XPCOMTSTEXE
1533tstTestCOMPtrEq_SOURCES = xpcom/tests/TestCOMPtrEq.cpp
1534tstTestCRT_TEMPLATE = XPCOMTSTEXE
1535tstTestCRT_SOURCES = xpcom/tests/TestCRT.cpp
1536tstTestFactory_TEMPLATE = XPCOMTSTEXE
1537tstTestFactory_SOURCES = xpcom/tests/TestFactory.cpp
1538tstTestHashtables_TEMPLATE = XPCOMTSTEXE
1539tstTestHashtables_SOURCES = xpcom/tests/TestHashtables.cpp
1540tstTestID_TEMPLATE = XPCOMTSTEXE
1541tstTestID_SOURCES = xpcom/tests/TestID.cpp
1542tstTestObserverService_TEMPLATE= XPCOMTSTEXE
1543tstTestObserverService_SOURCES = xpcom/tests/TestObserverService.cpp
1544tstTestPermanentAtoms_TEMPLATE = XPCOMTSTEXE
1545tstTestPermanentAtoms_SOURCES = xpcom/tests/TestPermanentAtoms.cpp
1546tstTestPipes_TEMPLATE = XPCOMTSTEXE
1547tstTestPipes_SOURCES = xpcom/tests/TestPipes.cpp
1548tstTestServMgr_TEMPLATE = XPCOMTSTEXE
1549tstTestServMgr_SOURCES = xpcom/tests/TestServMgr.cpp
1550tstTestServMgr_INCS = xpcom/tests/services
1551tstTestThreads_TEMPLATE = XPCOMTSTEXE
1552tstTestThreads_SOURCES = xpcom/tests/TestThreads.cpp
1553tstTestXPIDLString_TEMPLATE = XPCOMTSTEXE
1554tstTestXPIDLString_SOURCES = xpcom/tests/TestXPIDLString.cpp
1555tstTestDeque_TEMPLATE = XPCOMTSTEXE
1556tstTestDeque_SOURCES = xpcom/tests/TestDeque.cpp
1557tstTestAutoPtr_TEMPLATE = XPCOMTSTEXE
1558tstTestAutoPtr_SOURCES = xpcom/tests/TestAutoPtr.cpp
1559tstTestMinStringAPI_TEMPLATE = XPCOMTSTEXE
1560tstTestMinStringAPI_SOURCES = xpcom/tests/TestMinStringAPI.cpp
1561tstTestStrings_TEMPLATE = XPCOMTSTEXE
1562tstTestStrings_SOURCES = xpcom/tests/TestStrings.cpp
1563tstPrimitiveTest_TEMPLATE = XPCOMTSTEXE
1564tstPrimitiveTest_SOURCES = xpcom/typelib/xpt/tests/PrimitiveTest.c
1565tstSimpleTypeLib_TEMPLATE = XPCOMTSTEXE
1566tstSimpleTypeLib_SOURCES = xpcom/typelib/xpt/tests/SimpleTypeLib.c
1567tstXptDump_TEMPLATE = XPCOMTSTEXE
1568tstXptDump_SOURCES = xpcom/typelib/xpt/tools/xpt_dump.c
1569tstXptLink_TEMPLATE = XPCOMTSTEXE
1570tstXptLink_SOURCES = xpcom/typelib/xpt/tools/xpt_link.c
1571
1572
1573
1574
1575XPCOM_IDLFILES = \
1576 xpcom/base/nsIDebug.idl \
1577 xpcom/base/nsIInterfaceRequestor.idl \
1578 xpcom/base/nsIMemory.idl \
1579 xpcom/base/nsIProgrammingLanguage.idl \
1580 xpcom/base/nsISupports.idl \
1581 xpcom/base/nsITraceRefcnt.idl \
1582 xpcom/base/nsIWeakReference.idl \
1583 xpcom/base/nsIConsoleMessage.idl \
1584 xpcom/base/nsIConsoleService.idl \
1585 xpcom/base/nsIConsoleListener.idl \
1586 xpcom/base/nsIErrorService.idl \
1587 xpcom/base/nsIException.idl \
1588 xpcom/base/nsIExceptionService.idl \
1589 xpcom/base/nsrootidl.idl \
1590 xpcom/components/nsIClassInfo.idl \
1591 xpcom/components/nsIComponentRegistrar.idl \
1592 xpcom/components/nsIFactory.idl \
1593 xpcom/components/nsIModule.idl \
1594 xpcom/components/nsIServiceManager.idl \
1595 xpcom/components/nsIComponentManager.idl \
1596 xpcom/components/nsICategoryManager.idl \
1597 xpcom/components/nsIComponentLoader.idl \
1598 xpcom/components/nsINativeComponentLoader.idl \
1599 xpcom/components/nsIComponentManagerObsolete.idl \
1600 xpcom/components/nsIComponentLoaderManager.idl \
1601 xpcom/ds/nsISupportsArray.idl \
1602 xpcom/ds/nsICollection.idl \
1603 xpcom/ds/nsISerializable.idl \
1604 xpcom/ds/nsIEnumerator.idl \
1605 xpcom/ds/nsISimpleEnumerator.idl \
1606 xpcom/ds/nsIObserverService.idl \
1607 xpcom/ds/nsIObserver.idl \
1608 xpcom/ds/nsIAtom.idl \
1609 xpcom/ds/nsIAtomService.idl \
1610 xpcom/ds/nsIProperties.idl \
1611 xpcom/ds/nsIPersistentProperties2.idl \
1612 xpcom/ds/nsIRecyclingAllocator.idl \
1613 xpcom/ds/nsIStringEnumerator.idl \
1614 xpcom/ds/nsISupportsPrimitives.idl \
1615 xpcom/ds/nsISupportsIterators.idl \
1616 xpcom/ds/nsIVariant.idl \
1617 xpcom/ds/nsITimelineService.idl \
1618 xpcom/ds/nsIArray.idl \
1619 xpcom/ds/nsIPropertyBag.idl \
1620 xpcom/ds/nsIHashable.idl \
1621 xpcom/io/nsIDirectoryService.idl \
1622 xpcom/io/nsIDirectoryEnumerator.idl \
1623 xpcom/io/nsIFile.idl \
1624 xpcom/io/nsILocalFile.idl \
1625 xpcom/io/nsILocalFileMac.idl \
1626 xpcom/io/nsIInputStream.idl \
1627 xpcom/io/nsIObjectInputStream.idl \
1628 xpcom/io/nsIBinaryInputStream.idl \
1629 xpcom/io/nsIObjectOutputStream.idl \
1630 xpcom/io/nsIBinaryOutputStream.idl \
1631 xpcom/io/nsIOutputStream.idl \
1632 xpcom/io/nsIStreamBufferAccess.idl \
1633 xpcom/io/nsIByteArrayInputStream.idl \
1634 xpcom/io/nsISeekableStream.idl \
1635 xpcom/io/nsIFastLoadFileControl.idl \
1636 xpcom/io/nsIFastLoadService.idl \
1637 xpcom/io/nsIInputStreamTee.idl \
1638 xpcom/io/nsIMultiplexInputStream.idl \
1639 xpcom/io/nsIPipe.idl \
1640 xpcom/io/nsIAsyncInputStream.idl \
1641 xpcom/io/nsIAsyncOutputStream.idl \
1642 xpcom/io/nsIScriptableInputStream.idl \
1643 xpcom/io/nsIStorageStream.idl \
1644 xpcom/io/nsIStringStream.idl \
1645 xpcom/io/nsILineInputStream.idl \
1646 xpcom/proxy/public/nsIProxyObjectManager.idl \
1647 xpcom/threads/nsIEventQueueService.idl \
1648 xpcom/threads/nsIEventQueue.idl \
1649 xpcom/threads/nsIEventTarget.idl \
1650 xpcom/threads/nsIRunnable.idl \
1651 xpcom/threads/nsIThread.idl \
1652 xpcom/threads/nsITimer.idl \
1653 xpcom/threads/nsIEnvironment.idl \
1654 xpcom/threads/nsITimerInternal.idl \
1655 xpcom/threads/nsITimerManager.idl \
1656 xpcom/threads/nsIProcess.idl \
1657 xpcom/reflect/xptinfo/public/nsIInterfaceInfo.idl \
1658 xpcom/reflect/xptinfo/public/nsIInterfaceInfoManager.idl \
1659 xpcom/reflect/xptinfo/public/nsIXPTLoader.idl \
1660 ipc/ipcd/client/public/ipcIService.idl \
1661 ipc/ipcd/client/public/ipcIMessageObserver.idl \
1662 ipc/ipcd/client/public/ipcIClientObserver.idl \
1663 ipc/ipcd/extensions/lock/public/ipcILockService.idl \
1664 ipc/ipcd/extensions/transmngr/public/ipcITransactionService.idl \
1665 ipc/ipcd/extensions/dconnect/public/ipcIDConnectService.idl \
1666 ipc/ipcd/extensions/transmngr/public/ipcITransactionObserver.idl
1667
1668
1669OTHER_CLEAN += \
1670 $(PATH_VBox-xpcom-string)/idl_ts \
1671 $(addprefix $(VBOX_PATH_SDK)/bindings/xpcom/include,$(notdir $(subst .idl,.h,$(XPCOM_IDLFILES)))) \
1672 $(addprefix $(VBOX_PATH_SDK)/bindings/xpcom/include,$(notdir $(subst .idl,.xpt,$(XPCOM_IDLFILES)))) \
1673 $(addprefix $(VBOX_PATH_SDK)/bindings/xpcom/idl/,$(notdir $(XPCOM_IDLFILES))) \
1674 $(addprefix $(PATH_TARGET)/VBox-xpcom-xpt-files/,$(notdir $(subst .idl,.xpt,$(XPCOM_IDLFILES))))
1675
1676
1677#
1678# Create and install VBoxXPCOMBase.xpt
1679#
1680INSTALLS += VBoxXPCOMBase-xpt-inst
1681VBOX_XPTFILES = $(addprefix $(PATH_TARGET)/VBox-xpcom-xpt-files/, \
1682 nsIConsoleListener.xpt \
1683 nsIConsoleMessage.xpt \
1684 nsIConsoleService.xpt \
1685 nsIErrorService.xpt \
1686 nsIException.xpt \
1687 nsIExceptionService.xpt \
1688 nsIDebug.xpt \
1689 nsIInterfaceRequestor.xpt \
1690 nsIMemory.xpt \
1691 nsIProgrammingLanguage.xpt \
1692 nsISupports.xpt \
1693 nsITraceRefcnt.xpt \
1694 nsIWeakReference.xpt \
1695 nsrootidl.xpt \
1696 nsIAtom.xpt \
1697 nsIAtomService.xpt \
1698 nsICollection.xpt \
1699 nsIEnumerator.xpt \
1700 nsIPersistentProperties2.xpt \
1701 nsIPropertyBag.xpt \
1702 nsIRecyclingAllocator.xpt \
1703 nsIVariant.xpt \
1704 nsISerializable.xpt \
1705 nsIStringEnumerator.xpt \
1706 nsISupportsArray.xpt \
1707 nsISupportsIterators.xpt \
1708 nsITimelineService.xpt \
1709 nsIArray.xpt \
1710 nsIObserverService.xpt \
1711 nsIObserver.xpt \
1712 nsIProperties.xpt \
1713 nsISimpleEnumerator.xpt \
1714 nsISupportsPrimitives.xpt \
1715 nsIBinaryInputStream.xpt \
1716 nsIBinaryOutputStream.xpt \
1717 nsIByteArrayInputStream.xpt \
1718 nsIFastLoadFileControl.xpt \
1719 nsIFastLoadService.xpt \
1720 nsIInputStreamTee.xpt \
1721 nsILineInputStream.xpt \
1722 nsIMultiplexInputStream.xpt \
1723 nsIObjectInputStream.xpt \
1724 nsIObjectOutputStream.xpt \
1725 nsIPipe.xpt \
1726 nsISeekableStream.xpt \
1727 nsIStorageStream.xpt \
1728 nsIStringStream.xpt \
1729 nsIStreamBufferAccess.xpt \
1730 nsIAsyncInputStream.xpt \
1731 nsIAsyncOutputStream.xpt \
1732 nsIDirectoryService.xpt \
1733 nsIFile.xpt \
1734 nsILocalFile.xpt \
1735 nsIInputStream.xpt \
1736 nsIOutputStream.xpt \
1737 nsIScriptableInputStream.xpt \
1738 nsIComponentLoader.xpt \
1739 nsIComponentLoaderManager.xpt \
1740 nsIComponentManagerObsolete.xpt \
1741 nsINativeComponentLoader.xpt \
1742 nsIClassInfo.xpt \
1743 nsIComponentRegistrar.xpt \
1744 nsIFactory.xpt \
1745 nsIModule.xpt \
1746 nsIServiceManager.xpt \
1747 nsIComponentManager.xpt \
1748 nsICategoryManager.xpt \
1749 nsIThread.xpt \
1750 nsITimer.xpt \
1751 nsITimerInternal.xpt \
1752 nsITimerManager.xpt \
1753 nsIRunnable.xpt \
1754 nsIEventTarget.xpt \
1755 nsIEventQueue.xpt \
1756 nsIEventQueueService.xpt \
1757 nsIEnvironment.xpt \
1758 nsIProcess.xpt \
1759 nsIInterfaceInfo.xpt \
1760 nsIInterfaceInfoManager.xpt \
1761 nsIXPTLoader.xpt)
1762
1763VBoxXPCOMBase-xpt-inst_INST = $(INST_BIN)components/
1764VBoxXPCOMBase-xpt-inst_MODE = 0644
1765VBoxXPCOMBase-xpt-inst_SOURCES = \
1766 $(PATH_TARGET)/VBox-xpcom-xpt-files/VBoxXPCOMBase.xpt
1767VBoxXPCOMBase-xpt-inst_CLEAN = \
1768 $(VBOX_XPTFILES) \
1769 $(PATH_TARGET)/VBox-xpcom-xpt-files/VBoxXPCOMBase.xpt
1770
1771# combined typelib library
1772$(PATH_TARGET)/VBox-xpcom-xpt-files/VBoxXPCOMBase.xpt: $$(VBOX_XPTFILES) | $$(TARGET_xpt_link) $(PATH_TARGET)/VBox-xpcom-xpt-files/
1773 $(call MSG_LINK,XPCOM_TYPELIB,$@)
1774 $(QUIET)$(MKDIR) -p -- $(PATH_BIN)/components
1775 $(QUIET)$(TARGET_xpt_link) $@ $^
1776
1777
1778
1779# generate rules
1780include $(KBUILD_PATH)/subfooter.kmk
1781
1782
1783
1784#
1785# Generate IDL rules.
1786#
1787
1788##
1789# Define for compiling one IDL into a header and a typelib
1790# @param idl The filename with everything.
1791XPIDL_INCS = \
1792 -I $(VBOX_PATH_XPCOM_SRC)/xpcom/base/ \
1793 -I $(VBOX_PATH_XPCOM_SRC)/xpcom/ds/ \
1794 -I $(VBOX_PATH_XPCOM_SRC)/xpcom/components/ \
1795 -I $(VBOX_PATH_XPCOM_SRC)/xpcom/io/ \
1796 -I $(VBOX_PATH_XPCOM_SRC)/xpcom/threads/ \
1797 -I $(VBOX_PATH_XPCOM_SRC)/xpcom/reflect/xptinfo/public/
1798define def_IDL
1799$(VBOX_PATH_SDK)/bindings/xpcom/include/$(notdir $(subst .idl,.h,$(idl))) \
1800+ $(PATH_TARGET)/VBox-xpcom-xpt-files/$(notdir $(subst .idl,.xpt,$(idl))): \
1801 $(VBOX_PATH_XPCOM_SRC)/$(idl) \
1802 | $$$$(TARGET_xpidl) \
1803 $(PATH_TARGET)/VBox-xpcom-xpt-files/
1804 $$(call MSG_TOOL,xpidl,XPCOM,$$<,$$@)
1805 $$(QUIET)$(MKDIR) -p $(VBOX_PATH_SDK)/bindings/xpcom/include $(VBOX_PATH_SDK)/bindings/xpcom/idl
1806 $$(QUIET)$$(TARGET_xpidl) -m header $(XPIDL_INCS) -e $$@ $$<
1807 $$(QUIET)$$(TARGET_xpidl) -m typelib $(XPIDL_INCS) -e $(addprefix $(PATH_TARGET)/VBox-xpcom-xpt-files/,$(notdir $(subst .idl,.xpt,$(idl)))) $$<
1808 $$(QUIET)$(CP) $$< $$(VBOX_PATH_SDK)/bindings/xpcom/idl
1809endef
1810
1811$(foreach idl, $(XPCOM_IDLFILES), $(eval $(def_IDL)))
1812
1813# dummy target.
1814$(PATH_VBox-xpcom-string)/idl_ts: $$(addprefix $$(VBOX_PATH_SDK)/bindings/xpcom/include/,$$(notdir $$(subst .idl,.h,$$(XPCOM_IDLFILES))))
1815 $(call MSG_L1,IDL processing completed.)
1816 $(QUIET)$(MKDIR) -p $(dir $@)
1817 $(QUIET)$(APPEND) -t $@
1818
1819#
1820# HACK ALERT! Make sure main doesn't start using xpidl before we're done
1821# with the idl files here. The trick here is that we're using TARGET_xpidl,
1822# i.e. the copy residing in obj/, while VBOX_XPIDL is pointing to
1823# INSTARGET_xpidl which is the one in bin/.
1824#
1825$(VBOX_XPIDL): $$(PATH_VBox-xpcom-string)/idl_ts
1826
1827
1828#
1829# Generate linker map file filtering out unwanted global symbols.
1830#
1831$(PATH_TARGET)/xpcom-namespace-cleanup.map foo.map: $$(VBoxXPCOM_LIBS) $$(VBoxXPCOM_OBJS_)
1832 $(call MSG_L1, Creating linker map $@ for scrubbing the symbol namespace)
1833 $(QUIET)$(APPEND) -t $@ '{ local: *; global: '
1834 $(QUIET)$(VBOX_NM) -p -g $^ \
1835 | $(SED) -n \
1836 -e '/^$$/b' \
1837 -e '/:$$/b' \
1838 -e '/ U /b' \
1839 -e 's/^[^ ]* [A-Z] \(.*\)$$/\1/' \
1840 -e 's/\<_Z[^ ]*$$/&;/p' \
1841 -e 's/\<VBoxNs[^ ]*$$/&;/p' \
1842 -e 's/\<_edata$$/&;/p' \
1843 -e 's/\<_end$$/&;/p' \
1844 -e 's/\<_etext$$/&;/p'\
1845 -e 's/\<_fini$$/&;/p' \
1846 -e 's/\<_init$$/&;/p' \
1847 --append $@
1848 $(QUIET)$(APPEND) $@ '};'
1849
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette