blob: 39e9dcd388090d0752e63ce315136d9e49723f82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ab,v 1.5 2006/03/14 15:00:57 drochner Exp $
--- configure.orig 2006-02-25 23:22:46.000000000 +0100
+++ configure
@@ -19762,7 +19762,10 @@ echo $ECHO_N "checking for GPGME - versi
sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\3/'`
if test "$major" -eq "$req_major"; then
- if test "$minor" -ge "$req_minor"; then
+ if test "$minor" -gt "$req_minor"; then
+ ok="yes"
+ fi
+ if test "$minor" -eq "$req_minor"; then
if test "$micro" -ge "$req_micro"; then
ok="yes"
fi
|