aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2005-02-27 11:22:58 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2005-02-27 11:22:58 +0000
commit6ad80d4f0dcb8a455939bb22be789509605c4e50 (patch)
tree6b6782895333e40cf577e160ec68407ae1dc29a2 /Makefile.inc1
parent7f19cfc0addb24319a4c7789c07546c720070637 (diff)
downloadsrc-6ad80d4f0dcb8a455939bb22be789509605c4e50.tar.gz
src-6ad80d4f0dcb8a455939bb22be789509605c4e50.zip
As threatened, drop support for source upgrades from pre-5.3.
Inspired by: obrien
Notes
Notes: svn path=/head/; revision=142640
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc148
1 files changed, 4 insertions, 44 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 5a9696510e5c..ce5639bd64ee 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -756,7 +756,7 @@ _strfile= games/fortune/strfile
.endif
.if !defined(NO_CXX)
-_gperf= gnu/usr.bin/gperf
+_gperf= gnu/usr.bin/gperf
.if ${BOOTSTRAPPING} < 500113
_groff= gnu/usr.bin/groff
.else
@@ -768,42 +768,15 @@ _groff= gnu/usr.bin/groff/tmac
_cap_mkdb= usr.bin/cap_mkdb
.endif
-.if ${BOOTSTRAPPING} < 502102
-_lex= usr.bin/lex
-.endif
-
.if ${BOOTSTRAPPING} < 600016
_mklocale= usr.bin/mklocale
.endif
-.if ${BOOTSTRAPPING} < 450005 || \
- ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500034
-_uudecode= usr.bin/uudecode
-.endif
-
-.if ${BOOTSTRAPPING} < 430002 || \
- ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500019
-_xargs= usr.bin/xargs
-.endif
-
-.if ${BOOTSTRAPPING} < 430002 || \
- ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500018
-_yacc= usr.bin/yacc
-.endif
-
.if !defined(NO_RESCUE) && \
${BOOTSTRAPPING} < 600008
_crunchgen= usr.sbin/crunch/crunchgen
.endif
-.if ${BOOTSTRAPPING} < 502128
-_gensnmptree= usr.sbin/bsnmpd/gensnmptree
-.endif
-
-.if ${BOOTSTRAPPING} < 500019
-_kbdcontrol= usr.sbin/kbdcontrol
-.endif
-
bootstrap-tools:
.for _tool in \
${_strfile} \
@@ -812,19 +785,13 @@ bootstrap-tools:
gnu/usr.bin/texinfo \
${_cap_mkdb} \
usr.bin/colldef \
- ${_lex} \
usr.bin/lorder \
usr.bin/makewhatis \
${_mklocale} \
usr.bin/rpcgen \
- ${_uudecode} \
- ${_xargs} \
usr.bin/xinstall \
- ${_yacc} \
usr.sbin/config \
- ${_crunchgen} \
- ${_gensnmptree} \
- ${_kbdcontrol}
+ ${_crunchgen}
${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
cd ${.CURDIR}/${_tool}; \
${MAKE} DIRPRFX=${_tool}/ obj; \
@@ -881,19 +848,13 @@ build-tools:
#
# cross-tools: Build cross-building tools
#
-.if ${TARGET_ARCH} == "sparc64" && ${TARGET_ARCH} != ${MACHINE_ARCH} && \
- ${BOOTSTRAPPING} < 500037
-_elf2aout= usr.bin/elf2aout
-.endif
-
.if (${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386") && \
${TARGET_ARCH} != ${MACHINE_ARCH}
_btxld= usr.sbin/btxld
.endif
-.if (!defined(NO_RESCUE) || \
- defined(RELEASEDIR)) && \
- (${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 501101)
+.if (!defined(NO_RESCUE) || defined(RELEASEDIR)) && \
+ ${TARGET_ARCH} != ${MACHINE_ARCH}
_crunchide= usr.sbin/crunch/crunchide
.endif
@@ -910,7 +871,6 @@ cross-tools:
.for _tool in \
gnu/usr.bin/binutils \
gnu/usr.bin/cc \
- ${_elf2aout} \
usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
${_btxld} \
${_crunchide} \