Index: head/gnu/usr.bin/perl/perl/Makefile =================================================================== --- head/gnu/usr.bin/perl/perl/Makefile (revision 2666) +++ head/gnu/usr.bin/perl/perl/Makefile (revision 2667) @@ -1,22 +1,18 @@ # # PROG= perl SRCS+= array.c cmd.c cons.c consarg.c doarg.c doio.c dolist.c dump.c SRCS+= eval.c form.c hash.c malloc.c perl.c perly.c regcomp.c regexec.c SRCS+= stab.c str.c toke.c util.c usersub.c CFLAGS+= -I${.CURDIR} LDADD= -lm DPADD= ${LIBM} -.if exists (/usr/lib/libcrypt.a) DPADD+= ${LIBCRYPT} LDADD+= -lcrypt -.else -SRCS+= crypt.c -.endif .include .include "../../Makefile.inc" Index: head/gnu/usr.bin/perl/sperl/Makefile =================================================================== --- head/gnu/usr.bin/perl/sperl/Makefile (revision 2666) +++ head/gnu/usr.bin/perl/sperl/Makefile (revision 2667) @@ -1,31 +1,27 @@ # # PROG= suidperl SRCS+= array.c cmd.c cons.c consarg.c SRCS+= doarg.c doio.c dolist.c dump.c SRCS+= eval.c form.c hash.c malloc.c SRCS+= perl.c perly.c regcomp.c regexec.c SRCS+= stab.c str.c toke.c util.c SRCS+= usersub.c .PATH: ${.CURDIR}/../perl CFLAGS+= -I${.CURDIR}/../perl -DIAMSUID -DTAINT LDADD= -lm DPADD= ${LIBM} -.if exists (/usr/lib/libcrypt.a) LDADD+= -lcrypt DPADD+= ${LIBCRYPT} -.else -SRCS+= crypt.c -.endif NOMAN= .include .include "../../Makefile.inc" Index: head/gnu/usr.bin/perl/tperl/Makefile =================================================================== --- head/gnu/usr.bin/perl/tperl/Makefile (revision 2666) +++ head/gnu/usr.bin/perl/tperl/Makefile (revision 2667) @@ -1,31 +1,27 @@ # # PROG= tperl SRCS+= array.c cmd.c cons.c consarg.c SRCS+= doarg.c doio.c dolist.c dump.c SRCS+= eval.c form.c hash.c malloc.c SRCS+= perl.c perly.c regcomp.c regexec.c SRCS+= stab.c str.c toke.c util.c SRCS+= usersub.c .PATH: ${.CURDIR}/../perl CFLAGS+= -I${.CURDIR}/../perl -DTAINT LDADD+= -lm DPADD= ${LIBM} -.if exists (/usr/lib/libcrypt.a) LDADD+= -lcrypt DPADD+= ${LIBCRYPT} -.else -SRCS+= crypt.c -.endif NOMAN= .include .include "../../Makefile.inc"