Makefile revision 4881
80833bb9a1bf25dcf19e814438a4b311d2e1f4cffuankg# CDDL HEADER START
74e7a30182af5e68f14ccb8d57918b22b982db8bhumbedooh# The contents of this file are subject to the terms of the
74e7a30182af5e68f14ccb8d57918b22b982db8bhumbedooh# Common Development and Distribution License (the "License").
74e7a30182af5e68f14ccb8d57918b22b982db8bhumbedooh# You may not use this file except in compliance with the License.
10961a2f60207cb873d889bb28b1f0ef707a4311humbedooh# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
0d6de5fa49b60dc0bf81ea06afd079fa6c81df36sf# See the License for the specific language governing permissions
0d6de5fa49b60dc0bf81ea06afd079fa6c81df36sf# and limitations under the License.
0448378b899e8df0c060360f17c0af692adf17bchumbedooh# When distributing Covered Code, include this CDDL HEADER in each
0448378b899e8df0c060360f17c0af692adf17bchumbedooh# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
0448378b899e8df0c060360f17c0af692adf17bchumbedooh# If applicable, add the following below this CDDL HEADER, with the
55f964790f912f689867b385bd4ba164ab48c5cbsf# fields enclosed by brackets "[]" replaced with your own identifying
55f964790f912f689867b385bd4ba164ab48c5cbsf# information: Portions Copyright [yyyy] [name of copyright owner]
60a765cccbd3f3b5997b65b0034220c79f78369etrawick# CDDL HEADER END
60a765cccbd3f3b5997b65b0034220c79f78369etrawick# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
1ec73fc12d4912ea9f4841c301458454589b32d9trawickCOMPONENT_SRC= $(COMPONENT_SRC_NAME)-$(COMPONENT_VERSION)
0fdcfd7a51bf3028b0be879c43c009c16c6d3f58trawick sha256:77afdd50ca2624f7d78832b1e92f34e4df293328ec59fd0e3f6cdedf67ac0c7f
1ec73fc12d4912ea9f4841c301458454589b32d9trawickCOMPONENT_ARCHIVE_URL= http://archive.apache.org/dist/httpd/$(COMPONENT_ARCHIVE)
50f8c80eb4d3989ebf3f1341aeef4d2d302af162sf# Some patches need configure script re-creation.
7b395e4e878c28a4784919cfd2e704ddd14a3390jortonCOMPONENT_PREP_ACTION +=($(CP) mod_sed/* $(@D)/modules/filters);
7b395e4e878c28a4784919cfd2e704ddd14a3390jortonCOMPONENT_PREP_ACTION +=($(CP) mod_auth_gss/mod_auth_gss.c $(@D)/modules/aaa);
7b395e4e878c28a4784919cfd2e704ddd14a3390jortonCOMPONENT_PREP_ACTION +=($(CP) mod_auth_gss/mod_auth_gss.html $(@D)/docs/manual/mod);
53e9b27aba029b18be814df40bcf6f0428771d1efuankg$(VARIANT_PREFORK)/%/.configured: CONFIGURE_OPTIONS += --with-mpm=prefork
6bb524f1895f30265a1431afc460977d391cb36bsf$(VARIANT_WORKER)/%/.configured: CONFIGURE_OPTIONS += --with-mpm=worker
ca61ccd0c306c2c72df153688ba1b49f3eceed80sf# pipefail wouldn't allow APR-util version check
ae600ca541efc686b34f8b1f21bd3d0741d37674covenerCONFIGURE_OPTIONS += CFLAGS="$(CFLAGS) -DSSL_EXPERIMENTAL -DSSL_ENGINE"
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingCONFIGURE_OPTIONS.32 += --enable-layout=Solaris-Apache2
74499a117b3b2cd9666715a14f90c0e5d1a4ee8ajimCONFIGURE_OPTIONS.64 += --enable-layout=Solaris-Apache2-$(MACH64)
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingCONFIGURE_OPTIONS.32 += --with-apr=/usr/apr/1.5/bin/apr-1-config
74499a117b3b2cd9666715a14f90c0e5d1a4ee8ajimCONFIGURE_OPTIONS.64 += --with-apr=/usr/apr/1.5/bin/$(MACH64)/apr-1-config
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingCONFIGURE_OPTIONS.32 += --with-apr-util=/usr/apr-util/1.5/bin/apu-1-config
74499a117b3b2cd9666715a14f90c0e5d1a4ee8ajimCONFIGURE_OPTIONS.64 += --with-apr-util=/usr/apr-util/1.5/bin/$(MACH64)/apu-1-config
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingCONFIGURE_OPTIONS.32 += --with-pcre=/usr/bin/pcre-config
74499a117b3b2cd9666715a14f90c0e5d1a4ee8ajimCONFIGURE_OPTIONS.64 += --with-pcre=/usr/bin/$(MACH64)/pcre-config
test: $(NO_TESTS)