diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-10-16 20:37:34 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-10-16 20:37:34 +0000 |
commit | db5a5261906b6f03834bbec4c22b027f1941bcad (patch) | |
tree | af14bf1f01f1021174ef78c73abaec1f80a260a2 /www/kompozer/files/patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in | |
parent | - Change a few uses of <url> into <mlist>. (diff) |
* Merge patches from Mozilla 1.7 [1]
* Auto-generate PLIST
* Respect CC/CXX/CFLAGS/CXXFLAGS/PTHREAD_LIBS
* Add WITH_XFT WITH_DEBUG WITH_OPTIMIZED_CFLAGS options [1]
* Add another mirror since cvs.nvu.com can be slow
* Don't install share/idl/*
* No longer depend on mozilla
PR: 72762
Submitted by: Michael Johnson <ahze@ahze.net>
Obtained from: www/mozilla [1]
Notes
Notes:
svn path=/head/; revision=119628
Diffstat (limited to 'www/kompozer/files/patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in')
-rw-r--r-- | www/kompozer/files/patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/www/kompozer/files/patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in b/www/kompozer/files/patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in new file mode 100644 index 000000000000..dbdc47b6f8e4 --- /dev/null +++ b/www/kompozer/files/patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in @@ -0,0 +1,56 @@ +--- xpcom/reflect/xptcall/src/md/unix/Makefile.in.orig Thu Aug 14 21:00:23 2003 ++++ xpcom/reflect/xptcall/src/md/unix/Makefile.in Sun Feb 1 14:31:25 2004 +@@ -49,6 +49,9 @@ + ifeq (86,$(findstring 86,$(OS_TEST))) + CPPSRCS := xptcinvoke_unixish_x86.cpp xptcstubs_unixish_x86.cpp + endif ++ifeq (amd64,$(OS_TEST)) ++CPPSRCS := xptcinvoke_amd64_freebsd.cpp xptcstubs_amd64_freebsd.cpp ++endif + endif + # + # New code for Linux, et. al., with gcc +@@ -59,8 +62,8 @@ + CPPSRCS := xptcinvoke_gcc_x86_unix.cpp xptcstubs_gcc_x86_unix.cpp + endif + endif +-# IA64 Linux +-ifneq (,$(filter Linux,$(OS_ARCH))) ++# IA64 Linux & FreeBSD ++ifneq (,$(filter Linux FreeBSD,$(OS_ARCH))) + ifneq (,$(findstring ia64,$(OS_TEST))) + CPPSRCS := xptcinvoke_ipf64.cpp xptcstubs_ipf64.cpp + ASFILES := xptcstubs_asm_ipf64.s xptcinvoke_asm_ipf64.s +@@ -106,9 +109,15 @@ + ASFILES := xptcinvoke_asm_osf1_alpha.s xptcstubs_asm_osf1_alpha.s + endif + # ++# FreeBSD/Alpha ++# ++ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDalpha) ++CPPSRCS := xptcinvoke_freebsd_alpha.cpp xptcstubs_freebsd_alpha.cpp ++endif ++# + # Linux/Alpha + # +-ifneq (,$(filter Linuxalpha FreeBSDalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST))) ++ifneq (,$(filter Linuxalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST))) + CPPSRCS := xptcinvoke_linux_alpha.cpp xptcstubs_linux_alpha.cpp + endif + # +@@ -294,6 +303,15 @@ + ifeq ($(OS_ARCH)$(OS_TEST),NetBSDsparc) + CPPSRCS := xptcinvoke_sparc_netbsd.cpp xptcstubs_sparc_netbsd.cpp + ASFILES := xptcinvoke_asm_sparc_netbsd.s xptcstubs_asm_sparc_netbsd.s ++endif ++# ++# FreeBSD/SPARC64 ++# ++ifeq ($(OS_ARCH),FreeBSD) ++ifneq (,$(findstring sparc,$(OS_TEST))) ++CPPSRCS := xptcinvoke_sparc64_freebsd.cpp xptcstubs_sparc64_freebsd.cpp ++ASFILES := xptcinvoke_asm_sparc64_freebsd.s xptcstubs_asm_sparcv9_solaris.s ++endif + endif + # + # Solaris/SPARC |