mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
d94172244d
- use OPTIONS_SUB instead PLIST_SUB - remove back ported patch - use POSIX instead SysV SHM - remove LDFLAGS from CONFIGURE_ENV (unbreak auto. testing) Changes for APR 1.5.1 *) apr_os_proc_mutex_get() on Unix: Avoid segfault for cross- process pthread mutexes. [Yann Ylavic <ylavic.dev gmail.com>] *) When using shmget-based shared memory, the ID used for ftok is now an APR hash of the filename instead of the constant '1'. We do this to help avoid collisions. PR 53996 [Jim Jagielski] *) apr_socket_atreadeof(): Fix breakage on OS X. [Jim Jagielski] *) Fix POSIX shared memory (shm_open) use for named shared memory. Includes adding '--enable-posix-shm' to force POSIX shm if available, and OS X compatibility. PR 55928. [Jozef Hatala <jh-asf skrt org>, Jim Jagielski] *) Fix race condition when calling apr_dir_make_recursive from multiple threads on Windows. [Bert Huijben] *) Fix apr_escape.c compilation errors on EBCDIC platforms. [Eric Covener] *) FreeBSD 10: Correct a regression in 1.5.0 which affected non- blocking sockets in some applications, including httpd. [Jeff Trawick] *) apr_skiplist: Add compatibility with C++ applications. [Jeff Trawick] *) Correct a regression in 1.5.0 which affected out-of-tree builds on Unix. [Rainer Jung] *) Improve platform detection for bundled expat by updating config.guess and config.sub. [Rainer Jung] with hat apache@
201 lines
4.9 KiB
Makefile
201 lines
4.9 KiB
Makefile
# Created by: Garrett Rooney <rooneg@electricjellyfish.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= apr
|
|
PORTVERSION= ${APR_VERSION}.${APU_VERSION}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_APACHE}
|
|
MASTER_SITE_SUBDIR= apr
|
|
DISTFILES= apr-${APR_VERSION}.tar.gz apr-util-${APU_VERSION}.tar.gz
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= Apache Portability Library
|
|
|
|
LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2
|
|
|
|
OPTIONS_SUB= yes
|
|
OPTIONS_GROUP= APR APU
|
|
OPTIONS_GROUP_APR= THREADS IPV6 DEVRANDOM
|
|
OPTIONS_GROUP_APU= BDB GDBM LDAP MYSQL NDBM PGSQL SQLITE FREETDS
|
|
OPTIONS_RADIO= CRYPTO
|
|
OPTIONS_RADIO_CRYPTO= SSL NSS
|
|
OPTIONS_DEFAULT= THREADS IPV6 DEVRANDOM BDB GDBM SSL
|
|
|
|
DEVRANDOM_DESC= Use /dev/random or compatible
|
|
NDBM_DESC= NDBM support
|
|
SSL_DESC= OpenSSL crypto driver
|
|
NSS_DESC= NSS crypto driver
|
|
|
|
APR_VERSION= 1.5.1
|
|
APU_VERSION= 1.5.3
|
|
|
|
USES= iconv pathfix
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
NO_WRKSUBDIR= yes
|
|
APR_WRKDIR= ${WRKDIR}/apr-${APR_VERSION}
|
|
APU_WRKDIR= ${WRKDIR}/apr-util-${APU_VERSION}
|
|
|
|
PLIST_SUB+= SHLIB_APR_MAJOR="${SHLIB_APR_MAJOR}" SHLIB_APU_MAJOR="${SHLIB_APU_MAJOR}"
|
|
SHLIB_APR_MAJOR= 5
|
|
SHLIB_APU_MAJOR= 5
|
|
|
|
APR_CONF_ARGS= --with-installbuilddir=${DATADIR}/build-1 \
|
|
--enable-posix-shm
|
|
APU_CONF_ARGS= --with-apr=${APR_WRKDIR} \
|
|
--with-expat=${LOCALBASE} \
|
|
--with-iconv=${ICONV_PREFIX}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
########## APR Options
|
|
.if ${PORT_OPTIONS:MTHREADS}
|
|
APR_CONF_ARGS+= --enable-threads
|
|
.else
|
|
APR_CONF_ARGS+= --disable-threads
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MIPV6}
|
|
APR_CONF_ARGS+= --enable-ipv6
|
|
.else
|
|
APR_CONF_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDEVRANDOM}
|
|
APR_CONF_ARGS+= --with-devrandom
|
|
.else
|
|
APR_CONF_ARGS+= --without-devrandom
|
|
.endif
|
|
|
|
######### APR-Util Options
|
|
.if ${PORT_OPTIONS:MGDBM}
|
|
APU_EXTRAS= yes
|
|
LIB_DEPENDS+= libgdbm.so:${PORTSDIR}/databases/gdbm
|
|
APU_CONF_ARGS+= --with-gdbm=${LOCALBASE}
|
|
.else
|
|
APU_CONF_ARGS+= --without-gdbm
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MBDB}
|
|
APU_EXTRAS= yes
|
|
USE_BDB= 48+
|
|
APU_CONF_ARGS+= --with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR}
|
|
.else
|
|
APU_CONF_ARGS+= --without-berkeley-db
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNDBM}
|
|
APU_EXTRAS= yes
|
|
APU_CONF_ARGS+= --with-ndbm=/usr
|
|
.else
|
|
APU_CONF_ARGS+= --without-ndbm
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLDAP}
|
|
APU_EXTRAS= yes
|
|
USE_OPENLDAP= yes
|
|
APU_CONF_ARGS+= --with-ldap-include=${LOCALBASE}/include \
|
|
--with-ldap-lib=${LOCALBASE}/lib --with-ldap=ldap
|
|
.else
|
|
APU_CONF_ARGS+= --without-ldap
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MFREETDS}
|
|
APU_EXTRAS= yes
|
|
APU_CONF_ARGS+= --with-freetds=${LOCALBASE}
|
|
LIB_DEPENDS+= libsybdb.so:${PORTSDIR}/databases/freetds
|
|
.else
|
|
APU_CONF_ARGS+= --without-freetds
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
APU_EXTRAS= yes
|
|
USE_MYSQL= yes
|
|
APU_CONF_ARGS+= --with-mysql=${LOCALBASE}
|
|
CONFIGURE_ENV+= LIBS="${LIBS}"
|
|
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/mysql -DHAVE_MYSQL_H
|
|
LDFLAGS+= -L${LOCALBASE}/lib/mysql
|
|
.else
|
|
APU_CONF_ARGS+= --without-mysql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
APU_EXTRAS= yes
|
|
USE_PGSQL= yes
|
|
APU_CONF_ARGS+= --with-pgsql=${LOCALBASE}
|
|
CONFIGURE_ENV+= ac_cv_path_PGSQL_CONFIG=""
|
|
.else
|
|
APU_CONF_ARGS+= --without-pgsql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSQLITE}
|
|
APU_EXTRAS= yes
|
|
USE_SQLITE= yes
|
|
APU_CONF_ARGS+= --with-sqlite3=${LOCALBASE}
|
|
.else
|
|
APU_CONF_ARGS+= --without-sqlite3
|
|
.endif
|
|
|
|
# crypto (apache24)
|
|
.if ${PORT_OPTIONS:MSSL} || ${PORT_OPTIONS:MNSS}
|
|
APU_CONF_ARGS+= --with-crypto
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSSL}
|
|
APU_EXTRAS= yes
|
|
USE_OPENSSL= yes
|
|
CPPFLAGS+= -I${OPENSSLINC}
|
|
LDFLAGS+= -L${OPENSSLLIB}
|
|
APU_CONF_ARGS+= --with-openssl=${OPENSSLBASE}
|
|
.else
|
|
APU_CONF_ARGS+= --without-openssl
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNSS}
|
|
APU_EXTRAS= yes
|
|
LIB_DEPENDS+= libnss3.so:${PORTSDIR}/security/nss
|
|
CPPFLAGS+= -I${LOCALBASE}/include/nss
|
|
LDFLAGS+= -L${LOCALBASE}/lib/nss
|
|
APU_CONF_ARGS+= --with-nss=${LOCALBASE}
|
|
.endif
|
|
|
|
CONFIGURE_ENV+= CC="${CC}" CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}"
|
|
|
|
.if defined(APU_EXTRAS)
|
|
PLIST_SUB+= APU_EXTRAS=""
|
|
.else
|
|
PLIST_SUB+= APU_EXTRAS="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/OSVERSION/${OSVERSION}/g' \
|
|
${APR_WRKDIR}/configure
|
|
@${REINPLACE_CMD} -e '/recursive:/s/$$/ .MAKE/' \
|
|
${APR_WRKDIR}/build/apr_rules.mk.in
|
|
# Fix pthread: Please do not remove, else apr-1-config returns wrong values
|
|
@${REINPLACE_CMD} -e 's/-lpthread/-pthread/g' \
|
|
${APR_WRKDIR}/configure
|
|
|
|
do-configure:
|
|
@(cd ${APR_WRKDIR} && \
|
|
${SETENV} ${CONFIGURE_ENV} ./configure ${CONFIGURE_ARGS} ${APR_CONF_ARGS})
|
|
@(cd ${APU_WRKDIR} && \
|
|
${SETENV} ${CONFIGURE_ENV} ./configure ${CONFIGURE_ARGS} ${APU_CONF_ARGS})
|
|
|
|
do-build:
|
|
@(cd ${APR_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS})
|
|
@(cd ${APU_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS})
|
|
|
|
do-install:
|
|
@(cd ${APR_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} ${INSTALL_TARGET} ${MAKE_ARGS})
|
|
@(cd ${APU_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} ${INSTALL_TARGET} ${MAKE_ARGS})
|
|
|
|
test: build
|
|
-@(cd ${APR_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} test)
|
|
-@(cd ${APU_WRKDIR} && ${SETENV} ${MAKE_ENV} ${MAKE} test)
|
|
|
|
#regression-test: test
|
|
|
|
.include <bsd.port.mk>
|