aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2014-10-09 23:05:31 +0000
committerEd Maste <emaste@FreeBSD.org>2014-10-09 23:05:31 +0000
commitddd96d231d6141877d1d51c88bb7306437a80102 (patch)
tree24320d1eb9858e4c818b711b7d5127b1d1d29a61
parenta6897b9320e25fc87ee58675bb2ff3ed075b8cbf (diff)
Notes
-rw-r--r--UPDATING5
-rw-r--r--gnu/usr.bin/Makefile2
-rw-r--r--tools/build/mk/OptionalObsoleteFiles.inc7
3 files changed, 13 insertions, 1 deletions
diff --git a/UPDATING b/UPDATING
index 04fe7a66a427e..8fb2bd8645f42 100644
--- a/UPDATING
+++ b/UPDATING
@@ -31,6 +31,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11.x IS SLOW:
disable the most expensive debugging functionality run
"ln -s 'abort:false,junk:false' /etc/malloc.conf".)
+20141009:
+ gperf has been removed from the base system for architectures
+ that use clang. Ports that require gperf will obtain it from the
+ devel/gperf port.
+
20140923:
pjdfstest has been moved from tools/regression/pjdfstest to
contrib/pjdfstest .
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile
index 7b1482d535931..a32019149ae0d 100644
--- a/gnu/usr.bin/Makefile
+++ b/gnu/usr.bin/Makefile
@@ -18,7 +18,9 @@ SUBDIR= ${_binutils} \
${_texinfo}
.if ${MK_CXX} != "no"
+.if ${MK_GCC} != "no"
_gperf= gperf
+.endif
.if ${MK_GROFF} != "no"
_groff= groff
.endif
diff --git a/tools/build/mk/OptionalObsoleteFiles.inc b/tools/build/mk/OptionalObsoleteFiles.inc
index a12775b8b0832..d0fd1d8dd9a8a 100644
--- a/tools/build/mk/OptionalObsoleteFiles.inc
+++ b/tools/build/mk/OptionalObsoleteFiles.inc
@@ -591,13 +591,18 @@ OLD_FILES+=usr/share/man/man1/ctm_smail.1.gz
OLD_FILES+=usr/share/man/man5/ctm.5.gz
.endif
-# devd(8) and gperf(1) not listed here on purpose
+# devd(8) not listed here on purpose
.if ${MK_CXX} == no
OLD_FILES+=usr/bin/CC
OLD_FILES+=usr/bin/c++
OLD_FILES+=usr/bin/c++filt
OLD_FILES+=usr/bin/g++
OLD_FILES+=usr/libexec/cc1plus
+.if ${MK_GCC} == no
+OLD_FILES+=usr/bin/gperf
+OLD_FILES+=usr/share/info/gperf.info.gz
+OLD_FILES+=usr/share/man/man1/gperf.1.gz
+.endif
.endif
.if ${MK_FMTREE} == no