From 7195e0cb451d43a4114dcd2914c669239b3610ab Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 8 Aug 2006 16:25:37 +0000 Subject: [PATCH] Rely on v2.1.14 of YAZ. --- Makefile.PL | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 33036af..0e7f1a1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,6 @@ use ExtUtils::MakeMaker; -## $Id: Makefile.PL,v 1.11 2006-07-24 23:04:33 mike Exp $ +## $Id: Makefile.PL,v 1.12 2006-08-08 16:25:37 mike Exp $ my $yazconf = "yaz-config"; my $yazver = `$yazconf --version`; @@ -17,9 +17,8 @@ SimpleServer module. chomp($yazver); my ($major, $minor, $trivial) = split(/\./, $yazver); -# Judging by the YAZ NEWS file, 2.0.0 was the first release to -# include SRW/U support in the GFS -my ($needMaj, $needMin, $needTriv) = (2, 0, 0); +# YAZ 2.1.14 is the first to propagate SRW/U addinfo correctly +my ($needMaj, $needMin, $needTriv) = (2, 1, 24); #print "major=$major, minor=$minor, trivial=$trivial\n"; die "You have YAZ version $major.$minor.$trivial; " . "you need $needMaj.$needMin.$needTriv or better." -- 1.7.10.4