Re: compiling modperl on alpha

2000-11-20 Thread Didier Godefroy
Hi all, Just in case this may help others in coping with the install of mod_perl on Tru64, here are a few more info: After installing mod_perl 1.24_01 into Apache 1.3.14 statically on the DU4.0b system and getting it done all the way without errors besides the usual warnings, I found out that

RE: compiling modperl on alpha

2000-11-20 Thread Henrik Tougaard
From: Didier Godefroy [mailto:[EMAIL PROTECTED]] [...snip...] But in any case, trying to use perl 5.6 is nothing but trouble and if someone has been able to make all this work with it, I'd like to know how! We have a Perl5.6.0 with apache 1.3.14 and mod_perl 1.24_01 built with no problems.

Re: compiling modperl on alpha

2000-11-19 Thread Didier Godefroy
Try getting rid of Perl 5.6 and using 5.005. This has worked for me and for several other folks running other flavors of Unix. Weird, but compiled 5.6 perl with default options does not mesh well with mod_perl, however I run Mandrake Linux, and 5.6 precompiled for this platform, seem to

Re: compiling modperl on alpha

2000-11-18 Thread Rafael Caceres
Didier: I had no trouble compiling mod_perl (with SSL and Frontpage support) on 4.0B and 4.0D True64. The script used on the mod_perl side is: #!/bin/sh perl Makefile.PL \ APACHE_SRC=../apache_1.3.12/src \ SSL_BASE=../openssl-0.9.5a \ DO_HTTPD=1 \

RE: compiling modperl on alpha

2000-11-17 Thread kevinr
:[EMAIL PROTECTED]] Sent: Thursday, November 16, 2000 8:31 PM To: Jeremy A. Mates Cc: [EMAIL PROTECTED] Subject: Re: compiling modperl on alpha on 11/16/00 8:50 PM, Jeremy A. Mates at [EMAIL PROTECTED] uttered the following: Make sure the ld that is being called is the exact same one

Re: compiling modperl on alpha

2000-11-17 Thread Didier Godefroy
on 11/17/00 8:10 AM, [EMAIL PROTECTED] at [EMAIL PROTECTED] uttered the following: supported by ld. In order to get it to compile I edited $APACHE_SRC/src/modules/perl/Makefile after running configure and added the -rpath stuff without the comma to the LDFLAGS variables and removed all

Re: compiling modperl on alpha

2000-11-17 Thread Didier Godefroy
on 11/17/00 8:35 AM, [EMAIL PROTECTED] at [EMAIL PROTECTED] uttered the following: When building static, I use the following: Configuring and compile mod_perl: $ perl Makefile.PL \ APACHE_SRC=../apache_x.x.x/src \ USE_APACI=1 \ DO_HTTPD=1 \ EVERYTHING=1 \ PREP_HTTPD=1 $ make That's

Re: compiling modperl on alpha

2000-11-17 Thread Jimi Thompson
I suspect that this has something to do with using Perl 5.6.0. I and several others have had problems getting mod_perl to work with this version of Perl under various flavors of Unix (Solaris, AIX, HP-UX). We have all also found that if you roll Perl back to 5.005 that this appears to solve the

Re: compiling modperl on alpha

2000-11-17 Thread Didier Godefroy
on 11/17/00 1:20 PM, Jimi Thompson at [EMAIL PROTECTED] uttered the following: I suspect that this has something to do with using Perl 5.6.0. I and several others have had problems getting mod_perl to work with this version of Perl under various flavors of Unix (Solaris, AIX, HP-UX). We

compiling modperl on alpha

2000-11-17 Thread Didier Godefroy
More troubles in this saga to install mod_perl with apache: After building mod_perl static with apache on DU4.0b and getting no errors (so far), I tried the same thing on Tru64 5.1 and I'm still getting this: ld -shared -expect_unresolved "*" -O4 -msym -std -s -L/usr/local/lib -o libperl.so

Re: compiling modperl on alpha

2000-11-17 Thread Jimi Thompson
Try getting rid of Perl 5.6 and using 5.005. This has worked for me and for several other folks running other flavors of Unix. Didier Godefroy wrote: More troubles in this saga to install mod_perl with apache: After building mod_perl static with apache on DU4.0b and getting no errors (so

RE: compiling modperl on alpha

2000-11-17 Thread kevinr
ld -shared -expect_unresolved "*" -O4 -msym -std -s -L/usr/local/lib -o For whatever reason, it's trying to build a dso. I'd double check my settings. Kevin Riggins - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: compiling modperl on alpha

2000-11-17 Thread Didier Godefroy
on 11/17/00 3:48 PM, [EMAIL PROTECTED] at [EMAIL PROTECTED] uttered the following: ld -shared -expect_unresolved "*" -O4 -msym -std -s -L/usr/local/lib -o For whatever reason, it's trying to build a dso. I'd double check my settings. You were right, it must be because I had

Re: compiling modperl on alpha

2000-11-17 Thread spam
On Fri, 17 Nov 2000, Jimi Thompson wrote: Try getting rid of Perl 5.6 and using 5.005. This has worked for me and for several other folks running other flavors of Unix. Weird, but compiled 5.6 perl with default options does not mesh well with mod_perl, however I run Mandrake Linux, and 5.6

Re: compiling modperl on alpha

2000-11-17 Thread Didier Godefroy
Here is an other one: I finally got mod_perl statically compiled and installed with apache. I didn't run the tests on mod_perl as they fail every time, maybe it has something to do with what's going on now, I'm not sure. When I try to run one of those test scripts that come with apache in the

Re: compiling modperl on alpha

2000-11-16 Thread Jeremy A. Mates
On Thu, 16 Nov 2000, Didier Godefroy wrote: I'm trying to compile mod_perl as a dso with apxs on Alpha/Tru64 unix and there is an error from the linker: [snip] Can anyone give a clue? Make sure the ld that is being called is the exact same one that was used to build perl itself, e.g. by

Re: compiling modperl on alpha

2000-11-16 Thread Didier Godefroy
on 11/16/00 8:50 PM, Jeremy A. Mates at [EMAIL PROTECTED] uttered the following: Make sure the ld that is being called is the exact same one that was used to build perl itself, e.g. by altering your PATH environment variable to point to either the vendor default first (under /usr/bin) or

Re: compiling modperl on alpha

2000-11-16 Thread Jeremy A. Mates
On Thu, 16 Nov 2000, Didier Godefroy wrote: GNU ld isn't on either system and the error is the exact same on both, they seem to all this in common: -Wl,-rpath,/usr/local/lib/perl5/5.6.0/alpha-dec_osf/CORE' [snip] dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='