Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/mozilla-sunbird/0.7: 000_add-missing-LDFLAGS.patch 000_flex-configure-LANG.patch 009_firefox-gdkpango.patch 030_sunbird-add-missing-LDFLAGS.patch
Date: Tue, 06 Nov 2007 16:29:00
Message-Id: E1IpRIM-0005rC-BD@stork.gentoo.org
1 armin76 07/11/06 16:28:54
2
3 Added: 000_flex-configure-LANG.patch
4 009_firefox-gdkpango.patch
5 030_sunbird-add-missing-LDFLAGS.patch
6 Removed: 000_add-missing-LDFLAGS.patch
7 Log:
8 Sync patchset with firefox
9
10 Revision Changes Path
11 1.1 src/patchsets/mozilla-sunbird/0.7/000_flex-configure-LANG.patch
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/mozilla-sunbird/0.7/000_flex-configure-LANG.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/mozilla-sunbird/0.7/000_flex-configure-LANG.patch?rev=1.1&content-type=text/plain
15
16 Index: 000_flex-configure-LANG.patch
17 ===================================================================
18 The LANG vars aren't reset early enough so when sed tries to use [a-zA-Z] in
19 option parsing, it may break.
20
21 http://bugs.gentoo.org/103483
22
23 --- configure
24 +++ configure
25 @@ -54,6 +54,16 @@
26 infodir='${prefix}/info'
27 mandir='${prefix}/man'
28
29 +# NLS nuisances.
30 +# Only set these to C if already set. These must not be set unconditionally
31 +# because not all systems understand e.g. LANG=C (notably SCO).
32 +# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
33 +# Non-C LC_CTYPE values break the ctype check.
34 +if test "${LANG+set}" = set; then LANG=C; export LANG; fi
35 +if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
36 +if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
37 +if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi
38 +
39 # Initialize some other variables.
40 subdirs=
41 MFLAGS= MAKEFLAGS=
42 @@ -452,16 +463,6 @@
43 esac
44 done
45
46 -# NLS nuisances.
47 -# Only set these to C if already set. These must not be set unconditionally
48 -# because not all systems understand e.g. LANG=C (notably SCO).
49 -# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
50 -# Non-C LC_CTYPE values break the ctype check.
51 -if test "${LANG+set}" = set; then LANG=C; export LANG; fi
52 -if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
53 -if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
54 -if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi
55 -
56 # confdefs.h avoids OS command line length limits that DEFS can exceed.
57 rm -rf conftest* confdefs.h
58 # AIX cpp loses on an empty file, so make sure it contains at least a newline.
59
60
61
62 1.1 src/patchsets/mozilla-sunbird/0.7/009_firefox-gdkpango.patch
63
64 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/mozilla-sunbird/0.7/009_firefox-gdkpango.patch?rev=1.1&view=markup
65 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/mozilla-sunbird/0.7/009_firefox-gdkpango.patch?rev=1.1&content-type=text/plain
66
67 Index: 009_firefox-gdkpango.patch
68 ===================================================================
69 --- config/system-headers.orig 2007-10-19 21:38:00.000000000 +0200
70 +++ config/system-headers 2007-10-19 21:38:41.000000000 +0200
71 @@ -208,6 +208,7 @@
72 gdk/gdkevents.h
73 gdk/gdk.h
74 gdk/gdkkeysyms.h
75 +gdk/gdkpango.h
76 gdk/gdkprivate.h
77 gdk/gdkregion.h
78 gdk/gdkwindow.h
79
80
81
82 1.1 src/patchsets/mozilla-sunbird/0.7/030_sunbird-add-missing-LDFLAGS.patch
83
84 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/mozilla-sunbird/0.7/030_sunbird-add-missing-LDFLAGS.patch?rev=1.1&view=markup
85 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/mozilla-sunbird/0.7/030_sunbird-add-missing-LDFLAGS.patch?rev=1.1&content-type=text/plain
86
87 Index: 030_sunbird-add-missing-LDFLAGS.patch
88 ===================================================================
89 --- layout/build/Makefile.in.orig 2007-02-12 20:42:13.000000000 +0100
90 +++ layout/build/Makefile.in 2007-02-12 20:49:48.000000000 +0100
91 @@ -291,6 +291,7 @@
92 endif
93 endif
94
95 +LDFLAGS += -lX11 -lXrender
96
97 export:: $(BUILD_DATE)
98
99
100
101
102 --
103 gentoo-commits@g.o mailing list