diff options
Diffstat (limited to 'pkgtools/pkglint/files')
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 284d6bde5d4..cb519ca2b4d 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -12,7 +12,7 @@ # Freely redistributable. Absolutely no warranty. # # From Id: portlint.pl,v 1.64 1998/02/28 02:34:05 itojun Exp -# $NetBSD: pkglint.pl,v 1.67 2002/07/02 13:16:32 wiz Exp $ +# $NetBSD: pkglint.pl,v 1.68 2002/07/02 15:26:18 wiz Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by Hubert Feyrer <hubertf@netbsd.org>, @@ -703,6 +703,11 @@ sub checkmakefile { &perror("FATAL: USE_PKGLIBTOOL is deprecated, ". "use USE_LIBTOOL instead."); } + print "OK: checking USE_SSL.\n" if ($verbose); + if ($whole =~ /\nUSE_SSL/) { + &perror("FATAL: USE_SSL is deprecated, ". + "use the openssl buildlink.mk instead."); + } print "OK: checking NO_WRKSUBDIR.\n" if ($verbose); if ($whole =~ /\nNO_WRKSUBDIR/) { &perror("FATAL: NO_WRKSUBDIR is deprecated, ". |