mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
- install modules file instead activating the module with apxs RC2 has really gone a long way, and is a real candidate to become the next official release. Tested against apache22/24 MPM prefork/event/worker. Changes: ======== Remove PerlInterpScope. This has not been working properly with threaded MPMs with httpd-2.4.x and the use-case of this directive was questionable. [Jan Kaluza] Allow running the test suite with httpd-2.4.x when mod_access_compat is not loaded. [Steve Hay] 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 <ntyni@debian.org>] 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 <rolosworld@gmail.com>] with haed apache@
17 lines
588 B
Raku
17 lines
588 B
Raku
--- Makefile.PL.orig 2015-05-13 19:26:43 UTC
|
|
+++ Makefile.PL
|
|
@@ -731,11 +731,11 @@ modperl_lib:
|
|
cd "$(MODPERL_SRC)" && $(MAKE)
|
|
|
|
modperl_lib_install:
|
|
- cd "$(MODPERL_SRC)" && $(MAKE) DESTDIR=$(DESTDIR) install
|
|
+# cd "$(MODPERL_SRC)" && $(MAKE) DESTDIR=$(DESTDIR) install
|
|
|
|
modperl_xs_h_install:
|
|
- @$(MKPATH) $(DESTDIR)$(MODPERL_AP_INCLUDEDIR)
|
|
- $(CP) $(MODPERL_XS_H_FILES) $(DESTDIR)$(MODPERL_AP_INCLUDEDIR)
|
|
+# @$(MKPATH) $(DESTDIR)$(MODPERL_AP_INCLUDEDIR)
|
|
+# $(CP) $(MODPERL_XS_H_FILES) $(DESTDIR)$(MODPERL_AP_INCLUDEDIR)
|
|
|
|
modperl_src_clean:
|
|
cd "$(MODPERL_SRC)" && $(MAKE) clean
|