> cat /etc/issue
Red Hat Enterprise Linux Server release 6.6 (Santiago)
> uname -a
Linux xxxx.xxx.xxx.xx 2.6.32-504.16.2.el6.x86_64 #1 SMP Tue Mar 10 17:01:00 EDT
2015 x86_64 x86_64 x86_64 GNU/Linux
> perl -V
Summary of my perl5 (revision 5 version 20 subversion 2) configuration:
Platform:
osname=linux, osvers=2.6.32-504.12.2.el6.x86_64,
archname=x86_64-linux-thread-multi
uname='linux xxxx.xxx.xxx.xx 2.6.32-504.12.2.el6.x86_64 #1 smp sun feb 1
12:14:02 est 2015 x86_64 x86_64 x86_64 gnulinux '
config_args='-Dcc=gcc -Dusethreads -Dprefix=/usr/local -des -A
ccflags=-fPIC'
hint=recommended, useposix=true, d_sigaction=define
useithreads=define, usemultiplicity=define
use64bitint=define, use64bitall=define, uselongdouble=undef
usemymalloc=n, bincompat5005=undef
Compiler:
cc='gcc', ccflags ='-D_REENTRANT -D_GNU_SOURCE -fPIC -fwrapv
-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
optimize='-O2',
cppflags='-D_REENTRANT -D_GNU_SOURCE -fPIC -fwrapv -fno-strict-aliasing
-pipe -fstack-protector -I/usr/local/include'
ccversion='', gccversion='4.4.7 20120313 (Red Hat 4.4.7-11)',
gccosandvers=''
intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
ivtype='long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t',
lseeksize=8
alignbytes=8, prototype=define
Linker and Libraries:
ld='gcc', ldflags =' -fstack-protector -L/usr/local/lib'
libpth=/usr/local/lib /usr/lib /lib/../lib64 /usr/lib/../lib64 /lib /lib64
/usr/lib64 /usr/local/lib64
libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lpthread -lc
perllibs=-lnsl -ldl -lm -lcrypt -lutil -lpthread -lc
libc=libc-2.12.so, so=so, useshrplib=false, libperl=libperl.a
gnulibc_version='2.12'
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E'
cccdlflags='-fPIC', lddlflags='-shared -O2 -L/usr/local/lib
-fstack-protector'
Characteristics of this binary (from libperl):
Compile-time options: HAS_TIMES MULTIPLICITY PERLIO_LAYERS
PERL_DONT_CREATE_GVSV
PERL_HASH_FUNC_ONE_AT_A_TIME_HARD
PERL_IMPLICIT_CONTEXT PERL_MALLOC_WRAP
PERL_NEW_COPY_ON_WRITE PERL_PRESERVE_IVUV
USE_64_BIT_ALL USE_64_BIT_INT USE_ITHREADS
USE_LARGE_FILES USE_LOCALE USE_LOCALE_COLLATE
USE_LOCALE_CTYPE USE_LOCALE_NUMERIC USE_PERLIO
USE_PERL_ATOF USE_REENTRANT_API
Built under linux
Compiled at Mar 27 2015 14:50:02
@INC:
/usr/local/lib/perl5/site_perl/5.20.2/x86_64-linux-thread-multi
/usr/local/lib/perl5/site_perl/5.20.2
/usr/local/lib/perl5/5.20.2/x86_64-linux-thread-multi
/usr/local/lib/perl5/5.20.2
/usr/local/lib/perl5/site_perl/5.18.2
/usr/local/lib/perl5/site_perl/5.18.0
/usr/local/lib/perl5/site_perl
All tests successful for "make test".
No errors loading external modules.
Regards,
Jie
* Steve Hay <[email protected]> wrote:
> Date: Wed, 13 May 2015 20:55:02 +0100
> From: Steve Hay <[email protected]>
> To: [email protected], "[email protected]" <[email protected]>
> Subject: [RELEASE CANDIDATE]: mod_perl-2.0.9 RC1
>
> Please download, test, and report back on this release candidate of
> the long-awaited mod_perl 2.0.9.
>
> http://people.apache.org/~stevehay/mod_perl-2.0.9-rc1.tar.gz
>
> MD5 = f4e5aa352aca25df31f86eb6503fe883
> SHA1 = db220c311b7848679a02ebec67ee41cc1334b460
>
> =item 2.0.9-rc1
>
> Add support for Apache httpd-2.4.x. [Torsten Foertsch, Jan Kaluza,
> Steve Hay, Gozer]
>
> Don't call modperl_threaded_mpm() et al. from XS code. Fixes Debian Bug
> #765174. [Niko Tyni <[email protected]>]
>
> Make sure modperl_interp_select uses r->server rather than the passed s
> parameter to find the interpreter pool to pull an interpreter from. This
> fixes an issue with vhosts with a separate interpreter pool and runtime
> dir-config merges that used to pull the interpreter from the wrong pool.
> [Torsten Foertsch]
>
> PerlInterpScope is now more advisory. Using $(c|r)->pnotes will bind
> the current interpreter to that object for it's lifetime.
> $(c|r)->pnotes_kill() can be used to prematurely drop pnotes and
> remove this binding. [Torsten Foertsch]
>
> Now correctly invokes PerlCleanupHandlers, even if they are the only
> handler type configured for that request [Torsten Foertsch]
>
> For threaded MPMs, change interpreter managment to a new, reference-counted
> allocation model. [Torsten Foertsch]
>
> Expose modperl_interp_pool_t via ModPerl::InterpPool, modperl_tipool_t
> via ModPerl::TiPool and modperl_tipool_config_t via ModPerl::TiPoolConfig
> [Torsten Foertsch]
>
> Expose modperl_interp_t via ModPerl::Interpreter [Torsten Foertsch]
>
> Fix t/compat/apache_file.t on Windows. Apache::File->tmpfile() wants TMPDIR
> or TEMP from the environment, or else defaults to /tmp. The latter is no
> good on Windows, so make sure the environment variables are passed through.
> (TEMP should be set to something suitable on Windows.) [Steve Hay]
>
> Fix t/api/err_headers_out.t with HTTP::Headers > 6.00. [Rolando
> <[email protected]>]
>
> Fix the build with VC++ and dmake (rather than nmake) on Windows. The
> Makefile generated by Apache2::Build uses shell commands for the manifest
> file, but neglected to tell dmake to use the shell. [Steve Hay]
>
> Don't write an 'rpm' target into the Makefile on Windows. It isn't relevant
> on Windows, and the (hard-coded, not MakeMaker-generated) recipe group has
> syntax which dmake doesn't understand. [Steve Hay]
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>