From 2ae8498b92e840d0c2e03dac00e6a3ae8a0d9624 Mon Sep 17 00:00:00 2001 From: tonnesen Date: Tue, 25 Jun 2002 21:28:53 +0000 Subject: [PATCH] Removed check for Net::Z3950 as it reported it missing even though it was there. Is there something different about the Net::Z3950 module from the other modules being testing in installer.pl? --- installer.pl | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/installer.pl b/installer.pl index 59fa5bebb4..435e53a263 100644 --- a/installer.pl +++ b/installer.pl @@ -62,21 +62,21 @@ unless (eval {require DBI}) { push @missing,"DBI" }; unless (eval {require Date::Manip}) { push @missing,"Date::Manip" }; unless (eval {require DBD::mysql}) { push @missing,"DBD::mysql" }; unless (eval {require Set::Scalar}) { push @missing,"Set::Scalar" }; -unless (eval {require Net::Z3950}) { - print qq| - -The Net::Z3950 module is missing. This module is necessary if you want to use -Koha's Z39.50 client to download bibliographic records from other libraries. -To install this module, you will need the yaz client installed from -http://www.indexdata.dk/yaz/ and then you can install the perl module with the -command: - -perl -MCPAN -e 'install Net::Z3950' - -Press the key to continue: -|; - ; -} +#unless (eval {require Net::Z3950}) { +# print qq| +# +#The Net::Z3950 module is missing. This module is necessary if you want to use +#Koha's Z39.50 client to download bibliographic records from other libraries. +#To install this module, you will need the yaz client installed from +#http://www.indexdata.dk/yaz/ and then you can install the perl module with the +#command: +# +#perl -MCPAN -e 'install Net::Z3950' +# +#Press the key to continue: +#|; +# ; +#} # # Print out a list of any missing modules -- 2.39.5