1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/components/maintenanceservice/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 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 +DIST_PROGRAM = maintenanceservice$(BIN_SUFFIX) 1.9 + 1.10 +# Don't link the maintenanceservice against mozglue.dll. See bug 687139 and 1.11 +# bug 725876 1.12 +MOZ_GLUE_LDFLAGS = 1.13 +MOZ_GLUE_PROGRAM_LDFLAGS = 1.14 + 1.15 +ifeq ($(OS_ARCH),WINNT) 1.16 +LIBS += $(call EXPAND_LIBNAME_PATH,updatecommon-standalone,../../mozapps/update/common-standalone) 1.17 +else 1.18 +LIBS += $(call EXPAND_LIBNAME_PATH,updatecommon,../../mozapps/update/common) 1.19 +endif 1.20 + 1.21 +OS_LIBS += $(call EXPAND_LIBNAME,comctl32 ws2_32 shell32) 1.22 + 1.23 +ifndef MOZ_WINCONSOLE 1.24 +ifdef MOZ_DEBUG 1.25 +MOZ_WINCONSOLE = 1 1.26 +else 1.27 +MOZ_WINCONSOLE = 0 1.28 +endif 1.29 +endif 1.30 + 1.31 +include $(topsrcdir)/config/rules.mk