diff options
author | wiz <wiz> | 2002-07-02 15:26:18 +0000 |
---|---|---|
committer | wiz <wiz> | 2002-07-02 15:26:18 +0000 |
commit | d849be426a73001a635742bd9b2aa42d25acee14 (patch) | |
tree | 68bc773e42bef87638e77a219e506ea5d0144164 /pkgtools/pkglint/files | |
parent | aa4626e3571580853a3d12b777c922e0a44f04c1 (diff) | |
download | pkgsrc-d849be426a73001a635742bd9b2aa42d25acee14.tar.gz |
3.28: Note that USE_SSL is deprecated.
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, ". |