diff options
author | wiz <wiz@pkgsrc.org> | 2002-07-02 15:26:18 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-07-02 15:26:18 +0000 |
commit | 5404dd4907ca2f72a512a2ffe7d4c89a4475d858 (patch) | |
tree | 68bc773e42bef87638e77a219e506ea5d0144164 /pkgtools | |
parent | 0c3f94f20fbced80aedf131098fb0b412b37e508 (diff) | |
download | pkgsrc-5404dd4907ca2f72a512a2ffe7d4c89a4475d858.tar.gz |
3.28: Note that USE_SSL is deprecated.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile index e452e1f2160..ea33c18d0ff 100644 --- a/pkgtools/pkglint/Makefile +++ b/pkgtools/pkglint/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.131 2002/07/02 13:16:30 wiz Exp $ +# $NetBSD: Makefile,v 1.132 2002/07/02 15:26:18 wiz Exp $ # -DISTNAME= pkglint-3.27 +DISTNAME= pkglint-3.28 CATEGORIES= pkgtools devel MASTER_SITES= # empty DISTFILES= # empty 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, ". |