browser/components/build/Makefile.in

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/components/build/Makefile.in	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,29 @@
     1.4 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.6 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.7 +
     1.8 +ifeq ($(OS_ARCH),WINNT)
     1.9 +OS_LIBS	+= $(call EXPAND_LIBNAME,ole32 shell32 shlwapi)
    1.10 +endif
    1.11 +
    1.12 +ifeq ($(OS_ARCH),WINNT)
    1.13 +OS_LIBS += $(call EXPAND_LIBNAME,version)
    1.14 +endif
    1.15 +
    1.16 +EXTRA_DSO_LDOPTS += \
    1.17 +	$(XPCOM_GLUE_LDOPTS) \
    1.18 +	$(MOZ_COMPONENT_LIBS) \
    1.19 +	$(NULL)
    1.20 +
    1.21 +# Mac: Need to link with CoreFoundation for Mac Migrators (PList reading code)
    1.22 +# GTK2: Need to link with glib for GNOME shell service
    1.23 +ifneq (,$(filter cocoa gtk2 gtk3,$(MOZ_WIDGET_TOOLKIT)))
    1.24 +EXTRA_DSO_LDOPTS += \
    1.25 +  $(TK_LIBS) \
    1.26 +  $(NULL)
    1.27 +endif
    1.28 +
    1.29 +include $(topsrcdir)/config/rules.mk
    1.30 +
    1.31 +# Ensure that we don't embed a manifest referencing the CRT.
    1.32 +EMBED_MANIFEST_AT =

mercurial