|
From: <iro...@us...> - 2004-02-25 03:07:31
|
Update of /cvsroot/perl-openssl/Crypt/OpenSSL/RSA In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2907/RSA Modified Files: Makefile.PL Log Message: Compile properly under Redhat 9; thanks to Federico Dell'Anna <f_...@fr...> for helping me verify this Index: Makefile.PL =================================================================== RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/RSA/Makefile.PL,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile.PL 7 Jan 2003 03:57:26 -0000 1.4 --- Makefile.PL 25 Feb 2004 03:00:40 -0000 1.5 *************** *** 9,13 **** 'LIBS' => ['-lssl -lcrypto'], # e.g., '-lm' 'PREREQ_PM' => { 'Crypt::OpenSSL::Random' => 0 }, ! 'DEFINE' => '-DPERL5', # perl-5.8/gcc-3.2 needs this 'INC' => '', # e.g., '-I/usr/include/other' ); --- 9,14 ---- 'LIBS' => ['-lssl -lcrypto'], # e.g., '-lm' 'PREREQ_PM' => { 'Crypt::OpenSSL::Random' => 0 }, ! 'DEFINE' => '-DPERL5 -DOPENSSL_NO_KRB5', ! # perl-5.8/gcc-3.2 needs -DPERL5, and redhat9 likes -DOPENSSL_NO_KRB5 'INC' => '', # e.g., '-I/usr/include/other' ); |