From: mike Date: Thu, 11 May 2006 16:43:40 +0000 (+0000) Subject: Check YAZ version 2.0.11 or better, refuse to build if not. X-Git-Tag: cpan_1_22~163 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=903e92d0ab6b5ced2ef93d2a733458c3b07e557e;hp=d208de61093fc876e1e61f7fe832c8cf7b2a7fc3;p=ZOOM-Perl-moved-to-github.git Check YAZ version 2.0.11 or better, refuse to build if not. --- diff --git a/Makefile.PL b/Makefile.PL index 66f7a52..27120c7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,11 +1,13 @@ -# $Id: Makefile.PL,v 1.7 2006-04-19 20:11:03 mike Exp $ +# $Id: Makefile.PL,v 1.8 2006-05-11 16:43:40 mike Exp $ use 5.008; use ExtUtils::MakeMaker; +use strict; +my $yazver = `yaz-config --version`; my $yazinc = `yaz-config --cflags threads`; my $yazlibs = `yaz-config --libs threads`; -if (!$yazinc || !$yazlibs) { +if (!$yazver || !$yazinc || !$yazlibs) { die qq[ ERROR: Unable to call script: yaz-config If you are using a YAZ installation from the Debian package "yaz", you @@ -13,6 +15,9 @@ will also need to install "libyaz-dev" in order to build this module. ]; } +chomp($yazver); +check_version($yazver, "2.0.11"); + # For Windows use # $yazinc = '-Ic:\yaz\include' # $yazlibs = 'c:\yaz\lib\yaz.lib' @@ -22,7 +27,7 @@ will also need to install "libyaz-dev" in order to build this module. WriteMakefile( NAME => 'Net::Z3950::ZOOM', VERSION_FROM => 'lib/Net/Z3950/ZOOM.pm', # finds $VERSION - PREREQ_PM => { MARC::Record => 1.38 }, # e.g., Module::Name => 1.1 + PREREQ_PM => { "MARC::Record" => 1.38 }, ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/Net/Z3950/ZOOM.pm', # retrieve abstract from module AUTHOR => 'Mike Taylor ') : ()), @@ -35,3 +40,28 @@ WriteMakefile( # Use this to test for illegal code that GCC stupidly permits by default: # OPTIMIZE => "-Wdeclaration-after-statement" ); + + +sub check_version { + my($got, $want) = @_; + + my($gmajor, $gminor, $gtrivial) = ($got =~ /(\d+)\.(\d+)\.(\d+)/); + print "gmajor=$gmajor\n"; + print "gminor=$gminor\n"; + print "gtrivial=$gtrivial\n"; + my($wmajor, $wminor, $wtrivial) = ($want =~ /(\d+)\.(\d+)\.(\d+)/); + print "wmajor=$wmajor\n"; + print "wminor=$wminor\n"; + print "wtrivial=$wtrivial\n"; + + if (($gmajor < $wmajor) || + ($gmajor == $wmajor && $gminor < $wminor) || + ($gmajor == $wmajor && $gminor == $wminor && $gtrivial < $wtrivial)) { + print <<__EOT__; +*** WARNING! +ZOOM-Perl requires at least version $want of YAZ, +but is currently you only have version $got. +__EOT__ + exit 1; + } +}