1# $FreeBSD$ 2 3# FreeBSD didn't always have the __FBSDID() macro in <sys/cdefs.h>. 4# We could do this with a sys/cdefs.h wrapper, but given that this would 5# slow down all new builds for such a simple concept, we do it here. 6.if ( ${BOOTSTRAPPING} < 440001 || \ 7 ( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500024 )) 8CFLAGS+= -D__FBSDID=__RCSID 9.endif 10 11CFLAGS+= -I${WORLDTMP}/legacy/usr/include 12DPADD+= ${WORLDTMP}/legacy/usr/lib/libegacy.a 13LDADD+= -legacy 14LDFLAGS+= -L${WORLDTMP}/legacy/usr/lib 15