CVS log for ports/Mk/bsd.apache.mk
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.35: download - view: text, markup, annotated - select for diffs
Wed Jan 11 20:09:27 2012 UTC (4 weeks, 1 day ago) by ohauer
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +4 -7 lines
- no need to strip `.' in APACHE_VERSION_CHECK because `.' is no longer valid in APACHE_VERSION - make apache2x module cleanup more strict so addon modules will not remove LoadModule lines insert by apache2x. For example apache own proxy_scgi_module could be removed during deinstall of mod_scgi - remove apache13 module pkg-plist cleanup with hat apache@
Revision 1.34: download - view: text, markup, annotated - select for diffs
Sun Jan 1 19:30:33 2012 UTC (5 weeks, 4 days ago) by ohauer
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +9 -9 lines
- remove apache13 and ports depending on apache13 from portstree ( EXPIRATION_DATE=2012-01-01 ) with hat apache@
Revision 1.33: download - view: text, markup, annotated - select for diffs
Sun Nov 6 22:47:28 2011 UTC (3 months ago) by ohauer
Branches: MAIN
CVS tags: RELEASE_9_0_0
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +1 -5 lines
- adjust Note to reflect enforcement of USE_APACHE values
Revision 1.32: download - view: text, markup, annotated - select for diffs
Sun Nov 6 21:55:53 2011 UTC (3 months ago) by ohauer
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +5 -5 lines
- force usage of USE_APACHE values without '.' Examples: USE_APACHE= 22 # specify exact version USE_APACHE= 13+ # specify [min] version, no [max] version USE_APACHE= 13-22 # specify [min]-[max] range USE_APACHE= -22 # specify [max] version, no [min] version with hat apache@
Revision 1.31: download - view: text, markup, annotated - select for diffs
Sat Aug 20 18:58:52 2011 UTC (5 months, 3 weeks ago) by ohauer
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +4 -3 lines
- adjust USE_APACHE sample USE_APACHE value is preferred without "." since bsd.apache.mk has to rip out the "." for further processing. Support for "." in the value is taret for change.
Revision 1.30: download - view: text, markup, annotated - select for diffs
Sat Aug 20 17:21:38 2011 UTC (5 months, 3 weeks ago) by ohauer
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +3 -3 lines
- change default apache version to apache22 - make entry in UPDATING with hat apache@ PR: ports/147009
Revision 1.29: download - view: text, markup, annotated - select for diffs
Sun May 15 20:21:30 2011 UTC (8 months, 3 weeks ago) by ohauer
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +15 -1 lines
- document parameter APACHE_PORT PR: ports/153565 Submitted by: dougb
Revision 1.28: download - view: text, markup, annotated - select for diffs
Sun Apr 24 15:37:53 2011 UTC (9 months, 2 weeks ago) by ohauer
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +208 -93 lines
Mk/bsd.apache.mk was rewritten with a new logic and some new parameters to support future apache versions and the transition to apache22. Existing and new USE_APACHE* parameters: USE_APACHE set apache and apxs as build and run dependency USE_APACHE_BUILD set apache and apxs as build dependency USE_APACHE_RUN set apache and apxs as run dependency The following example is representative of all three possible parameters to use: USE_APACHE= 22 specify exact version USE_APACHE= 1.3+ specify [min] version, no [max] version USE_APACHE= 13-22 specify [min]-[max] range USE_APACHE= -2.2 specify [max] version, no [min] version Values can be specified with and without "." (dot) between major and minor version numbers. For example 22 is equal to 2.2 For documentation and full changelist please take a look into Mk/bsd.apache.mk or http://wiki.freebsd.org/bsd.apache.mk Commit with hat apache@ PR: ports/156533 Submitted by: ohauer
Revision 1.27: download - view: text, markup, annotated - select for diffs
Thu Mar 31 14:23:32 2011 UTC (10 months, 1 week ago) by ohauer
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +11 -6 lines
- add mod_substitute to apache22 - adjust some .endif comments With Hat: apache@
Revision 1.26: download - view: text, markup, annotated - select for diffs
Mon Jun 7 14:38:44 2010 UTC (20 months ago) by pgollucci
Branches: MAIN
CVS tags: RELEASE_8_2_0, RELEASE_8_1_0, RELEASE_7_4_0, RELEASE_6_EOL
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +3 -1 lines
- Provide a knob to not check the APACHE_PORT value or the installed version of httpd. Very useful for maintainers or for doing all the targets up to 'do-install' With Hat: apache@
Revision 1.25: download - view: text, markup, annotated - select for diffs
Tue May 25 20:59:42 2010 UTC (20 months, 2 weeks ago) by pgollucci
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +2 -2 lines
stray $
Revision 1.24: download - view: text, markup, annotated - select for diffs
Tue May 25 20:17:26 2010 UTC (20 months, 2 weeks ago) by pgollucci
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +5 -2 lines
Mk/bsd.apache.mk can not sufficiently alter things before Mk/bsd.options.mk
in Mk/bsd.ports.mk due to ordering in Mk/bsd.port.mk. This causes OPTIONSFILE
to be incorrectly set during some make phases as a result of the recent
PKGNAMEPREFIX for apache ports.
'Revert' some of the PKGNAMEPREFIX changes for apXX-.
- Must be manually requested in tbe port Makefile either by
a) AP_FAST_BUILD=yes
b) PKGNAMEPREFIX=${APACHE_PKGNAMEPREFIX}
- Going forward, we will only do this for ports where WITH_APACHE
is NOT optional, but required. mod_* ports are a good fit.
141 ports are mod_ ports
80 of those use AP_FAST_BUILD and thus are auto hooked by this patch [a].
61 remaining are then patched to mirror the other $lang frameworks [b].
PR: ports/146956
Reported by: Hans F. Nordhaug <Hans.F.Nordhaug@hiMolde.no>, several
Discussed with: pav, itectu on #bsdports
Tested by: P6 TB run
Approved by: portmgr (pav)
Revision 1.23: download - view: text, markup, annotated - select for diffs
Thu May 20 21:43:47 2010 UTC (20 months, 3 weeks ago) by pgollucci
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -2 lines
- Enable,build, and install mod_reqtimeout.so which mitigates solaris attacks. - Default on, so bump PORTREVISION Reuested by: Jonas Eckerman <jonas@fsdb.org> (via apache@) With Hat: apache@
Revision 1.22: download - view: text, markup, annotated - select for diffs
Wed May 19 23:01:04 2010 UTC (20 months, 3 weeks ago) by pgollucci
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +8 -49 lines
*****************************************************************************
Implement PKGNAMEPREFIX=ap13|ap20|ap22
*****************************************************************************
- Create packages for USE_APACHE=x ports with PKGNAMEPREFIX [1]
- Rephrase IGNORE statement, kill EOL spaces, reformat in Mk/bsd.apache.mk [2]
- Remove USE_APACHE=yes, USE_APACHE=apr, and APR_DEPS=foo
- Remove APACHE_COMPAT=X
- Drop support for 21 [dev only release, not in tree for years now]
PR: ports/115461 [1], ports/133197 [2], ports/141688
Submitted by: myself (pgollucci@),
Alexey Rubtsov <arubtsov@swsoft.com> [1],
dafne [2]
Requested by: Several [1]
Tested by: 2 -exp runs by pav
Approved by: portmgr (pav)
With Hat: apache@
Revision 1.21: download - view: text, markup, annotated - select for diffs
Wed May 5 22:26:30 2010 UTC (21 months ago) by pgollucci
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -2 lines
- Make the SLAVE_DESIGNED_FOR message more useful and say what versions didn't match. Changes message text only. With Hat: apache@
Revision 1.20: download - view: text, markup, annotated - select for diffs
Mon Dec 14 00:16:25 2009 UTC (2 years, 1 month ago) by pgollucci
Branches: MAIN
CVS tags: RELEASE_7_3_0
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +3 -2 lines
- Fix builds that enable PROXY support. This should have been part of the following previous commit to www/apache22 >- OPTIONS+= PROXY_SCGI > >PR: ports/140137 >Submitted by: olli hauer <ohauer@gmx.de>
Revision 1.19: download - view: text, markup, annotated - select for diffs
Wed Sep 19 21:03:59 2007 UTC (4 years, 4 months ago) by clement
Branches: MAIN
CVS tags: RELEASE_8_0_0, RELEASE_7_2_0, RELEASE_7_1_0, RELEASE_7_0_0, RELEASE_6_4_0, RELEASE_6_3_0, RELEASE_5_EOL
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -2 lines
- Avoid "OPTIONS blackhole" during 'make make-options-list'
Revision 1.18: download - view: text, markup, annotated - select for diffs
Tue Sep 18 20:01:17 2007 UTC (4 years, 4 months ago) by clement
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +4 -4 lines
- cosmetic changes - s/OPTIONS=/OPTIONS+=/
Revision 1.17: download - view: text, markup, annotated - select for diffs
Sun Sep 9 14:36:42 2007 UTC (4 years, 5 months ago) by clement
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +31 -6 lines
- fix pre/post includes for USE_APACHE=common*
We still perform a double inclusion for modules to ensure backward
compatibility
- add "Apache servers"-wide support for OPTIONS.
!! Warning !!
If OPTIONS is defined, all other modes to select modules are disabled.
Here's the logic behind:
1) OPTIONS
2) WITH_MODULES
3) all others knobs.
OPTIONS'ified list of modules can be obtained via:
"make make-options-list"
Revision 1.16: download - view: text, markup, annotated - select for diffs
Sun Jul 22 12:43:00 2007 UTC (4 years, 6 months ago) by clement
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +5 -5 lines
- Fix index build: temporary remove pre/post stuff. Pointy Hat to: clement
Revision 1.15: download - view: text, markup, annotated - select for diffs
Sun Jul 22 10:48:42 2007 UTC (4 years, 6 months ago) by clement
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +16 -6 lines
- fix long standing bugs * fix pre/post includes * fix local port overiding for apache > 2.1 * Add a short notr about USE_APACHE=yes
Revision 1.14: download - view: text, markup, annotated - select for diffs
Thu Jun 28 15:50:53 2007 UTC (4 years, 7 months ago) by pav
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2 lines
- Fix leftover httpd.conf for AP_GEN_PLIST using ports. The problem is that apxs does not remove module line from httpd.conf, it merely comments it out. Later, on Apache deinstall, the file differs from stock httpd.conf and is not deleted. Tested by: pointyhat exprun
Revision 1.13: download - view: text, markup, annotated - select for diffs
Tue Nov 7 09:11:53 2006 UTC (5 years, 3 months ago) by clement
Branches: MAIN
CVS tags: RELEASE_4_EOL, PRE_XORG_7
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2 lines
- s/WITH_SUEXEC_UMASK/SUEXEC_UMASK/ Spotted by: ksaveras.sakys@observer.lt
Revision 1.12: download - view: text, markup, annotated - select for diffs
Tue Jun 20 04:58:12 2006 UTC (5 years, 7 months ago) by linimon
Branches: MAIN
CVS tags: RELEASE_6_2_0
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -2 lines
Fix typo in IGNORE message.
Revision 1.11: download - view: text, markup, annotated - select for diffs
Thu May 11 15:21:22 2006 UTC (5 years, 9 months ago) by clement
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +6 -2 lines
- Add APACHEETCDIR to catch apache etc directory. It can't be used with USE_APACHE=yes Requested by: pav, tmclaugh
Revision 1.10: download - view: text, markup, annotated - select for diffs
Sun Apr 30 16:38:07 2006 UTC (5 years, 9 months ago) by clement
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +9 -3 lines
- We have to explicitely disable proxy modules to avoid auto activation of non desired proxy modules with WITH_CUSTOM_PROXY PR: ports/95728 Submitted by: Tetsuya Uemura <t_uemura@macome.co.jp>
Revision 1.9: download - view: text, markup, annotated - select for diffs
Thu Feb 23 20:46:10 2006 UTC (5 years, 11 months ago) by clement
Branches: MAIN
CVS tags: RELEASE_6_1_0, RELEASE_5_5_0
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -2 lines
- Fix USE_APACHE=22 Approved by: portmgr (self) Spotted by: Larry Rosenman <ler at lerctr dot org>
Revision 1.8: download - view: text, markup, annotated - select for diffs
Sun Jan 15 18:58:37 2006 UTC (6 years ago) by clement
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +12 -1 lines
Cleanups and fixes - remove useless options (and fix thread stuff) [1] - move print-closest-mirror to bsd.apache.mk - move threads configure options out of Makefile.modules - Fix stupid logic to disable v4mapped address [2] - and more... Submitted/spotted by: many, Hirohisa Yamaguchi <umq@ueo.co.jp> [1] ume[2] PR: ports/91813 [1]
Revision 1.7: download - view: text, markup, annotated - select for diffs
Sat Jan 14 13:42:56 2006 UTC (6 years ago) by clement
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +35 -5 lines
- Fix some suexec CONFIGURE_ARGS for 1.3.x - add show-categories and show-modules targets, for server ports. Remove these targets from www/apache22/Makefile
Revision 1.6: download - view: text, markup, annotated - select for diffs
Wed Dec 7 20:54:41 2005 UTC (6 years, 2 months ago) by clement
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +3 -3 lines
- Add forgotten mod_filter Spotted by: Cheese Lottery <cheeselottery@gmail.com>
Revision 1.5: download - view: text, markup, annotated - select for diffs
Sun Dec 4 17:13:42 2005 UTC (6 years, 2 months ago) by clement
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +11 -8 lines
- export APACHEMODDIR and APACHEINCLUDEDIR to Makefile-land - remove duplicated "code"
Revision 1.4: download - view: text, markup, annotated - select for diffs
Sun Dec 4 14:08:54 2005 UTC (6 years, 2 months ago) by clement
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2 lines
- Fix a condition in bsd.apache.mk - all apache 1.3 only modules maintained by apache@ are now bsd.apache.mk compliant
Revision 1.3: download - view: text, markup, annotated - select for diffs
Sun Dec 4 00:18:07 2005 UTC (6 years, 2 months ago) by clement
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +4 -5 lines
- prepare removal of www/apache2 in favor of www/apache20 for naming consistency - add entries in UPDATING (for apache22 too) PR: ports/78119 Repocopied by: marcus
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat Dec 3 21:28:41 2005 UTC (6 years, 2 months ago) by clement
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +16 -5 lines
- Add support for upcoming www/apache22 port
Revision 1.1: download - view: text, markup, annotated - select for diffs
Tue Nov 8 09:02:51 2005 UTC (6 years, 3 months ago) by clement
Branches: MAIN
* Add bsd.database.mk [1]
- move out from bsd.port.mk USE_MYSQL and USE_PGSQL.
- add support for Berkley DB and SQLite (via USE_BDB and USE_SQLITE
knobs).
* Espace '+' in make search [2]
* Add "makepatch" target to simplify creation of patches during porting [3]
* Replace deprecated MACHINE_ARCH with ARCH [4]
* Remove support of OpenLDAP 2.1 [5]
* Add bsd.tcl.mk [6]
It introduces USE_TCL/USE_TCL_BUILD knobs to support various
version of tcl (8.0 -> 8.4)
* Fix cosmetic bugs in security-check target [7]
* Add support for INDEX-7 and above (up to INDEX-9 actually) [8]
* Add "package-recursive" to bsd.port.subdir.mk [9]
* Remove check for FreeBSD version < 460101 [10]
* New category: net-im [11]
* Add .desktop file facilities
It introduces DESKTOPDIR and DESKTOP_ENTRIES knobs [12]
* Add SHA256 support to "*checksum" targets [13]
* Fix USE_PYTHON with OPTIONS [14]
* Force NO_LINT to MAKE_ENV to avoid library breaks [15]
* Fix typo: s/RC_ORDER/USE_RCORDER/g [16]
* Add support for PostgreSQL 8.1 [17]
* Add bsd.apache.mk
USE_APACHE knob enhancements [18]
PR: ports/85695 [1], ports/85669 [2], ports/85488 [3],
ports/84489 [4], ports/83835 [5], ports/83718 [6],
ports/83716 [7], ports/83710 [8], ports/82753 [9],
ports/82138 [10], ports/81206 [11], ports/79509 [12],
ports/79123 [13], ports/74866 [14], ports/85490 [15],
ports/83514 [16], ports/88466 [17]
Submitted by: vsevolod [1] [6], Ricardo Alves dos Reis
<ricardo_bsd@yahoo.com.br> [2], markm [3] [15], obrien [4],
krion [5] [8] , Petr Rehor <prehor@gmail.com> [7],
clement [8] [18], jhs@berklix.org [9], edwin [10] [13],
pav [11], jylefort [12], mnag [14], leeym [16], girgen [17]
