diff -r 000000000000 -r 6474c204b198 toolkit/components/maintenanceservice/Makefile.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/toolkit/components/maintenanceservice/Makefile.in Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,28 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +DIST_PROGRAM = maintenanceservice$(BIN_SUFFIX) + +# Don't link the maintenanceservice against mozglue.dll. See bug 687139 and +# bug 725876 +MOZ_GLUE_LDFLAGS = +MOZ_GLUE_PROGRAM_LDFLAGS = + +ifeq ($(OS_ARCH),WINNT) +LIBS += $(call EXPAND_LIBNAME_PATH,updatecommon-standalone,../../mozapps/update/common-standalone) +else +LIBS += $(call EXPAND_LIBNAME_PATH,updatecommon,../../mozapps/update/common) +endif + +OS_LIBS += $(call EXPAND_LIBNAME,comctl32 ws2_32 shell32) + +ifndef MOZ_WINCONSOLE +ifdef MOZ_DEBUG +MOZ_WINCONSOLE = 1 +else +MOZ_WINCONSOLE = 0 +endif +endif + +include $(topsrcdir)/config/rules.mk