aboutsummaryrefslogtreecommitdiff
path: root/www/mod_backtrace
Commit message (Collapse)AuthorAgeFilesLines
* www/mod_backtrace: Deprecate and set expiration date to 2022-03-31Daniel Engberg2021-10-101-0/+3
| | | | | | | | | Abandoned upstream, last release 7 years ago Reference: https://emptyhammock.com/projects/httpd/diag/ Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D32394
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* www/*: Use NO_WRKSUBDIRTobias Kortkamp2019-02-021-1/+1
| | | | Notes: svn path=/head/; revision=491915
* Migrate USE_APACHE to USES= apache (category www)Bernard Spil2018-03-111-1/+1
| | | | | | | | | - Following migration of Mk/bsd.apache.mk to Mk/Uses/apache.mk With hat: apache Notes: svn path=/head/; revision=464189
* Remove USES=execinfo.Mathieu Arnold2017-09-221-1/+0
| | | | | | | | | | PR: 220271 Submitted by: mat (review), Yasuhiro KIMURA (PR) Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D11488 Notes: svn path=/head/; revision=450351
* Remove libpcre.so.3 compatibility link that was added in r374303 toTijl Coosemans2016-12-081-1/+1
| | | | | | | | prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since. Notes: svn path=/head/; revision=428143
* - Fix trailing whitespace in pkg-descrs, categories [p-x]*Dmitry Marakasov2016-05-191-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415500
* Switch to USES=execinfoPawel Pekala2015-12-301-2/+1
| | | | | | | | | PR: 205410 Submitted by: myself Approved by: maintainer Notes: svn path=/head/; revision=404866
* Correct a silly-looking typo.Adam Weinberger2014-09-071-1/+1
| | | | | | | Noticed by: vanilla Notes: svn path=/head/; revision=367559
* Specify the reason for MANUAL_PACKAGE_BUILD, not "yes"Adam Weinberger2014-09-071-1/+1
| | | | Notes: svn path=/head/; revision=367557
* - add stage supportOlli Hauer2014-03-091-4/+5
| | | | | | | | - add LICENSE - adopt new LIB_DEPENDS syntax Notes: svn path=/head/; revision=347568
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | www) Notes: svn path=/head/; revision=327776
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* - remove www/apache20 and devel/apr0Olli Hauer2012-08-181-3/+3
| | | | | | | | | | | | - s/USE_APACHE= 20+/USE_APACHE= 22+/ - unify s/YES/yes/ - cleanup APACHE_VERSION <= 22 usage - add entry to MOVED with hat apache@ Notes: svn path=/head/; revision=302724
* - bump PORTREVISION from ports if USE_APACHE=13+ or 20+ is definedOlli Hauer2011-08-201-0/+1
| | | | Notes: svn path=/head/; revision=280086
* - Mark manual package builds b/c of httpd configure requirementsPhilip M. Gollucci2010-11-111-0/+1
| | | | Notes: svn path=/head/; revision=264386
* mod_backtrace is an experimental module for Apache httpd 2.x whichPhilip M. Gollucci2010-11-113-0/+69
collects backtraces when a child process crashes. Currently it is implemented only on Linux and FreeBSD, but other platforms could be supported in the future. Requirements: Apache httpd >= 2.0.49 must be built with the --enable-exception-hook configure option and mod_so enabled. Activating mod_backtrace: 1. Load it like any other DSO: LoadModule backtrace_module modules/mod_backtrace.so 2. Enable exception hooks for modules like mod_backtrace: EnableExceptionHook On 3. Choose where backtrace information should be written. If you want backtraces from crashes to be reported some place other than the error log, use the BacktraceLog directive to specify a fully-qualified filename for the log to which backtraces will be written. Note that the web server user id (e.g., "nobody") must be able to create or append to this log file, as the log file is WWW: http://people.apache.org/~trawick/exception_hook.html PR: ports/151931 Submitted by: Frank Wall <fw at moov.de> Notes: svn path=/head/; revision=264383