diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-08-12 12:54:54 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-08-12 12:54:54 +0000 |
commit | d2e8e136d9fdad2d79fc3cf319a16f0acd134d2f (patch) | |
tree | 04df59425a50a0aebdfcbcecdd23d7d9ff2e7a43 /devel/root/files/patch-test::Makefile.arch | |
parent | After devel/p5-File-Temp has gained an IGNORE for PERL_LEVEL > 500800, all (diff) |
- Update to 4.00.06
PR: ports/69274
Submitted by: Simon Lang <simon@lang-clan.de> (maintainer)
Notes
Notes:
svn path=/head/; revision=116027
Diffstat (limited to 'devel/root/files/patch-test::Makefile.arch')
-rw-r--r-- | devel/root/files/patch-test::Makefile.arch | 65 |
1 files changed, 40 insertions, 25 deletions
diff --git a/devel/root/files/patch-test::Makefile.arch b/devel/root/files/patch-test::Makefile.arch index fda34e13eef8..e144e7e95b8a 100644 --- a/devel/root/files/patch-test::Makefile.arch +++ b/devel/root/files/patch-test::Makefile.arch @@ -1,25 +1,40 @@ ---- test/Makefile.arch.orig Sat Apr 17 10:25:16 2004 -+++ test/Makefile.arch Sat Apr 17 10:41:58 2004 -@@ -9,7 +9,6 @@ - ARCH := $(shell root-config --arch) - PLATFORM = $(ARCH) - --CXX = - ObjSuf = o - SrcSuf = cxx - ExeSuf = -@@ -426,10 +425,10 @@ - - ifeq ($(ARCH),freebsd4) - # FreeBSD with glibc --CXX = g++ --CXXFLAGS = -O -pipe -W -Wall -fPIC --LD = g++ --LDFLAGS = -O -+#CXX = g++ -+CXXFLAGS += -W -Wall -fPIC -+LD = $(CXX) -+#LDFLAGS = -O - SOFLAGS = -shared -Wl,-x - endif - +*** test/Makefile.arch.orig Tue Jun 15 20:02:44 2004 +--- test/Makefile.arch Wed Jun 16 10:05:39 2004 +*************** +*** 9,15 **** + ARCH := $(shell root-config --arch) + PLATFORM = $(ARCH) + +- CXX = + ObjSuf = o + SrcSuf = cxx + ExeSuf = +--- 9,14 ---- +*************** +*** 426,435 **** + + ifeq ($(ARCH),freebsd4) + # FreeBSD with glibc +! CXX = g++ +! CXXFLAGS = -O -pipe -W -Wall -fPIC +! LD = g++ +! LDFLAGS = -O + SOFLAGS = -shared -Wl,-x + endif + +--- 425,439 ---- + + ifeq ($(ARCH),freebsd4) + # FreeBSD with glibc +! CXXFLAGS += -W -Wall -fPIC +! LD = $(CXX) +! SOFLAGS = -shared -Wl,-x +! endif +! +! ifeq ($(ARCH),freebsd5) +! # FreeBSD with glibc +! CXXFLAGS += -W -Wall -fPIC +! LD = $(CXX) + SOFLAGS = -shared -Wl,-x + endif + |