1# $FreeBSD$ 2 3.if !defined(BURN_BRIDGES) 4.for oldnew in \ 5 NOATM:NO_ATM \ 6 NOCLEANDIR:NO_CLEANDIR \ 7 NOCRYPT:NO_CRYPT \ 8 NODOCCOMPRESS:NO_DOCCOMPRESS \ 9 NOEXTRADEPEND:NO_EXTRADEPEND \ 10 NOFORTH:NO_FORTH \ 11 NOFSCHG:NO_FSCHG \ 12 NOGAMES:NO_GAMES \ 13 NOHTML:NO_HTML \ 14 NOINET6:NO_INET6 \ 15 NOINFO:NO_INFO \ 16 NOINFOCOMPRESS:NO_INFOCOMPRESS \ 17 NOINSTALLLIB:NO_INSTALLLIB \ 18 NOLIBC_R:NO_LIBC_R \ 19 NOLIBPTHREAD:NO_LIBPTHREAD \ 20 NOLIBTHR:NO_LIBTHR \ 21 NOLINT:NO_LINT \ 22 NOMAN:NO_MAN \ 23 NOMANCOMPRESS:NO_MANCOMPRESS \ 24 NOMLINKS:NO_MLINKS \ 25 NOOBJ:NO_OBJ \ 26 NOPAM:NO_PAM \ 27 NOPIC:NO_PIC \ 28 NOPROFILE:NO_PROFILE \ 29 NO_RCMNDS:NO_RCMDS \ 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