qsos-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qsos-commits] qsos/libs/perl/QSOS-Document Makefile.PL


From: Goneri Le Bouder
Subject: [Qsos-commits] qsos/libs/perl/QSOS-Document Makefile.PL
Date: Fri, 01 Dec 2006 14:10:18 +0000

CVSROOT:        /sources/qsos
Module name:    qsos
Changes by:     Goneri Le Bouder <goneri>       06/12/01 14:10:18

Modified files:
        libs/perl/QSOS-Document: Makefile.PL 

Log message:
        check for Tie::IxHash presence during install

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qsos/libs/perl/QSOS-Document/Makefile.PL?cvsroot=qsos&r1=1.5&r2=1.6

Patches:
Index: Makefile.PL
===================================================================
RCS file: /sources/qsos/qsos/libs/perl/QSOS-Document/Makefile.PL,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- Makefile.PL 24 Mar 2006 11:11:13 -0000      1.5
+++ Makefile.PL 1 Dec 2006 14:10:18 -0000       1.6
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL,v 1.5 2006/03/24 11:11:13 goneri Exp $
+# $Id: Makefile.PL,v 1.6 2006/12/01 14:10:18 goneri Exp $
 
 use ExtUtils::MakeMaker;
 
@@ -34,6 +34,13 @@
     die "You don't have XML::Twig installed!\n";
 }
 
+if ( eval { require Tie::IxHash } && ! $@ ) {
+    print "Tie::IxHash is installed\n";
+}
+else {
+    die "You don't have Tie::IxHash installed!\n";
+}
+
 eval { require Storable };
 if($@) {
   die "Storable is not installed ...\n";




reply via email to

[Prev in Thread] Current Thread [Next in Thread]