mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
21a283f3be
UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now, we won't have conflicts there. Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel has the correct PKGNAME anyway. Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called OPTIONS_FILE now.) Reviewed by: antoine, bapt Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3336
130 lines
3.8 KiB
Makefile
130 lines
3.8 KiB
Makefile
# $FreeBSD$
|
|
#
|
|
# Note by Clement Laforet: (to generate PLIST_SUB entries for modules)
|
|
# gsed 's/^\(.*\)mod\(.*\)\.so/%%\MOD\U\2%%\L\1mod\2\.so/' pkg-plist > tmp
|
|
# mv tmp pkg-plist
|
|
#
|
|
|
|
# =============================================
|
|
# Maintainer note for OPTION handling:
|
|
# To set additional option use
|
|
# PORT_OPTIONS+=
|
|
# To unset an OPTION, even the OPTION is set in OPTIONS_FILE use
|
|
# WITHOUT_MODULES+=
|
|
# Using OPTIONS_EXCLUDE and OPTIONS_OVERRIDE do not work as expected
|
|
# if the OPTION is enabled by the user, therefore we calculate
|
|
# them in bsd.apache.mk with help of WITHOUT_MODULES
|
|
# The other methode is to set IGNORE's and force the user to adjust OPTIONS
|
|
|
|
.if defined(_PREMKINCLUDED)
|
|
|
|
# check if APR-util module exists
|
|
.if exists(${APU_CONFIG})
|
|
. if ${PORT_OPTIONS:MLDAP} || ${PORT_OPTIONS:MAUTHNZ_LDAP}
|
|
. if !exists(${APU_LDAP})
|
|
IGNORE= LDAP and AUTHNZ_LDAP requires APR-util to have LDAP support built in.\
|
|
Please rebuild APR with LDAP support
|
|
. endif
|
|
. endif
|
|
|
|
. if ${PORT_OPTIONS:MSESSION_CRYPTO}
|
|
. if !exists(${APU_CRYPTO_OPENSSL}) && !exists(${APU_CRYPTO_NSS})
|
|
IGNORE= SESSION_CRYPTO requires APR-util to have crypto openssl support build in.\
|
|
Please rebuild APR with crypto openssl support
|
|
. endif
|
|
. endif
|
|
|
|
.endif # exists APU_CONFIG
|
|
|
|
# =============================================
|
|
# if build with shared MPM the last module will be activated
|
|
# see apache issue 53882
|
|
|
|
# XXX in case we use OPTIONS for MPM
|
|
# we do not have a WITH_MPM variable
|
|
.if ${PORT_OPTIONS:MMPM_SHARED}
|
|
SUB_LIST+= MPM_FALLBACK_CHECK=""
|
|
PLIST_SUB+= MPM_SHARED=""
|
|
CONFIGURE_ARGS+= --enable-mpms-shared=all
|
|
.else
|
|
SUB_LIST+= MPM_FALLBACK_CHECK="\#"
|
|
PLIST_SUB+= MPM_SHARED="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMPM_PREFORK}
|
|
CONFIGURE_ARGS+= --with-mpm=prefork
|
|
.elif ${PORT_OPTIONS:MMPM_WORKER}
|
|
CONFIGURE_ARGS+= --with-mpm=worker
|
|
.elif ${PORT_OPTIONS:MMPM_EVENT}
|
|
CONFIGURE_ARGS+= --with-mpm=event
|
|
.else
|
|
IGNORE= Unknown MPM:
|
|
.endif
|
|
# =============================================
|
|
|
|
# build develop/example modules only with additional confirmation
|
|
.for DEVMOD in ${EXAMPLE_MODULES}
|
|
. if ${PORT_OPTIONS:M${DEVMOD}}
|
|
WITH_DEVMODS= yes
|
|
. endif
|
|
.endfor
|
|
|
|
.if defined(WITH_DEVMODS) && !defined(IAMADEVELOPER )
|
|
IGNORE= to build the develop/example modules specify -DIAMADEVELOPER on the command line.\
|
|
Do not use the this modules in production environment
|
|
.endif
|
|
|
|
# The next three params are not converted to an option,
|
|
# they should be used only for special builds.
|
|
.if defined(WITH_STATIC_SUPPORT)
|
|
CONFIGURE_ARGS+= --enable-static-support
|
|
.endif
|
|
|
|
# debug overrides CFLAGS
|
|
.if defined(WITH_DEBUG)
|
|
DEBUG_FLAGS?= -O0 -g -ggdb3
|
|
CFLAGS= ${DEBUG_FLAGS}
|
|
CONFIGURE_ARGS+= --enable-maintainer-mode
|
|
WITH_EXCEPTION_HOOK= yes
|
|
.endif
|
|
|
|
.if defined(WITH_EXCEPTION_HOOK)
|
|
CONFIGURE_ARGS+= --enable-exception-hook
|
|
.endif
|
|
|
|
# watchdog modules
|
|
.if ! ${PORT_OPTIONS:MWATCHDOG} || ! ${PORT_OPTIONS:MSTATUS}
|
|
. if ${PORT_OPTIONS:MHEARTBEAT}
|
|
IGNORE= HEARTBEAT requires WATCHDOG and STATUS
|
|
. elif ${PORT_OPTIONS:MHEARTMONITOR}
|
|
IGNORE= HEARTMONITOR requires WATCHDOG and STATUS
|
|
. endif
|
|
.endif
|
|
.if ${PORT_OPTIONS:MLBMETHOD_HEARTBEAT} && ! ${PORT_OPTIONS:MHEARTMONITOR}
|
|
IGNORE= LBMETHOD_HEARTBEAT requires WATCHDOG, STATUS and HEARTMONITOR
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MAUTH_BASIC} || ${PORT_OPTIONS:MAUTH_DIGEST}
|
|
. if !${APACHE_MODULES:MAUTHN*}
|
|
IGNORE= AUTH_BASIC and AUTH_DIGEST need at least one AUTHN provider
|
|
. endif
|
|
.endif
|
|
|
|
. if ${PORT_OPTIONS:MAUTHN_DBD} && ! ${PORT_OPTIONS:MDBD}
|
|
IGNORE= AUTHN_DBD requires DBD
|
|
. endif
|
|
|
|
.if ${PORT_OPTIONS:MAUTH_BASIC}
|
|
. if !${APACHE_MODULES:MAUTHZ*}
|
|
IGNORE= AUTH_BASIC need at least one AUTHZ provider
|
|
. endif
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MXML2ENC} || ${PORT_OPTIONS:MPROXY_HTML}
|
|
CONFIGURE_ARGS+= --with-libxml2=${LOCALBASE}/include/libxml2
|
|
.else
|
|
CONFIGURE_ARGS+= --without-libxml2
|
|
.endif
|
|
|
|
.endif # _PREMKINCLUDED
|