From d44991fe8522e49d9383ab2f2265e0173af078d1 Mon Sep 17 00:00:00 2001 From: skrll Date: Fri, 26 Jan 2001 16:42:44 +0000 Subject: Improve argument checking for -version-info. Bump to nb11. --- devel/libtool/Makefile | 4 ++-- devel/libtool/files/patch-sum | 4 ++-- devel/libtool/patches/patch-ab | 31 +++++++++++++++++++++++++++++-- 3 files changed, 33 insertions(+), 6 deletions(-) (limited to 'devel/libtool') diff --git a/devel/libtool/Makefile b/devel/libtool/Makefile index 6b469a0ca7c..0b413e56ad6 100644 --- a/devel/libtool/Makefile +++ b/devel/libtool/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.29 2001/01/15 14:40:32 jlam Exp $ +# $NetBSD: Makefile,v 1.30 2001/01/26 16:42:44 skrll Exp $ # DISTNAME= libtool-1.3.5 -PKGNAME= libtool-1.3.5nb10 +PKGNAME= libtool-1.3.5nb11 CATEGORIES= devel pkgtools MASTER_SITES= ${MASTER_SITE_GNU:=libtool/} diff --git a/devel/libtool/files/patch-sum b/devel/libtool/files/patch-sum index 5d22f7573a7..a7dfd00fbc0 100644 --- a/devel/libtool/files/patch-sum +++ b/devel/libtool/files/patch-sum @@ -1,5 +1,5 @@ -$NetBSD: patch-sum,v 1.21 2001/01/24 12:55:35 tsutsui Exp $ +$NetBSD: patch-sum,v 1.22 2001/01/26 16:42:45 skrll Exp $ MD5 (patch-aa) = 9d0fe34136ac2f00b71e535049e7ef17 -MD5 (patch-ab) = 3e33219c207d69034c7828fc007dcf55 +MD5 (patch-ab) = a20254fd1309b8a4ba0efd4c4ec2221a MD5 (patch-ac) = f1a5d70c114da3ea8227f03e0f0f3395 diff --git a/devel/libtool/patches/patch-ab b/devel/libtool/patches/patch-ab index fff1616641e..50630974c72 100644 --- a/devel/libtool/patches/patch-ab +++ b/devel/libtool/patches/patch-ab @@ -1,6 +1,6 @@ -$NetBSD: patch-ab,v 1.14 2001/01/15 15:18:24 jlam Exp $ +$NetBSD: patch-ab,v 1.15 2001/01/26 16:42:45 skrll Exp $ ---- ltmain.in.orig Fri May 26 21:53:15 2000 +--- ltmain.in.orig Sat May 27 02:53:15 2000 +++ ltmain.in @@ -819,6 +819,7 @@ old_convenience= @@ -36,6 +36,33 @@ $NetBSD: patch-ab,v 1.14 2001/01/15 15:18:24 jlam Exp $ # Some other compiler flag. -* | +*) # Unknown arguments in both finalize_command and compile_command need +@@ -1656,7 +1676,7 @@ + + # Check that each of the things are valid numbers. + case "$current" in +- 0 | [1-9] | [1-9][0-9]*) ;; ++ 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; + *) + $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2 + $echo "$modename: \`$vinfo' is not valid version information" 1>&2 +@@ -1665,7 +1685,7 @@ + esac + + case "$revision" in +- 0 | [1-9] | [1-9][0-9]*) ;; ++ 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; + *) + $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2 + $echo "$modename: \`$vinfo' is not valid version information" 1>&2 +@@ -1674,7 +1694,7 @@ + esac + + case "$age" in +- 0 | [1-9] | [1-9][0-9]*) ;; ++ 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; + *) + $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2 + $echo "$modename: \`$vinfo' is not valid version information" 1>&2 @@ -1772,7 +1792,7 @@ fi -- cgit v1.2.3