Andreas Wacknitz
2024-04-05 5a9394761a76843883ab7b09d15c336324e2be13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
 
#
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2019, Michal Nowak
# Copyright (c) 2023, Niklas Poslovski
#
 
OPENSSL_VERSION= 3.1
include ../../../make-rules/shared-macros.mk
 
COMPONENT_NAME=        apache2
COMPONENT_VERSION=    2.4.59
COMPONENT_PROJECT_URL=    https://httpd.apache.org/
COMPONENT_SRC_NAME=    httpd
COMPONENT_SRC=        $(COMPONENT_SRC_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=    $(COMPONENT_SRC).tar.gz
COMPONENT_ARCHIVE_HASH= sha256:e4ec4ce12c6c8f5a794dc2263d126cb1d6ef667f034c4678ec945d61286e8b0f
COMPONENT_ARCHIVE_URL=    https://archive.apache.org/dist/httpd/$(COMPONENT_ARCHIVE)
 
CONFIGURE_DEFAULT_DIRS= no
 
TEST_TARGET= $(NO_TESTS)
include $(WS_MAKE_RULES)/common.mk
 
PATCH_LEVEL= 0
 
# Some patches need configure script re-creation.
COMPONENT_PREP_ACTION +=($(CP) mod_auth_gss/mod_auth_gss.c $(@D)/modules/aaa);
COMPONENT_PREP_ACTION +=($(CP) mod_auth_gss/mod_auth_gss.html $(@D)/docs/manual/mod);
COMPONENT_PREP_ACTION +=(cd $(@D); autoreconf);
 
CFLAGS += -DSSL_EXPERIMENTAL -DSSL_ENGINE
 
# pipefail wouldn't allow APR-util version check
CONFIGURE_ENV += SHELLOPTS=
 
CONFIGURE_PREFIX =    /usr/apache2/2.4
 
CONFIGURE_OPTIONS +=    --enable-mods-shared=all
CONFIGURE_OPTIONS +=    --enable-mpms-shared=all
CONFIGURE_OPTIONS +=    --enable-so
CONFIGURE_OPTIONS +=    --enable-suexec
CONFIGURE_OPTIONS +=    --with-suexec-caller=webservd
CONFIGURE_OPTIONS +=    --enable-proxy
CONFIGURE_OPTIONS +=    --enable-proxy-connect
CONFIGURE_OPTIONS +=    --enable-proxy-ftp
CONFIGURE_OPTIONS +=    --enable-proxy-http
CONFIGURE_OPTIONS +=    --enable-proxy-ajp
CONFIGURE_OPTIONS +=    --enable-proxy-balancer
CONFIGURE_OPTIONS +=    --enable-cache
CONFIGURE_OPTIONS +=    --enable-file-cache
CONFIGURE_OPTIONS +=    --enable-disk-cache
CONFIGURE_OPTIONS +=    --enable-mem-cache
CONFIGURE_OPTIONS +=    --enable-brotli
CONFIGURE_OPTIONS +=    --enable-deflate
CONFIGURE_OPTIONS +=    --enable-cgid
CONFIGURE_OPTIONS +=    --enable-cgi
CONFIGURE_OPTIONS +=    --enable-authnz-ldap
CONFIGURE_OPTIONS +=    --enable-ldap
CONFIGURE_OPTIONS +=    --enable-ssl
CONFIGURE_OPTIONS +=    --enable-exception-hook
CONFIGURE_OPTIONS +=    LTFLAGS="--silent --tag=CC"
CONFIGURE_OPTIONS +=    --enable-layout=Solaris-Apache2
CONFIGURE_OPTIONS +=    CC="$(CC) -m$(BITS)"
CONFIGURE_OPTIONS +=    --with-apr=/usr/apr/bin/apr-1-config
CONFIGURE_OPTIONS +=    --with-apr-util=/usr/apr-util/bin/apu-1-config
 
install: $(INSTALL_64)
    # Some files installed in proto area need to be fixed.
    $(KSH93) Solaris/customization.sh $(PROTO_DIR)
    $(TOUCH) $(BUILD_DIR)
 
# Auto-generated dependencies
REQUIRED_PACKAGES += SUNWcs
REQUIRED_PACKAGES += library/apr
REQUIRED_PACKAGES += library/apr-util
REQUIRED_PACKAGES += library/apr-util/apr-ldap
REQUIRED_PACKAGES += library/apr-util/dbd-mysql
REQUIRED_PACKAGES += library/apr-util/dbd-sqlite
REQUIRED_PACKAGES += library/brotli
REQUIRED_PACKAGES += library/libxml2
REQUIRED_PACKAGES += library/nghttp2
REQUIRED_PACKAGES += library/openldap
REQUIRED_PACKAGES += library/pcre2
REQUIRED_PACKAGES += library/security/openssl-31
REQUIRED_PACKAGES += library/zlib
REQUIRED_PACKAGES += runtime/lua
REQUIRED_PACKAGES += runtime/perl
REQUIRED_PACKAGES += shell/ksh93
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += system/library/math
REQUIRED_PACKAGES += system/library/security/gss