61 lines
1.3 KiB
Makefile
61 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.54 2019/01/22 23:58:04 ajacoutot Exp $
|
|
|
|
COMMENT= companion library to APR
|
|
|
|
V= 1.6.1
|
|
REVISION= 2
|
|
DISTNAME= apr-util-$V
|
|
SHARED_LIBS += aprutil-1 6.1 # .6.0
|
|
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= Stefan Sperling <stsp@openbsd.org>
|
|
|
|
HOMEPAGE= http://apr.apache.org/
|
|
|
|
FLAVORS= ldap
|
|
FLAVOR?=
|
|
|
|
# Apache License 2.0
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += lib/db4/db>=4 crypto expat iconv pthread ssl
|
|
|
|
MASTER_SITES= ${MASTER_SITE_APACHE:=apr/}
|
|
|
|
LIB_DEPENDS= converters/libiconv \
|
|
databases/db/v4,no_java,no_tcl
|
|
|
|
CONFIGURE_STYLE=autoconf
|
|
AUTOCONF_VERSION=2.68
|
|
CONFIGURE_ARGS= --with-apr=${LOCALBASE} \
|
|
--with-dbm=db4 \
|
|
--with-berkeley-db=${LOCALBASE}/include/db4:${LOCALBASE}/lib/db4 \
|
|
--with-iconv=${LOCALBASE} \
|
|
--includedir=${LOCALBASE}/include/apr-1/ \
|
|
--with-apr=${LOCALBASE}/bin/apr-1-config \
|
|
--with-crypto \
|
|
--with-sqlite3=no \
|
|
--with-nss=no \
|
|
--with-pgsql=no \
|
|
--with-mysql=no \
|
|
--with-oracle=no \
|
|
--with-freetds=no \
|
|
--with-odbc=no
|
|
|
|
.if ${FLAVOR:Mldap}
|
|
CONFIGURE_ARGS+= --with-ldap-include=${LOCALBASE}/include \
|
|
--with-ldap-lib=${LOCALBASE}/lib \
|
|
--with-ldap
|
|
LIB_DEPENDS+= databases/openldap
|
|
WANTLIB+= sasl2 lber-2.4 ldap-2.4
|
|
.else
|
|
CONFIGURE_ARGS+= --with-ldap=no
|
|
.endif
|
|
|
|
CONFIGURE_ENV+= APRUTIL_EXPORT_LIBS=-pthread
|
|
LIB_DEPENDS+= devel/apr
|
|
WANTLIB+= apr-1
|
|
|
|
.include <bsd.port.mk>
|