summaryrefslogtreecommitdiff
path: root/firefox-1.1-ppc64.patch
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2005-07-18 20:30:35 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2005-07-18 20:30:35 +0000
commitfa0cf490706b654bdf3aedbef1187caf90b5fa6b (patch)
treeb83ccdedaf2183e39156f650a4f48900e5b09712 /firefox-1.1-ppc64.patch
parent- Update to Deer Park Alpha 2 (diff)
downloadlibrewolf-fedora-ff-fa0cf490706b654bdf3aedbef1187caf90b5fa6b.tar.gz
librewolf-fedora-ff-fa0cf490706b654bdf3aedbef1187caf90b5fa6b.tar.bz2
librewolf-fedora-ff-fa0cf490706b654bdf3aedbef1187caf90b5fa6b.zip
- Update to Deer Park Alpha 2
- STILL TODO: - This build is not localized yet. - Theme issues not yet resolved. - Building on ppc platforms is busted, disable them for now. - Forward port all remaining patches.
Diffstat (limited to 'firefox-1.1-ppc64.patch')
-rwxr-xr-xfirefox-1.1-ppc64.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/firefox-1.1-ppc64.patch b/firefox-1.1-ppc64.patch
new file mode 100755
index 0000000..2e7b014
--- /dev/null
+++ b/firefox-1.1-ppc64.patch
@@ -0,0 +1,26 @@
+Index: security/coreconf/Linux.mk
+===================================================================
+RCS file: /cvsroot/mozilla/security/coreconf/Linux.mk,v
+retrieving revision 1.18
+diff -d -u -p -r1.18 Linux.mk
+--- security/coreconf/Linux.mk 1 Feb 2005 23:39:18 -0000 1.18
++++ security/coreconf/Linux.mk 20 Jun 2005 07:32:29 -0000
+@@ -56,6 +56,10 @@ ifeq ($(OS_TEST),m68k)
+ OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE
+ CPU_ARCH = m68k
+ else
++ifeq ($(OS_TEST),ppc64)
++ OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE
++ CPU_ARCH = ppc64
++else
+ ifeq ($(OS_TEST),ppc)
+ OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE
+ CPU_ARCH = ppc
+@@ -119,6 +123,7 @@ endif
+ endif
+ endif
+ endif
++endif
+
+
+ LIBC_TAG = _glibc
bgstack15