author | Benjamin Smedberg <benjamin@smedbergs.us> |
Wed, 11 Jan 2012 11:28:21 -0500 | |
changeset 86625 | 17a76e33b6fe31c11dd22d8031a7f514f1c1631f |
parent 86624 | 2d79876ee1421bb02c92f6dc925c8f4f2298d207 |
child 86711 | 40c9f9ff9fd578cd56da91d129374ed361142149 |
push id | 674 |
push user | ffxbld |
push date | Tue, 13 Mar 2012 21:17:50 +0000 |
treeherder | mozilla-beta@e3c4c92dec31 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | ted |
bugs | 715576 |
milestone | 12.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/b2g/installer/package-manifest.in +++ b/b2g/installer/package-manifest.in @@ -397,17 +397,17 @@ @BINPATH@/components/nsTelephonyWorker.manifest @BINPATH@/components/nsTelephonyWorker.js @BINPATH@/components/Telephony.manifest @BINPATH@/components/Telephony.js @BINPATH@/components/nsWifiWorker.js @BINPATH@/components/nsWifiWorker.manifest #endif #ifdef XP_MACOSX -@BINPATH@/components/libalerts_s.dylib +@BINPATH@/components/libalerts.dylib #endif #ifdef MOZ_ENABLE_DBUS @BINPATH@/components/@DLL_PREFIX@dbusservice@DLL_SUFFIX@ #endif @BINPATH@/components/nsINIProcessor.manifest @BINPATH@/components/nsINIProcessor.js @BINPATH@/components/nsPrompter.manifest @BINPATH@/components/nsPrompter.js
--- a/browser/installer/package-manifest.in +++ b/browser/installer/package-manifest.in @@ -368,17 +368,17 @@ @BINPATH@/components/Telephony.manifest @BINPATH@/components/Telephony.js @BINPATH@/components/nsWifiWorker.js @BINPATH@/components/nsWifiWorker.manifest #endif @BINPATH@/components/BrowserProfileMigrators.manifest @BINPATH@/components/ChromeProfileMigrator.js #ifdef XP_MACOSX -@BINPATH@/components/libalerts_s.dylib +@BINPATH@/components/libalerts.dylib #endif #ifdef MOZ_ENABLE_DBUS @BINPATH@/components/@DLL_PREFIX@dbusservice@DLL_SUFFIX@ #endif @BINPATH@/components/nsINIProcessor.manifest @BINPATH@/components/nsINIProcessor.js @BINPATH@/components/nsPrompter.manifest @BINPATH@/components/nsPrompter.js
--- a/browser/installer/removed-files.in +++ b/browser/installer/removed-files.in @@ -39,16 +39,19 @@ chrome/toolkit.manifest component.reg components/browser.manifest components/components.list components/@DLL_PREFIX@browserdirprovider@DLL_SUFFIX@ components/@DLL_PREFIX@brwsrdir@DLL_SUFFIX@ components/@DLL_PREFIX@myspell@DLL_SUFFIX@ components/@DLL_PREFIX@spellchecker@DLL_SUFFIX@ components/@DLL_PREFIX@spellchk@DLL_SUFFIX@ +#ifdef XP_MACOSX +components/libalerts_s.dylib +#endif components/aboutCertError.js components/aboutPrivateBrowsing.js components/aboutRights.js components/aboutRobots.js components/aboutSessionRestore.js components/autocomplete.xpt components/airbag.xpt components/bookmarks.xpt
--- a/mobile/android/installer/package-manifest.in +++ b/mobile/android/installer/package-manifest.in @@ -385,17 +385,17 @@ @BINPATH@/components/contentSecurityPolicy.js @BINPATH@/components/contentAreaDropListener.manifest @BINPATH@/components/contentAreaDropListener.js @BINPATH@/components/messageWakeupService.js @BINPATH@/components/messageWakeupService.manifest @BINPATH@/components/nsFilePicker.js @BINPATH@/components/nsFilePicker.manifest #ifdef XP_MACOSX -@BINPATH@/components/libalerts_s.dylib +@BINPATH@/components/libalerts.dylib #endif #ifdef MOZ_ENABLE_DBUS @BINPATH@/components/@DLL_PREFIX@dbusservice@DLL_SUFFIX@ #endif @BINPATH@/components/nsINIProcessor.manifest @BINPATH@/components/nsINIProcessor.js @BINPATH@/components/nsPrompter.manifest @BINPATH@/components/nsPrompter.js
--- a/mobile/xul/installer/package-manifest.in +++ b/mobile/xul/installer/package-manifest.in @@ -397,17 +397,17 @@ @BINPATH@/components/nsTelephonyWorker.manifest @BINPATH@/components/nsTelephonyWorker.js @BINPATH@/components/Telephony.manifest @BINPATH@/components/Telephony.js @BINPATH@/components/nsWifiWorker.js @BINPATH@/components/nsWifiWorker.manifest #endif #ifdef XP_MACOSX -@BINPATH@/components/libalerts_s.dylib +@BINPATH@/components/libalerts.dylib #endif #ifdef MOZ_ENABLE_DBUS @BINPATH@/components/@DLL_PREFIX@dbusservice@DLL_SUFFIX@ #endif @BINPATH@/components/nsINIProcessor.manifest @BINPATH@/components/nsINIProcessor.js @BINPATH@/components/nsPrompter.manifest @BINPATH@/components/nsPrompter.js
--- a/toolkit/components/alerts/mac/Makefile.in +++ b/toolkit/components/alerts/mac/Makefile.in @@ -37,17 +37,17 @@ DEPTH = ../../../.. topsrcdir = @top_srcdir@ srcdir = @srcdir@ VPATH = @srcdir@ include $(DEPTH)/config/autoconf.mk MODULE = alerts -LIBRARY_NAME = alerts_s +LIBRARY_NAME = alerts IS_COMPONENT = 1 FORCE_SHARED_LIB = 1 CMMSRCS = \ nsAlertsService.mm \ mozGrowlDelegate.mm \ nsAlertsImageLoadListener.mm \ nsNotificationsList.mm \ @@ -65,16 +65,22 @@ LOCAL_INCLUDES += \ EXPORTS = \ nsAlertsService.h \ $(NULL) SHARED_LIBRARY_LIBS = \ growl/$(LIB_PREFIX)growl_s.$(LIB_SUFFIX) \ $(NULL) +ifdef JS_SHARED_LIBRARY +js_ldopts = $(MOZ_JS_LIBS) +else +js_ldopts = $(LIBXUL_LIBS) +endif + EXTRA_DSO_LDOPTS += \ -framework Carbon \ $(XPCOM_GLUE_LDOPTS) \ + $(js_ldopts) \ $(NSPR_LIBS) \ - $(MOZ_JS_LIBS) \ $(NULL) include $(topsrcdir)/config/rules.mk