svn commit: r1503135 - /perl/modperl/branches/httpd24/xs/APR/APR/Makefile.PL

2013-07-15 Thread stevehay
Author: stevehay Date: Mon Jul 15 08:34:26 2013 New Revision: 1503135 URL: http://svn.apache.org/r1503135 Log: Fix the problem of "-laprutil-1" not being found when running xs/APR/APR/Makefile.PL on Windows The Apache2::Build module provides apache_libs() which locates this library (and others,

svn commit: r1503136 - /perl/modperl/branches/httpd24/src/modules/perl/modperl_apache_includes.h

2013-07-15 Thread stevehay
Author: stevehay Date: Mon Jul 15 08:36:46 2013 New Revision: 1503136 URL: http://svn.apache.org/r1503136 Log: Fix a linker error when building Apache2::Provider The symbol ap_register_provider was not being found even though it is exported from libhttpd.lib, which was being linked against. The

svn commit: r1503137 - /perl/modperl/branches/httpd24/xs/maps/apache2_functions.map

2013-07-15 Thread stevehay
Author: stevehay Date: Mon Jul 15 08:40:24 2013 New Revision: 1503137 URL: http://svn.apache.org/r1503137 Log: Fix linker error when building Apache2::ServerUtil The symbol ap_get_server_version was not being found because as noted in ap_mmn.h that function was replaced by ap_get_server_banner a

svn commit: r1503154 - /perl/modperl/branches/httpd24/src/modules/perl/modperl_apache_includes.h

2013-07-15 Thread stevehay
Author: stevehay Date: Mon Jul 15 09:41:25 2013 New Revision: 1503154 URL: http://svn.apache.org/r1503154 Log: Correction to r1503136. The httpd header file ap_provider.h is not in httpd-2.2, as pointed out by Jan Kaluza. Modified: perl/modperl/branches/httpd24/src/modules/perl/modperl_apac

svn commit: r1503171 - /perl/modperl/branches/httpd24/src/modules/perl/modperl_util.c

2013-07-15 Thread jkaluza
Author: jkaluza Date: Mon Jul 15 10:46:21 2013 New Revision: 1503171 URL: http://svn.apache.org/r1503171 Log: Use 'const char *' instead of 'char *' in modperl_util.c, do not try to get interp_pool in perl_parse_require_line if we don't have the proper key for this require line in global_authz_pr

svn commit: r1503193 - in /perl/modperl/branches/httpd24/src/modules/perl: modperl_interp.c modperl_util.c

2013-07-15 Thread jkaluza
Author: jkaluza Date: Mon Jul 15 12:03:58 2013 New Revision: 1503193 URL: http://svn.apache.org/r1503193 Log: Return NULL in modperl_interp_pool_select in case scfg->mip is not defined. Handle that situation in modperl_util. Modified: perl/modperl/branches/httpd24/src/modules/perl/modperl_int

svn commit: r1503215 - /perl/modperl/branches/httpd24/src/modules/perl/modperl_util.c

2013-07-15 Thread stevehay
Author: stevehay Date: Mon Jul 15 12:54:23 2013 New Revision: 1503215 URL: http://svn.apache.org/r1503215 Log: Restore the early return in perl_parse_require_line() if the key is not found (as per 1503171), and only call modperl_interp_pool_select() if USE_ITHREADS is #defined. Modified: per