VirtualBox

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

Last change on this file since 16390 was 16390, checked in by vboxsync, 16 years ago

XPCOM-darwin/amd64: Adopted prlink.c to IPRT (VBOX_USE_MORE_IPRT_IN_NSPR) and will use that on 64-bit darwin (more reusable effort).

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