Fwd: Undefined symbol "Perl_pad_sv" building mp2

--Apple-Mail-1-822054933
Content-Transfer-Encoding: 7bit
Content-Type: text/plain;
charset=US-ASCII;
delsp=yes;
format=flowed

>
> I have always included previous perl libraries in the [at] INC of
> new builds. And it has always worked, with the single
> exception of building mod_perl2 this time. All of the perl
> scripts and modules on my site work well under the new 5.10.1.
>
> Aside from the pain of re-downloading all kinds of modules
> as they prove to be needed over the next year or so, I know
> there are items in the 5.8.7 libraries from my Internet
> Hosting Provider, that are needed to run software from the IHP.
>
> I can certainly build a 5.10.1 without the otherlibs, and
> locate it somewhere else than in /usr/local/bin. Will that
> process completely replace all of:
>
> /usr/local/lib/perl5/5.10.1/i386-freebsd
> /usr/local/lib/perl5/5.10.1
> /usr/local/lib/perl5/site_perl/5.10.1/i386-freebsd
> /usr/local/lib/perl5/site_perl/5.10.1
> ??
>
> If so, I suppose could copy them somewhere before the
> build, and copy them back after the build.
>
> In "Non-Boolean Build Options" on
>
> http://perl.apache.org/docs/2.0/user/install/install.html,
>
> I don't see a command to tell the mod_perl build process to
> use a particular perl. If I say $perl_other Makefile.PL
> in the modperl-2.x directory, does that do it?
>
> Thanks for being there,
> cmac
>
>
> On Sep 1, 2009, at 5:58 PM, Fred Moyer wrote:
>
>> Can you please cc the list on all replies?
>>
>> On Tue, Sep 1, 2009 at 5:41 PM, <craig [at] animalhead.com> wrote:
>>> cd /build/perl-5.10.1/
>>> make veryclean
>>> ./Configure -Dd_dosuid
>>> -Dotherlibdirs=/usr/local/lib/perl5/5.8.9:/usr/local/lib/per l5/
>>> site_perl/5.8.9:/usr/local/lib/perl5/5.8.8:/usr/local/lib/pe rl5/
>>> site_perl/5.8.8:/usr/local/lib/perl5/5.8.7:/usr/local/lib/pe rl5/
>>> site_perl/5.8.7:/usr/local/lib/perl5/vendor_perl/5.8.7
>>> -Dmydomain=animalhead.com
>>
>> Why are you configuring 5.10.1 with 5.8.x libs?
>>
>> Can you try a build without otherlibdirs?
>>
>>>
>>> change optimization '-O' to '-O2'
>>> search other versions? [5.8.9 5.8.8 5.8.7] none
>>> change email 'xxxxxxxx [at] animalhead.com' to 'mackenna [at] ...'
>>>
>>> make
>>> make test <-- no errors for 5.10.1
>>> sudo make install
>>>
>>>
>>> On Sep 1, 2009, at 11:23 AM, Fred Moyer wrote:
>>>
>>>> On Tue, Sep 1, 2009 at 9:27 AM, <craig [at] animalhead.com> wrote:
>>>>>
>>>>> A bit more data on the problem reported below:
>>>>>
>>>>> /build/modperl-2.0 $ grep -r Perl_pad_sv *
>>>>> Binary file src/modules/perl/mod_perl.so matches
>>>>> /build/modperl-2.0 $ ll src/modules/perl/mod_perl.so
>>>>> -rwxr-xr-x 1 user wheel 1559168 Aug 29 21:22
>>>>> src/modules/perl/mod_perl.so
>>>>> /build/modperl-2.0 $ cd /usr/local/bin
>>>>>
>>>>> /usr/local/bin $ ll perl5*
>>>>> lrwxr-xr-x 1 root wheel 10 Aug 29 16:04 perl5 ->
>>>>> perl5.10.1
>>>>> -rwxr-xr-x 3 root wheel 1078522 Aug 30 00:52 perl5.10.1
>>>>> -rwxr-xr-x 2 root wheel 949166 Nov 14 2005 perl5.8.7
>>>>> -rwxr-xr-x 1 root wheel 2050866 Nov 18 2008 perl5.8.8
>>>>> -rwxr-xr-x 1 root wheel 951373 Jan 7 2009 perl5.8.9
>>>>> /usr/local/bin $ grep -r Perl_pad_sv perl*
>>>>> Binary file perl5.8.7 matches
>>>>> Binary file perl5.8.8 matches
>>>>> Binary file perl5.8.9 matches
>>>>> /usr/local/bin $
>>>>>
>>>>> So the symbol in the error message is wanted by the newly-built
>>>>> mod_perl, but perl 5.10.1 does not include it.
>>>>>
>>>>> Yes that's exactly what the error message says, but the mailing
>>>>> list is so quiet that I wonder if my filters have started eating
>>>>> its emails...
>>>>
>>>> Perl_pad_sv is in there. How did you install 5.10.1?
>>>>
>>>> phred [at] harpua ~/perl-5.10.1 $ ack Perl_pad_sv
>>>> embed.h
>>>> 638:#define pad_sv Perl_pad_sv
>>>> 2958:#define pad_sv(a) Perl_pad_sv(aTHX_ a)
>>>>
>>>> makedef.pl
>>>> 627: Perl_pad_sv
>>>>
>>>> pad.c
>>>> 927:Perl_pad_sv(pTHX_ PADOFFSET po)
>>>>
>>>> proto.h
>>>> 2386:PERL_CALLCONV SV* Perl_pad_sv(pTHX_ PADOFFSET po);
>>>>
>>>>
>>>>>
>>>>> cmac
>>>>>
>>>>>> On Aug 30, 2009, at 11:49 AM, Fred Moyer wrote:
>>>>>>
>>>>>>> On Sat, Aug 29, 2009 at 9:43 PM, <craig [at] animalhead.com> wrote:
>>>>>>>>
>>>>>>>> -------------8<---------- Start Bug Report
>>>>>>>> ------------8<----------
>>>>>>>> 1. Problem Description:
>>>>>>>>
>>>>>>>> I have upgraded to Apache 2.2.13 and Perl 5.10.1. Both seem
>>>>>>>> to be
>>>>>>>> working
>>>>>>>> OK,
>>>>>>>> although Apache with using my old mod_perl 2.04 that uses
>>>>>>>> perl 5.8.9.
>>>>>>>
>>>>>>> Have you rebuilt your mod_perl 2.0.4 instance from scratch using
>>>>>>> 5.10.1? Undefined symbol warnings like this usually mean you
>>>>>>> are
>>>>>>> trying to use a version of mod_perl that has been built with
>>>>>>> another
>>>>>>> perl binary.
>>>>>>>
>>>>>>> Suggest running make clean, then:
>>>>>>>
>>>>>>> perl Makefile.PL MP_APXS=/path/to/my/httpd/apxs
>>>>>>> make
>>>>>>> make test
>>>>>>
>>>>>> Yes, that is pretty much exactly what I've done. Here is the
>>>>>> command
>>>>>> file
>>>>>> (that precedes make):
>>>>>>
>>>>>> #! /bin/sh
>>>>>> CFLAGS="-DVERIO -DVERIO_VPS"; export CFLAGS
>>>>>> LDFLAGS="-L/usr/local/lib"; export LDFLAGS
>>>>>> perl Makefile.PL MP_APXS=/usr/local/apache2/bin/apxs
>>>>>>
>>>>>>>>
>>>>>>>> make test in both the release mod_perl 2.0.4 and the latest
>>>>>>>> snapshot
>>>>>>>> 2.0.5
>>>>>>>> gives the same error:
>>>>>>>>
>>>>>>>> $ make test
>>>>>>>> cd "src/modules/perl" && make
>>>>>>>> /usr/bin/perl -Iblib/arch -Iblib/lib t/TEST -clean
>>>>>>>> APACHE_TEST_GROUP= APACHE_TEST_HTTPD= APACHE_TEST_PORT=
>>>>>>>> APACHE_TEST_USER=
>>>>>>>> APACHE_TEST_APXS= /usr/bin/perl -Iblib/arch -Iblib/lib t/TEST
>>>>>>>> -bugreport
>>>>>>>> -verbose=0
>>>>>>>> /usr/local/apache2/bin/httpd -d /build/modperl-2.0/t -f
>>>>>>>> /build/modperl-2.0/t/conf/httpd.conf -D APACHE2
>>>>>>>> using Apache/2.2.13 (prefork MPM)
>>>>>>>>
>>>>>>>> waiting 120 seconds for server to start: .httpd: Syntax
>>>>>>>> error on line
>>>>>>>> 17
>>>>>>>> of
>>>>>>>> /build/modperl-2.0/t/conf/httpd.conf: Cannot load
>>>>>>>> /build/modperl-2.0/src/modules/perl/mod_perl.so into server:
>>>>>>>> /build/modperl-2.0/src/modules/perl/mod_perl.so: Undefined
>>>>>>>> symbol
>>>>>>>> "Perl_pad_sv"
>>>>>>>>
>>>>>>>>
>>>>>>>> 2. Used Components and their Configuration:
>>>>>>>>
>>>>>>>> *** mod_perl version 2.000005
>>>>>>>>
>>>>>>>> *** using /build/modperl-2.0/lib/Apache2/BuildConfig.pm
>>>>>>>>
>>>>>>>> *** Makefile.PL options:
>>>>>>>> MP_APR_LIB => aprext
>>>>>>>> MP_APXS => /usr/local/apache2/bin/apxs
>>>>>>>> MP_COMPAT_1X => 1
>>>>>>>> MP_GENERATE_XS => 1
>>>>>>>> MP_LIBNAME => mod_perl
>>>>>>>> MP_USE_DSO => 1
>>>>>>>>
>>>>>>>>
>>>>>>>> *** /usr/local/apache2/bin/httpd -V
>>>>>>>> Server version: Apache/2.2.13 (Unix)
>>>>>>>> Server built: Aug 29 2009 16:57:40
>>>>>>>> Server's Module Magic Number: 20051115:23
>>>>>>>> Server loaded: APR 1.3.8, APR-Util 1.3.9
>>>>>>>> Compiled using: APR 1.3.8, APR-Util 1.3.9
>>>>>>>> Architecture: 32-bit
>>>>>>>> Server MPM: Prefork
>>>>>>>> threaded: no
>>>>>>>> forked: yes (variable process count)
>>>>>>>> Server compiled with....
>>>>>>>> -D APACHE_MPM_DIR="server/mpm/prefork"
>>>>>>>> -D APR_HAS_SENDFILE
>>>>>>>> -D APR_HAS_MMAP
>>>>>>>> -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
>>>>>>>> -D APR_USE_FLOCK_SERIALIZE
>>>>>>>> -D APR_USE_PTHREAD_SERIALIZE
>>>>>>>> -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
>>>>>>>> -D APR_HAS_OTHER_CHILD
>>>>>>>> -D AP_HAVE_RELIABLE_PIPED_LOGS
>>>>>>>> -D DYNAMIC_MODULE_LIMIT=128
>>>>>>>> -D HTTPD_ROOT="/usr/local/apache2"
>>>>>>>> -D SUEXEC_BIN="/usr/local/apache2/bin/suexec"
>>>>>>>> -D DEFAULT_PIDLOG="logs/httpd.pid"
>>>>>>>> -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
>>>>>>>> -D DEFAULT_LOCKFILE="logs/accept.lock"
>>>>>>>> -D DEFAULT_ERRORLOG="logs/error_log"
>>>>>>>> -D AP_TYPES_CONFIG_FILE="conf/mime.types"
>>>>>>>> -D SERVER_CONFIG_FILE="conf/httpd.conf"
>>>>>>>>
>>>>>>>> *** /usr/bin/ldd /usr/local/apache2/bin/httpd
>>>>>>>> /usr/local/apache2/bin/httpd:
>>>>>>>> libz.so.3 => /lib/libz.so.3 (0x28209000)
>>>>>>>> libm.so.4 => /lib/libm.so.4 (0x2821a000)
>>>>>>>> libpcre.so.0 => /usr/local/lib/libpcre.so.0 (0x28230000)
>>>>>>>> libaprutil-1.so.3 => /usr/local/apache2/lib/
>>>>>>>> libaprutil-1.so.3
>>>>>>>> (0x2825c000)
>>>>>>>> libexpat.so.6 => /usr/local/lib/libexpat.so.6 (0x2827c000)
>>>>>>>> libapr-1.so.3 => /usr/local/apache2/lib/libapr-1.so.3
>>>>>>>> (0x2829d000)
>>>>>>>> libcrypt.so.3 => /lib/libcrypt.so.3 (0x282c5000)
>>>>>>>> libpthread.so.2 => /lib/libpthread.so.2 (0x282dd000)
>>>>>>>> libc.so.6 => /lib/libc.so.6 (0x28301000)
>>>>>>>>
>>>>>>>>
>>>>>>>> *** (apr|apu)-config linking info
>>>>>>>>
>>>>>>>> -L/usr/local/apache2/lib -laprutil-1 -lexpat -L/usr/
>>>>>>>> local/lib
>>>>>>>> -L/usr/local/apache2/lib -lapr-1 -lcrypt -lpthread
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> *** /usr/local/bin/perl -V
>>>>>>>> Summary of my perl5 (revision 5 version 10 subversion 1)
>>>>>>>> configuration:
>>>>>>>>
>>>>>>>> Platform:
>>>>>>>> osname=freebsd, osvers=6.3-release, archname=i386-freebsd
>>>>>>>> uname='freebsd animalhead.com 6.3-release freebsd 6.3-
>>>>>>>> release #3: fri
>>>>>>>> jan
>>>>>>>> 23 16:43:41 mst 2009 root [at] fc:usrsrcsysi386compilevkern i386 '
>>>>>>>> config_args='-Dd_dosuid
>>>>>>>>
>>>>>>>>
>>>>>>>> -Dotherlibdirs=/usr/local/lib/perl5/5.8.9:/usr/local/lib/
>>>>>>>> perl5/5.8.8:/usr/local/lib/perl5/5.8.7
>>>>>>>> -Dvendorprefix=/usr/local -Dmydomain=animalhead.com'
>>>>>>>> hint=recommended, useposix=true, d_sigaction=define
>>>>>>>> useithreads=undef, usemultiplicity=undef
>>>>>>>> useperlio=define, d_sfio=undef, uselargefiles=define,
>>>>>>>> usesocks=undef
>>>>>>>> use64bitint=undef, use64bitall=undef, uselongdouble=undef
>>>>>>>> usemymalloc=n, bincompat5005=undef
>>>>>>>> Compiler:
>>>>>>>> cc='cc', ccflags ='-DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H
>>>>>>>> -fno-strict-aliasing -pipe -I/usr/local/include',
>>>>>>>> optimize='-O',
>>>>>>>> cppflags='-DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-
>>>>>>>> aliasing
>>>>>>>> -pipe -I/usr/local/include'
>>>>>>>> ccversion='', gccversion='3.4.6 [FreeBSD] 20060305',
>>>>>>>> gccosandvers=''
>>>>>>>> intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234
>>>>>>>> d_longlong=define, longlongsize=8, d_longdbl=define,
>>>>>>>> longdblsize=12
>>>>>>>> ivtype='long', ivsize=4, nvtype='double', nvsize=8,
>>>>>>>> Off_t='off_t',
>>>>>>>> lseeksize=8
>>>>>>>> alignbytes=4, prototype=define
>>>>>>>> Linker and Libraries:
>>>>>>>> ld='cc', ldflags ='-Wl,-E -L/usr/local/lib'
>>>>>>>> libpth=/usr/lib /usr/local/lib
>>>>>>>> libs=-lgdbm -lm -lcrypt -lutil -lc
>>>>>>>> perllibs=-lm -lcrypt -lutil -lc
>>>>>>>> libc=, so=so, useshrplib=false, libperl=libperl.a
>>>>>>>> gnulibc_version=''
>>>>>>>> Dynamic Linking:
>>>>>>>> dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=' '
>>>>>>>> cccdlflags='-DPIC -fPIC', lddlflags='-shared -L/usr/local/
>>>>>>>> lib'
>>>>>>>>
>>>>>>>>
>>>>>>>> Characteristics of this binary (from libperl):
>>>>>>>> Compile-time options: PERL_DONT_CREATE_GVSV PERL_MALLOC_WRAP
>>>>>>>> USE_LARGE_FILES USE_PERLIO
>>>>>>>> Built under freebsd
>>>>>>>> Compiled at Aug 29 2009 20:24:18
>>>>>>>> %ENV:
>>>>>>>> PERL_LWP_USE_HTTP_10="1"
>>>>>>>> [at] INC:
>>>>>>>> /usr/local/lib/perl5/5.10.1/i386-freebsd
>>>>>>>> /usr/local/lib/perl5/5.10.1
>>>>>>>> /usr/local/lib/perl5/site_perl/5.10.1/i386-freebsd
>>>>>>>> /usr/local/lib/perl5/site_perl/5.10.1
>>>>>>>> /usr/local/lib/perl5/site_perl/5.8.9
>>>>>>>> /usr/local/lib/perl5/site_perl/5.8.8
>>>>>>>> /usr/local/lib/perl5/site_perl/5.8.7
>>>>>>>> /usr/local/lib/perl5/site_perl
>>>>>>>> /usr/local/lib/perl5/vendor_perl/5.10.1/i386-freebsd
>>>>>>>> /usr/local/lib/perl5/vendor_perl/5.10.1
>>>>>>>> /usr/local/lib/perl5/vendor_perl/5.8.7
>>>>>>>> /usr/local/lib/perl5/vendor_perl
>>>>>>>> /usr/local/lib/perl5/5.8.9/i386-freebsd
>>>>>>>> /usr/local/lib/perl5/5.8.9
>>>>>>>> /usr/local/lib/perl5/5.8.8/i386-freebsd
>>>>>>>> /usr/local/lib/perl5/5.8.8
>>>>>>>> /usr/local/lib/perl5/5.8.7/i386-freebsd
>>>>>>>> /usr/local/lib/perl5/5.8.7
>>>>>>>> .
>>>>>>>>
>>>>>>>> *** Packages of interest status:
>>>>>>>>
>>>>>>>> Apache2 : -
>>>>>>>> Apache2::Request : -
>>>>>>>> CGI : 3.45
>>>>>>>> ExtUtils::MakeMaker: 6.48, 6.54, 6.55_02
>>>>>>>> LWP : 5.831
>>>>>>>> mod_perl : -
>>>>>>>> mod_perl2 : -
>>>>>>>>
>>>>>>>>
>>>>>>>> 3. This is the core dump trace: (if you get a core dump):
>>>>>>>>
>>>>>>>> [CORE TRACE COMES HERE]
>>>>>>>>
>>>>>>>> This report was generated by t/REPORT on Sun Aug 30 04:28:22
>>>>>>>> 2009 GMT.
>>>>>>>>
>>>>>>>> -------------8<---------- End Bug Report
>>>>>>>> --------------8<----------
>>>>>>>>
>>>>>>>>
>>>>>>
>>>>>
>>>>>
>>>
>>>
>


--Apple-Mail-1-822054933
Content-Transfer-Encoding: quoted-printable
Content-Type: text/html;
charset=US-ASCII

<html><body style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
-webkit-line-break: after-white-space; "><div><blockquote =
type=3D"cite"><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><font =
class=3D"Apple-style-span" color=3D"#000000"><br></font></div> <div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">I have always included previous perl libraries in =
the [at] INC of</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">new builds.<span =
class=3D"Apple-converted-space">  </span>And it has always worked, =
with the single</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">exception of building mod_perl2 =
this time.<span class=3D"Apple-converted-space">  </span>All of the =
perl</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">scripts and modules on my site =
work well under the new 5.10.1.</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Aside from the pain of =
re-downloading all kinds of modules</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">as they prove =
to be needed over the next year or so, I know</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">there are items in the 5.8.7 libraries from my =
Internet</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Hosting Provider, that are =
needed to run software from the IHP.</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">I can certainly build a 5.10.1 =
without the otherlibs, and</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">locate it =
somewhere else than in /usr/local/bin.<span =
class=3D"Apple-converted-space">  </span>Will that</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">process completely replace all of:</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">/usr/local/lib/perl5/5.10.1/i386-freebsd</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">/usr/local/lib/perl5/5.10.1</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">/usr/local/lib/perl5/site_perl/5.10.1/i386-freebsd</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">/usr/local/lib/perl5/site_perl/5.10.1</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">??</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; min-height: 14px; =
"><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">If so, I suppose could copy them =
somewhere before the</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; ">build, and copy them back =
after the build.</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">In "Non-Boolean Build Options" on</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><a =
href=3D"http://perl.apache.org/docs/2.0/user/install/install .html">http://=
perl.apache.org/docs/2.0/user/install/install.html</a>,</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">I don't =
see a command to tell the mod_perl build process to</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">use a particular perl.<span =
class=3D"Apple-converted-space">  </span>If I say $perl_other =
Makefile.PL</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">in the modperl-2.x directory, =
does that do it?</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">Thanks for being there,</div><div style=3D"margin-top:=
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">cmac</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">On Sep =
1, 2009, at 5:58 PM, Fred Moyer wrote:</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div> <blockquote type=3D"cite"><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">Can you please cc the list on all replies?</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">On Tue, =
Sep 1, 2009 at 5:41 PM, <<a =
href=3D"mailto:craig [at] animalhead.com">craig [at] animalhead.com</a>> =
wrote:</div> <blockquote type=3D"cite"><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">cd =
/build/perl-5.10.1/</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; ">make veryclean</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">./Configure -Dd_dosuid</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">-Dotherlibdirs=3D/usr/local/lib/perl5/5.8.9:/usr/local/lib /perl5/site_pe=
rl/5.8.9:/usr/local/lib/perl5/5.8.8:/usr/local/lib/perl5/sit e_perl/5.8.8:/=
usr/local/lib/perl5/5.8.7:/usr/local/lib/perl5/site_perl/5.8 .7:/usr/local/=
lib/perl5/vendor_perl/5.8.7</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">-Dmydomain=3Danimalhead.com</div> </blockquote><div style=3D"margin-top:=
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">Why are you =
configuring 5.10.1 with 5.8.x libs?</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Can you try a build without =
otherlibdirs?</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div> =
<blockquote type=3D"cite"><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; min-height: 14px; =
"><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space">    </span>change optimization =
'-O' to '-O2'</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space">    </span>search other =
versions? [5.8.9 5.8.8 5.8.7] none</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space">    </span>change email '<a =
href=3D"mailto:xxxxxxxx [at] animalhead.com">xxxxxxxx [at] animalhead. com</a>' to =
'mackenna [at] ...'</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">make</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">make =
test<span class=3D"Apple-converted-space">        =
              </span><-- no errors =
for 5.10.1</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">sudo make install</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">On Sep 1, =
2009, at 11:23 AM, Fred Moyer wrote:</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div> <blockquote type=3D"cite"><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">On Tue, =
Sep 1, 2009 at 9:27 AM, <<a =
href=3D"mailto:craig [at] animalhead.com">craig [at] animalhead.com</a>> =
wrote:</div> <blockquote type=3D"cite"><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">A bit more data on the problem =
reported below:</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">/build/modperl-2.0 $ grep -r Perl_pad_sv *</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">Binary file src/modules/perl/mod_perl.so =
matches</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">/build/modperl-2.0 $ ll =
src/modules/perl/mod_perl.so</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">-rwxr-xr-x<span class=3D"Apple-converted-space">  </span>1 =
user<span class=3D"Apple-converted-space">  </span>wheel<span =
class=3D"Apple-converted-space">  </span>1559168 Aug 29 =
21:22</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; =
">src/modules/perl/mod_perl.so</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">/build/modperl-2.0 $ cd /usr/local/bin</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">/usr/local/bin $ ll perl5*</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">lrwxr-xr-x<span class=3D"Apple-converted-space">  </span>1 =
root<span class=3D"Apple-converted-space">  </span>wheel <span =
class=3D"Apple-converted-space">      </span>10 Aug 29 =
16:04 perl5 -> perl5.10.1</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">-rwxr-xr-x<span class=3D"Apple-converted-space">  </span>3 =
root<span class=3D"Apple-converted-space">  </span>wheel<span =
class=3D"Apple-converted-space">  </span>1078522 Aug 30 00:52 =
perl5.10.1</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">-rwxr-xr-x<span =
class=3D"Apple-converted-space">  </span>2 root<span =
class=3D"Apple-converted-space">  </span>wheel <span =
class=3D"Apple-converted-space">  </span>949166 Nov 14<span =
class=3D"Apple-converted-space">  </span>2005 perl5.8.7</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">-rwxr-xr-x<span class=3D"Apple-converted-space"> =
</span>1 root<span class=3D"Apple-converted-space">  =
</span>wheel<span class=3D"Apple-converted-space">  </span>2050866 =
Nov 18<span class=3D"Apple-converted-space">  </span>2008 =
perl5.8.8</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">-rwxr-xr-x<span =
class=3D"Apple-converted-space">  </span>1 root<span =
class=3D"Apple-converted-space">  </span>wheel <span =
class=3D"Apple-converted-space">  </span>951373 Jan<span =
class=3D"Apple-converted-space">  </span>7<span =
class=3D"Apple-converted-space">  </span>2009 perl5.8.9</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">/usr/local/bin $ grep -r Perl_pad_sv perl*</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">Binary file perl5.8.7 matches</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">Binary file perl5.8.8 matches</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">Binary file perl5.8.9 matches</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">/usr/local/bin $</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">So the symbol in the error =
message is wanted by the newly-built</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">mod_perl, but =
perl 5.10.1 does not include it.</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Yes that's exactly what the =
error message says, but the mailing</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">list is so =
quiet that I wonder if my filters have started eating</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">its emails...</div> </blockquote><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">Perl_pad_sv is in there.<span class=3D"Apple-converted-space">  =
</span>How did you install 5.10.1?</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">phred [at] harpua ~/perl-5.10.1 $ ack =
Perl_pad_sv</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">embed.h</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">638:#define pad_sv<span =
class=3D"Apple-converted-space">          =
            </span>Perl_pad_sv</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">2958:#define pad_sv(a)<span =
class=3D"Apple-converted-space">          =
</span>Perl_pad_sv(aTHX_ a)</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">makedef.pl</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">627:<span class=3D"Apple-converted-space">  =
              =
</span>Perl_pad_sv</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; min-height: 14px; =
"><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">pad.c</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">927:Perl_pad_sv(pTHX_ PADOFFSET po)</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">proto.h</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">2386:PERL_CALLCONV SV*<span =
class=3D"Apple-converted-space">  </span>Perl_pad_sv(pTHX_ =
PADOFFSET po);</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div> <blockquote =
type=3D"cite"><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">cmac</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div> <blockquote type=3D"cite"><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">On Aug =
30, 2009, at 11:49 AM, Fred Moyer wrote:</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div> <blockquote type=3D"cite"><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">On Sat, Aug 29, 2009 at 9:43 PM, <<a =
href=3D"mailto:craig [at] animalhead.com">craig [at] animalhead.com</a>> =
wrote:</div> <blockquote type=3D"cite"><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">-------------8<---------- =
Start Bug Report ------------8<----------</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">1. Problem Description:</div><div style=3D"margin-top:=
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">I have =
upgraded to Apache 2.2.13 and Perl 5.10.1.<span =
class=3D"Apple-converted-space">  </span>Both seem to be</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">working</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">OK,</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">although Apache with using my old mod_perl 2.04 that =
uses perl 5.8.9.</div> </blockquote><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Have you rebuilt your mod_perl =
2.0.4 instance from scratch using</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">5.10.1?<span =
class=3D"Apple-converted-space">  </span>Undefined symbol warnings =
like this usually mean you are</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">trying to use =
a version of mod_perl that has been built with another</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">perl binary.</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Suggest running make clean, =
then:</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">perl Makefile.PL =
MP_APXS=3D/path/to/my/httpd/apxs</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">make</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">make test</div> =
</blockquote><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">Yes, that is pretty much exactly what I've =
done.<span class=3D"Apple-converted-space">  </span>Here is the =
command</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">file</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">(that precedes make):</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">#! =
/bin/sh</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">CFLAGS=3D"-DVERIO -DVERIO_VPS"; =
export CFLAGS</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">LDFLAGS=3D"-L/usr/local/lib"; =
export LDFLAGS</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">perl Makefile.PL =
MP_APXS=3D/usr/local/apache2/bin/apxs</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div> <blockquote type=3D"cite"><blockquote =
type=3D"cite"><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">make test in both the release mod_perl 2.0.4 and the =
latest snapshot</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">2.0.5</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">gives the same error:</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">$ make =
test</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">cd "src/modules/perl" && =
make</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">/usr/bin/perl -Iblib/arch =
-Iblib/lib<span class=3D"Apple-converted-space">  </span>t/TEST =
-clean</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">APACHE_TEST_GROUP=3D =
APACHE_TEST_HTTPD=3D APACHE_TEST_PORT=3D</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">APACHE_TEST_USER=3D</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; ">APACHE_TEST_APXS=3D<span =
class=3D"Apple-converted-space">  </span>/usr/bin/perl -Iblib/arch =
-Iblib/lib<span class=3D"Apple-converted-space">  =
</span>t/TEST</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">-bugreport</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">-verbose=3D0</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">/usr/local/apache2/bin/httpd<span class=3D"Apple-converted-space"> =
</span>-d /build/modperl-2.0/t -f</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">/build/modperl-2.0/t/conf/httpd.conf -D APACHE2</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">using Apache/2.2.13 (prefork MPM)</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">waiting =
120 seconds for server to start: .httpd: Syntax error on line</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">17</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; ">of</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">/build/modperl-2.0/t/conf/httpd.conf: Cannot =
load</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; =
">/build/modperl-2.0/src/modules/perl/mod_perl.so into server:</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">/build/modperl-2.0/src/modules/perl/mod_perl.so: =
Undefined symbol</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">"Perl_pad_sv"</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">2. Used =
Components and their Configuration:</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">*** mod_perl version =
2.000005</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">*** using =
/build/modperl-2.0/lib/Apache2/BuildConfig.pm</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">*** =
Makefile.PL options:</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>MP_APR_LIB <span =
class=3D"Apple-converted-space">    </span>=3D> =
aprext</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>MP_APXS<span =
class=3D"Apple-converted-space">        </span>=3D>=
/usr/local/apache2/bin/apxs</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>MP_COMPAT_1X <span =
class=3D"Apple-converted-space">  </span>=3D> 1</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>MP_GENERATE_XS =3D> =
1</div><div style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: =
0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>MP_LIBNAME <span =
class=3D"Apple-converted-space">    </span>=3D> =
mod_perl</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>MP_USE_DSO <span =
class=3D"Apple-converted-space">    </span>=3D> 1</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">*** =
/usr/local/apache2/bin/httpd -V</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">Server =
version: Apache/2.2.13 (Unix)</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">Server built: =
<span class=3D"Apple-converted-space">  </span>Aug 29 2009 =
16:57:40</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Server's Module Magic Number: =
20051115:23</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Server loaded:<span =
class=3D"Apple-converted-space">  </span>APR 1.3.8, APR-Util =
1.3.9</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Compiled using: APR 1.3.8, =
APR-Util 1.3.9</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Architecture: <span =
class=3D"Apple-converted-space">  </span>32-bit</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">Server MPM: <span =
class=3D"Apple-converted-space">    </span>Prefork</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>threaded: <span =
class=3D"Apple-converted-space">    </span>no</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>forked: <span =
class=3D"Apple-converted-space">    </span>yes (variable =
process count)</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Server compiled =
with....</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
APACHE_MPM_DIR=3D"server/mpm/prefork"</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
APR_HAS_SENDFILE</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D APR_HAS_MMAP</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span class=3D"Apple-converted-space"> </span>-D =
APR_HAVE_IPV6 (IPv4-mapped addresses enabled)</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span class=3D"Apple-converted-space"> </span>-D =
APR_USE_FLOCK_SERIALIZE</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
APR_USE_PTHREAD_SERIALIZE</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
SINGLE_LISTEN_UNSERIALIZED_ACCEPT</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
APR_HAS_OTHER_CHILD</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
AP_HAVE_RELIABLE_PIPED_LOGS</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
DYNAMIC_MODULE_LIMIT=3D128</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
HTTPD_ROOT=3D"/usr/local/apache2"</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
SUEXEC_BIN=3D"/usr/local/apache2/bin/suexec"</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span class=3D"Apple-converted-space"> </span>-D =
DEFAULT_PIDLOG=3D"logs/httpd.pid"</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
DEFAULT_SCOREBOARD=3D"logs/apache_runtime_status"</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span class=3D"Apple-converted-space"> </span>-D =
DEFAULT_LOCKFILE=3D"logs/accept.lock"</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
DEFAULT_ERRORLOG=3D"logs/error_log"</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
AP_TYPES_CONFIG_FILE=3D"conf/mime.types"</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-D =
SERVER_CONFIG_FILE=3D"conf/httpd.conf"</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">*** =
/usr/bin/ldd /usr/local/apache2/bin/httpd</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">/usr/local/apache2/bin/httpd:</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space">     </span>libz.so.3 =
=3D> /lib/libz.so.3 (0x28209000)</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space">     </span>libm.so.4 =
=3D> /lib/libm.so.4 (0x2821a000)</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space">     </span>libpcre.so.0 =
=3D> /usr/local/lib/libpcre.so.0 (0x28230000)</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span class=3D"Apple-converted-space">   =
  </span>libaprutil-1.so.3 =3D> =
/usr/local/apache2/lib/libaprutil-1.so.3</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">(0x2825c000)</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space">     </span>libexpat.so.6 =
=3D> /usr/local/lib/libexpat.so.6 (0x2827c000)</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span class=3D"Apple-converted-space">   =
  </span>libapr-1.so.3 =3D> =
/usr/local/apache2/lib/libapr-1.so.3</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">(0x2829d000)</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space">     </span>libcrypt.so.3 =
=3D> /lib/libcrypt.so.3 (0x282c5000)</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space">     =
</span>libpthread.so.2 =3D> /lib/libpthread.so.2 =
(0x282dd000)</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space">     </span>libc.so.6 =
=3D> /lib/libc.so.6 (0x28301000)</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">*** (apr|apu)-config linking info</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-L/usr/local/apache2/lib =
-laprutil-1 <span class=3D"Apple-converted-space">    =
</span>-lexpat -L/usr/local/lib</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>-L/usr/local/apache2/lib =
-lapr-1 -lcrypt<span class=3D"Apple-converted-space">  =
</span>-lpthread</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">*** =
/usr/local/bin/perl -V</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; ">Summary of my perl5 =
(revision 5 version 10 subversion 1)</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">configuration:</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>Platform:</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>osname=3Dfreebsd, =
osvers=3D6.3-release, archname=3Di386-freebsd</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>uname=3D'freebsd =
animalhead.com 6.3-release freebsd 6.3-release #3: fri</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">jan</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">23 16:43:41 =
mst 2009 root [at] fc:usrsrcsysi386compilevkern i386 '</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>config_args=3D'-Dd_dosuid</di=
v><div style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">-Dotherlibdirs=3D/usr/local/lib/perl5/5.8.9:/usr/local/lib /perl5/5.8.8:/=
usr/local/lib/perl5/5.8.7</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">-Dvendorprefix=3D/usr/local -Dmydomain=3Danimalhead.com'</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>hint=3Drecommended, =
useposix=3Dtrue, d_sigaction=3Ddefine</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>useithreads=3Dundef, =
usemultiplicity=3Dundef</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>useperlio=3Ddefine, =
d_sfio=3Dundef, uselargefiles=3Ddefine, usesocks=3Dundef</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>use64bitint=3Dundef, =
use64bitall=3Dundef, uselongdouble=3Dundef</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>usemymalloc=3Dn, =
bincompat5005=3Dundef</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>Compiler:</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>cc=3D'cc', ccflags =
=3D'-DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
">-fno-strict-aliasing -pipe -I/usr/local/include',</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>optimize=3D'-O',</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>cppflags=3D'-DHAS_FPSETMASK =
-DHAS_FLOATINGPOINT_H -fno-strict-aliasing</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">-pipe =
-I/usr/local/include'</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>ccversion=3D'', =
gccversion=3D'3.4.6 [FreeBSD] 20060305', gccosandvers=3D''</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>intsize=3D4, longsize=3D4, =
ptrsize=3D4, doublesize=3D8, byteorder=3D1234</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>d_longlong=3Ddefine, =
longlongsize=3D8, d_longdbl=3Ddefine, longdblsize=3D12</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>ivtype=3D'long', ivsize=3D4, =
nvtype=3D'double', nvsize=3D8, Off_t=3D'off_t',</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">lseeksize=3D8</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>alignbytes=3D4, =
prototype=3Ddefine</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>Linker and =
Libraries:</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>ld=3D'cc', ldflags =
=3D'-Wl,-E<span class=3D"Apple-converted-space">  =
</span>-L/usr/local/lib'</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>libpth=3D/usr/lib =
/usr/local/lib</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>libs=3D-lgdbm -lm -lcrypt =
-lutil -lc</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>perllibs=3D-lm -lcrypt =
-lutil -lc</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>libc=3D, so=3Dso, =
useshrplib=3Dfalse, libperl=3Dlibperl.a</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>gnulibc_version=3D''</div><di=
v style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>Dynamic Linking:</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>dlsrc=3Ddl_dlopen.xs, =
dlext=3Dso, d_dlsymun=3Dundef, ccdlflags=3D' '</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>cccdlflags=3D'-DPIC -fPIC', =
lddlflags=3D'-shared<span class=3D"Apple-converted-space">  =
</span>-L/usr/local/lib'</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">Characteristics of this binary (from =
libperl):</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>Compile-time options: =
PERL_DONT_CREATE_GVSV PERL_MALLOC_WRAP</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space">           =
          </span>USE_LARGE_FILES =
USE_PERLIO</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>Built under =
freebsd</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>Compiled at Aug 29 2009 =
20:24:18</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>%ENV:</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>PERL_LWP_USE_HTTP_10=3D"1"</d=
iv><div style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span> [at] INC:</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/5.10.1/i=
386-freebsd</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/5.10.1</=
div><div style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: =
0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/site_per=
l/5.10.1/i386-freebsd</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/site_per=
l/5.10.1</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/site_per=
l/5.8.9</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/site_per=
l/5.8.8</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/site_per=
l/5.8.7</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/site_per=
l</div><div style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: =
0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/vendor_p=
erl/5.10.1/i386-freebsd</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/vendor_p=
erl/5.10.1</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/vendor_p=
erl/5.8.7</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/vendor_p=
erl</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/5.8.9/i3=
86-freebsd</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/5.8.9</d=
iv><div style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/5.8.8/i3=
86-freebsd</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/5.8.8</d=
iv><div style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/5.8.7/i3=
86-freebsd</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>/usr/local/lib/perl5/5.8.7</d=
iv><div style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>.</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">*** =
Packages of interest status:</div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Apache2<span =
class=3D"Apple-converted-space">          =
  </span>: -</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">Apache2::Request <span =
class=3D"Apple-converted-space">  </span>: -</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">CGI<span class=3D"Apple-converted-space">  =
              </span>: 3.45</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">ExtUtils::MakeMaker: 6.48, 6.54, 6.55_02</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">LWP<span class=3D"Apple-converted-space">  =
              </span>: =
5.831</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">mod_perl <span =
class=3D"Apple-converted-space">          =
</span>: -</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">mod_perl2<span =
class=3D"Apple-converted-space">          =
</span>: -</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">3. This =
is the core dump trace: (if you get a core dump):</div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; min-height: 14px; "><br></div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span =
class=3D"Apple-converted-space"> </span>[CORE TRACE COMES =
HERE]</div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><br></div><div =
style=3D"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; =
margin-left: 0px; ">This report was generated by t/REPORT on Sun Aug 30 =
04:28:22 2009 GMT.</div><div style=3D"margin-top: 0px; margin-right: =
0px; margin-bottom: 0px; margin-left: 0px; min-height: 14px; =
"><br></div><div style=3D"margin-top: 0px; margin-right: 0px; =
margin-bottom: 0px; margin-left: 0px; ">-------------8<---------- End =
Bug Report --------------8<----------</div><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div> </blockquote></blockquote><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div> </blockquote><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div> </blockquote></blockquote><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div><div style=3D"margin-top: 0px; =
margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: =
14px; "><br></div> </blockquote></blockquote><div style=3D"margin-top: =
0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; =
min-height: 14px; "><br></div> </blockquote></div><br></body></html>=

--Apple-Mail-1-822054933--
Craig MacKenna [ Mi, 02 September 2009 04:47 ] [ ID #2014353 ]

Re: Fwd: Undefined symbol "Perl_pad_sv" building mp2

craig [at] animalhead.com wrote:
>>
>> I have always included previous perl libraries in the [at] INC of
>> new builds. And it has always worked, with the single
>> exception of building mod_perl2 this time. All of the perl
>> scripts and modules on my site work well under the new 5.10.1.

Pure Perl modules should work between versions (they might have some new
warnings, but they should work), but anything with XS (C code) isn't guaranteed
to work across major versions. So when you've upgraded between say 5.8.2 and
5.8.7 you wouldn't need to re-install. But when upgrading from 5.8.X to 5.10.X
you will need to re-install.

>> Aside from the pain of re-downloading all kinds of modules
>> as they prove to be needed over the next year or so, I know
>> there are items in the 5.8.7 libraries from my Internet
>> Hosting Provider, that are needed to run software from the IHP.

If you need 5.8.7 libs that you can't re-compile against 5.10.1 then just stick
with 5.8.7.

>> I don't see a command to tell the mod_perl build process to
>> use a particular perl. If I say $perl_other Makefile.PL
>> in the modperl-2.x directory, does that do it?

Yes, the perl you use when you run the Makefile.PL is the one that's used in the
compilation of mod_perl.

--
Michael Peters
Plus Three, LP
mpeters [ Mi, 02 September 2009 15:21 ] [ ID #2014359 ]

Re: Undefined symbol "Perl_pad_sv" building mp2

On Sep 2, 2009, at 6:21 AM, Michael Peters wrote:

> craig [at] animalhead.com wrote:
>>>
>>> I have always included previous perl libraries in the [at] INC of
>>> new builds. And it has always worked, with the single
>>> exception of building mod_perl2 this time. All of the perl
>>> scripts and modules on my site work well under the new 5.10.1.
>
> Pure Perl modules should work between versions (they might have
> some new warnings, but they should work), but anything with XS (C
> code) isn't guaranteed to work across major versions. So when
> you've upgraded between say 5.8.2 and 5.8.7 you wouldn't need to re-
> install. But when upgrading from 5.8.X to 5.10.X you will need to
> re-install.

If you aren't up to being rigorous, be lucky: everything (except
mod_perl build, see crossed email with "resolved" in title) works
for me so far. Hopefully most modules for which this would be an
issue are covered by upgrades, which get installed at the top
(5.10.1) level.

What does make problems is that CPAN sometimes deletes modules
in an earlier-version directory when installing a new module
in the current-version directory. This tends to break the
lower-level perl w/r/t module availability. So I copy the
earlier-version directories before an upgrade session, and
run a "sync" program thereafter.
>
>>> Aside from the pain of re-downloading all kinds of modules
>>> as they prove to be needed over the next year or so, I know
>>> there are items in the 5.8.7 libraries from my Internet
>>> Hosting Provider, that are needed to run software from the IHP.
>
> If you need 5.8.7 libs that you can't re-compile against 5.10.1
> then just stick with 5.8.7.
>
I had a case like that in the current transition: my IHP's CGI
control panel works under 5.8.9 but logs taint warnings under
5.10.1. So I just ran a script that changed all of its bang
lines to 5.8.9. Sometimes one has to admit that life is too
short to tilt with every problem.

>>> I don't see a command to tell the mod_perl build process to
>>> use a particular perl. If I say $perl_other Makefile.PL
>>> in the modperl-2.x directory, does that do it?
>
> Yes, the perl you use when you run the Makefile.PL is the one
> that's used in the compilation of mod_perl.
>
Thank you for this valuable information! It should be in the
mod-perl documentation. (Bet it's not in there now, I looked
pretty hard.) Hope someone who can do that reads this suggestion.
> --
> Michael Peters
> Plus Three, LP
Craig MacKenna [ Mi, 02 September 2009 18:22 ] [ ID #2014360 ]
Webserver » gmane.comp.apache.mod-perl » Fwd: Undefined symbol "Perl_pad_sv" building mp2

Vorheriges Thema: Software caused connection abort at
Nächstes Thema: changing apache process name?