1251886Speter# $FreeBSD: releng/10.3/usr.bin/svn/lib/libapr_util/Makefile 253734 2013-07-28 06:02:40Z peter $
2251886Speter
3251886Speter.include "${.CURDIR}/../Makefile.inc"
4251886Speter
5251886SpeterINTERNALLIB=	yes
6251886SpeterLIB=		apr-util
7251886Speter
8251886SpeterSRCS=		apr_base64.c apr_brigade.c apr_buckets.c apr_buckets_alloc.c \
9251886Speter		apr_buckets_eos.c apr_buckets_file.c apr_buckets_flush.c \
10251886Speter		apr_buckets_heap.c apr_buckets_mmap.c apr_buckets_pipe.c \
11251886Speter		apr_buckets_pool.c apr_buckets_refcount.c apr_buckets_simple.c \
12251886Speter		apr_buckets_socket.c apr_crypto.c apr_date.c apr_dbd.c \
13253734Speter		apr_hooks.c apr_md4.c apr_md5.c apr_memcache.c apr_passwd.c \
14251886Speter		apr_queue.c apr_reslist.c apr_rmm.c apr_sha1.c apr_strmatch.c \
15251886Speter		apr_thread_pool.c apr_uri.c apr_xml.c apu_dso.c apu_version.c \
16253734Speter		crypt_blowfish.c getuuid.c uuid.c xlate.c
17251886Speter
18251886Speter.PATH:		${APRU}/buckets ${APRU}/crypto ${APRU}/dbd \
19251886Speter		${APRU}/encoding ${APRU}/hooks \
20251886Speter		${APRU}/memcache ${APRU}/misc ${APRU}/strmatch \
21251886Speter		${APRU}/uri ${APRU}/xlate ${APRU}/xml ${APRU}/include
22251886Speter
23251886SpeterCFLAGS+= 	-DHAVE_CONFIG_H \
24251886Speter		-I${.CURDIR} \
25251886Speter		-I${APRU}/include/private \
26251886Speter		-I${APRU}/include \
27251886Speter		-I${.CURDIR}/../libapr \
28251886Speter		-I${APR}/include/arch/unix \
29251886Speter		-I${APR}/include
30251886Speter
31252457Speter.include <bsd.own.mk>
32252457Speter
33252457Speter.if ${MK_ICONV} == "yes"
34252457SpeterCFLAGS+=	-DHAVE_ICONV_H=1 -DAPU_HAVE_ICONV=1
35252457Speter.endif
36252457Speter
37251886Speter.include <bsd.lib.mk>
38251886Speter
39