View | Details | Raw Unified | Return to bug 226705
Collapse All | Expand All

(-)devel/apr1/Makefile (-8 / +5 lines)
Lines 29-35 Link Here
29
29
30
OPTIONS_SUB=		yes
30
OPTIONS_SUB=		yes
31
OPTIONS_GROUP=		APU
31
OPTIONS_GROUP=		APU
32
OPTIONS_DEFINE=		IPV6 DEVRANDOM
32
OPTIONS_DEFINE=		IPV6
33
OPTIONS_GROUP_APU=	BDB GDBM LDAP MYSQL NDBM ODBC PGSQL SQLITE
33
OPTIONS_GROUP_APU=	BDB GDBM LDAP MYSQL NDBM ODBC PGSQL SQLITE
34
OPTIONS_RADIO=		CRYPTO
34
OPTIONS_RADIO=		CRYPTO
35
OPTIONS_RADIO_CRYPTO=	SSL NSS
35
OPTIONS_RADIO_CRYPTO=	SSL NSS
Lines 46-52 Link Here
46
BDB_USES=		bdb:5+
46
BDB_USES=		bdb:5+
47
GDBM_LIB_DEPENDS=	libgdbm.so:databases/gdbm
47
GDBM_LIB_DEPENDS=	libgdbm.so:databases/gdbm
48
LDAP_USE=		OPENLDAP=yes
48
LDAP_USE=		OPENLDAP=yes
49
MYSQL_USE=		MYSQL=yes
49
MYSQL_USES=		mysql
50
NSS_LIB_DEPENDS=	libnss3.so:security/nss
50
NSS_LIB_DEPENDS=	libnss3.so:security/nss
51
ODBC_LIB_DEPENDS=	libodbc.so:databases/unixODBC
51
ODBC_LIB_DEPENDS=	libodbc.so:databases/unixODBC
52
PGSQL_USES=		pgsql
52
PGSQL_USES=		pgsql
Lines 67-83 Link Here
67
67
68
APR_CONF_ARGS=	--with-installbuilddir=${DATADIR}/build-1 \
68
APR_CONF_ARGS=	--with-installbuilddir=${DATADIR}/build-1 \
69
		--enable-threads \
69
		--enable-threads \
70
		--enable-posix-shm
70
		--enable-posix-shm \
71
		--with-devrandom
71
72
72
APU_CONF_ARGS=	--with-apr=${APR_WRKDIR} \
73
APU_CONF_ARGS=	--with-apr=${APR_WRKDIR} \
73
		--with-expat=${LOCALBASE} \
74
		--with-expat=${LOCALBASE}
74
		--with-iconv=${ICONV_PREFIX}
75
75
76
########## APR Options
76
########## APR Options
77
IPV6_VARS=		APR_CONF_ARGS+=--enable-ipv6
77
IPV6_VARS=		APR_CONF_ARGS+=--enable-ipv6
78
IPV6_VARS_OFF=		APR_CONF_ARGS+=--disable-ipv6
78
IPV6_VARS_OFF=		APR_CONF_ARGS+=--disable-ipv6
79
DEVRANDOM_VARS=		APR_CONF_ARGS+=--with-devrandom
80
DEVRANDOM_VARS_OFF=	APR_CONF_ARGS+=--without-devrandom
81
79
82
######### APR-Util Options
80
######### APR-Util Options
83
# make sure 1st include is "${APR_WRKDIR}/include"
81
# make sure 1st include is "${APR_WRKDIR}/include"
Lines 116-122 Link Here
116
114
117
.include <bsd.port.options.mk>
115
.include <bsd.port.options.mk>
118
116
119
# crypto (apache24)
120
.if ${PORT_OPTIONS:MSSL} || ${PORT_OPTIONS:MNSS}
117
.if ${PORT_OPTIONS:MSSL} || ${PORT_OPTIONS:MNSS}
121
APU_CONF_ARGS+=	--with-crypto
118
APU_CONF_ARGS+=	--with-crypto
122
.else
119
.else

Return to bug 226705