summaryrefslogtreecommitdiff
path: root/devel/libg++/files
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-03-09 13:01:35 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-03-09 13:01:35 +0000
commitae33ef37fda27ac0e5795cc694589a8ec33298c7 (patch)
tree79955fe11a1a7bebc5a89c2a61d6539fde91c264 /devel/libg++/files
parentThe condition for checking whether the system supports IPv6 was (diff)
* Found a new mastersite for the patches. Also found more patches there.
* Fix the build problem that was created when bsd.port.mk started setting CXXFLAGS in MAKE_ENV. The problem is if a port uses a BSD-style Makefile and C++, sys.mk will not craft a proper CXXFLAGS because it uses "=?".
Notes
Notes: svn path=/head/; revision=39308
Diffstat (limited to 'devel/libg++/files')
-rw-r--r--devel/libg++/files/Makefile.libg++3
1 files changed, 3 insertions, 0 deletions
diff --git a/devel/libg++/files/Makefile.libg++ b/devel/libg++/files/Makefile.libg++
index e9be473bc567..df5d0739119d 100644
--- a/devel/libg++/files/Makefile.libg++
+++ b/devel/libg++/files/Makefile.libg++
@@ -11,6 +11,9 @@ DESTDIR= ${PREFIX}
LIBDIR= /lib
CFLAGS+= -I./libg++/src -I./librx -I/usr/include/g++
+# work around a nasty interaction between bsd.port.mk which prevents
+# sys.mk from crafting a proper CXXFLAGS
+CXXFLAGS+= ${CFLAGS}
# This Makefile was created extracting the libstdc++-2.8.1.1 distribution
# and then extracting the libg++-2.8.1.3 distribution w/in that.