1# $FreeBSD$ 2 3.if !defined(BURN_BRIDGES) 4.for oldnew in \ 5 NOATM:NO_ATM \ 6 NOCLEAN:NO_CLEAN \ 7 NOCLEANDIR:NO_CLEANDIR \ 8 NOCRYPT:NO_CRYPT \ 9 NODOCCOMPRESS:NO_DOCCOMPRESS \ 10 NOEXTRADEPEND:NO_EXTRADEPEND \ 11 NOFORTH:NO_FORTH \ 12 NOFSCHG:NO_FSCHG \ 13 NOGAMES:NO_GAMES \ 14 NOHTML:NO_HTML \ 15 NOINET6:NO_INET6 \ 16 NOINFO:NO_INFO \ 17 NOINFOCOMPRESS:NO_INFOCOMPRESS \ 18 NOINSTALLLIB:NO_INSTALLLIB \ 19 NOLIBC_R:NO_LIBC_R \ 20 NOLIBPTHREAD:NO_LIBPTHREAD \ 21 NOLIBTHR:NO_LIBTHR \ 22 NOLINT:NO_LINT \ 23 NOMAN:NO_MAN \ 24 NOMANCOMPRESS:NO_MANCOMPRESS \ 25 NOMLINKS:NO_MLINKS \ 26 NOOBJ:NO_OBJ \ 27 NOPAM:NO_PAM \ 28 NOPIC:NO_PIC \ 29 NOPROFILE:NO_PROFILE \ 30 NOSHARE:NO_SHARE \ 31 NOSHARED:NO_SHARED \ 32 NOTAGS:NO_TAGS 33.for old in ${oldnew:C/:.*//} 34.for new in ${oldnew:C/.*://} 35.if defined(${old}) && !defined(${new}) 36.warning ${old} is deprecated in favor of ${new} 37${new}= ${${old}} 38.endif 39.endfor 40.endfor 41.endfor 42.endif 43