aboutsummaryrefslogtreecommitdiff
path: root/share/mk
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2003-04-05 20:30:30 +0000
committerWarner Losh <imp@FreeBSD.org>2003-04-05 20:30:30 +0000
commit30aaff1192acd09c20cd6e8c70c9e8d023d4c818 (patch)
treeb6fc0351de0d24cf42e51ee60290331a14961c9c /share/mk
parentca6a2c5aef9d2fdfb6f19fc7d050288f91c7afa2 (diff)
downloadsrc-30aaff1192acd09c20cd6e8c70c9e8d023d4c818.tar.gz
src-30aaff1192acd09c20cd6e8c70c9e8d023d4c818.zip
Migrate to a new way of dealing with building from old revisions of
FreeBSD. This method attempts to centralize all the necessary hacks or work arounds in one of two places in the tree (src/Makefile.inc1 and src/tools/build). We build a small compatibility library (libbuild.a) as well as selectively installing necessary include files. We then include this directory when building host binaries. This removes all the past release compatibilty hacks from various places in the tree. We still build on tip of stable and current. I will work with those that want to support more, although I anticipate it will just work. Many thanks to ru@, obrien@ and jhb@ for providing valuable input at various stage of implementation, as well as for working together to positively effect a change for the better.
Notes
Notes: svn path=/head/; revision=113136
Diffstat (limited to 'share/mk')
-rw-r--r--share/mk/bsd.sys.mk7
1 files changed, 0 insertions, 7 deletions
diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk
index f1bc89e2050d..0b164a9f5fcf 100644
--- a/share/mk/bsd.sys.mk
+++ b/share/mk/bsd.sys.mk
@@ -52,10 +52,3 @@ CFLAGS += -Werror
# Allow user-specified additional warning flags
CFLAGS += ${CWARNFLAGS}
-
-# FreeBSD didn't always have the __FBSDID() macro in <sys/cdefs.h>.
-.if defined(BOOTSTRAPPING) && \
- ( ${BOOTSTRAPPING} < 440001 || \
- ( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500024 ))
-CFLAGS+= -D__FBSDID=__RCSID
-.endif