From: James E. J. Jr. <mu...@us...> - 2003-08-02 07:10:21
|
Update of /cvsroot/psp/psp/cpan In directory sc8-pr-cvs1:/tmp/cvs-serv1770/cpan Modified Files: Makefile.in Log Message: install modules based on autoconf-determined perl version. Index: Makefile.in =================================================================== RCS file: /cvsroot/psp/psp/cpan/Makefile.in,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- Makefile.in 31 Jul 2003 13:31:24 -0000 1.9 +++ Makefile.in 2 Aug 2003 07:10:18 -0000 1.10 @@ -13,9 +13,41 @@ ifeq ('@BUILD_CPAN@','yes') +ifeq ($(PERL_VERSION),5.5) + +CPANDIRS += \ + Data-Dumper + Time-HiRes + CGI + +else +ifeq ($(PERL_VERSION),5.6) + +CPANDIRS += \ + Data-Dumper + CGI + Convert-Scalar + +else +ifeq ($(PERL_VERSION),5.8) + +CPANDIRS += \ + Convert-Scalar + +endif +endif +endif + CPANDIRS = \ - Error Time-modules CGI URI Set-IntSpan Data-Dumper Time-HiRes \ - HTML-Tagset PSP-HTML-Parser FCGI FCGI-ProcManager Convert-Scalar + Error \ + Time-modules \ + CGI \ + URI \ + Set-IntSpan \ + HTML-Tagset \ + PSP-HTML-Parser \ + FCGI \ + FCGI-ProcManager endif |