wok diff seamonkey/stuff/linux3.0.patch @ rev 16815
Up gsettings-desktop-schemas (3.12.2)
author | Yuri Pourre <yuripourre@gmail.com> |
---|---|
date | Thu Jul 10 23:12:54 2014 -0300 (2014-07-10) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/seamonkey/stuff/linux3.0.patch Thu Jul 10 23:12:54 2014 -0300 1.3 @@ -0,0 +1,54 @@ 1.4 +Index: mozilla/security/coreconf/Linux.mk 1.5 +=================================================================== 1.6 +RCS file: /cvsroot/mozilla/security/coreconf/Linux.mk,v 1.7 +retrieving revision 1.48 1.8 +diff -u -8 -r1.48 Linux.mk 1.9 +--- mozilla/security/coreconf/Linux.mk 13 Aug 2010 01:31:13 -0000 1.48 1.10 ++++ mozilla/security/coreconf/Linux.mk 3 Jul 2011 06:00:38 -0000 1.11 +@@ -187,8 +187,20 @@ 1.12 + ifeq ($(BUILD_SUN_PKG), 1) 1.13 + ifeq ($(USE_64), 1) 1.14 + RPATH = -Wl,-rpath,'$$ORIGIN:/opt/sun/private/lib64:/opt/sun/private/lib' 1.15 + else 1.16 + RPATH = -Wl,-rpath,'$$ORIGIN:/opt/sun/private/lib' 1.17 + endif 1.18 + endif 1.19 + 1.20 ++OS_REL_CFLAGS += -DLINUX2_1 1.21 ++MKSHLIB = $(CC) $(DSO_LDOPTS) -Wl,-soname -Wl,$(@:$(OBJDIR)/%.so=%.so) $(RPATH) 1.22 ++ 1.23 ++ifdef MAPFILE 1.24 ++ MKSHLIB += -Wl,--version-script,$(MAPFILE) 1.25 ++endif 1.26 ++PROCESS_MAP_FILE = grep -v ';-' $< | \ 1.27 ++ sed -e 's,;+,,' -e 's; DATA ;;' -e 's,;;,,' -e 's,;.*,;,' > $@ 1.28 ++ 1.29 ++ifeq ($(OS_RELEASE),2.4) 1.30 ++DEFINES += -DNO_FORK_CHECK 1.31 ++endif 1.32 +Index: mozilla/security/coreconf/config.mk 1.33 +=================================================================== 1.34 +RCS file: /cvsroot/mozilla/security/coreconf/config.mk,v 1.35 +retrieving revision 1.30 1.36 +diff -u -8 -r1.30 config.mk 1.37 +--- mozilla/security/coreconf/config.mk 25 Aug 2009 22:35:11 -0000 1.30 1.38 ++++ mozilla/security/coreconf/config.mk 3 Jul 2011 06:00:39 -0000 1.39 +@@ -58,17 +58,17 @@ 1.40 + # (dependent upon <architecture> tags) # 1.41 + # # 1.42 + # We are moving towards just having a $(OS_TARGET).mk file # 1.43 + # as opposed to multiple $(OS_TARGET)$(OS_RELEASE).mk files, # 1.44 + # one for each OS release. # 1.45 + ####################################################################### 1.46 + 1.47 + TARGET_OSES = FreeBSD BSD_OS NetBSD OpenUNIX OS2 QNX Darwin BeOS OpenBSD \ 1.48 +- AIX RISCOS WINNT WIN95 WINCE 1.49 ++ AIX RISCOS WINNT WIN95 WINCE Linux 1.50 + 1.51 + ifeq (,$(filter-out $(TARGET_OSES),$(OS_TARGET))) 1.52 + include $(CORE_DEPTH)/coreconf/$(OS_TARGET).mk 1.53 + else 1.54 + include $(CORE_DEPTH)/coreconf/$(OS_TARGET)$(OS_RELEASE).mk 1.55 + endif 1.56 + 1.57 + #######################################################################