1251886Speter# $FreeBSD: stable/11/usr.bin/svn/lib/libapr_util/Makefile 362181 2020-06-14 18:49:06Z dim $
2251886Speter
3251886Speter.include "${.CURDIR}/../Makefile.inc"
4251886Speter
5251886SpeterINTERNALLIB=	yes
6251886SpeterLIB=		apr-util
7251886Speter
8362181SdimSRCS=		apr_base64.c \
9362181Sdim		apr_brigade.c \
10362181Sdim		apr_buckets.c \
11362181Sdim		apr_buckets_alloc.c \
12362181Sdim		apr_buckets_eos.c \
13362181Sdim		apr_buckets_file.c \
14362181Sdim		apr_buckets_flush.c \
15362181Sdim		apr_buckets_heap.c \
16362181Sdim		apr_buckets_mmap.c \
17362181Sdim		apr_buckets_pipe.c \
18362181Sdim		apr_buckets_pool.c \
19362181Sdim		apr_buckets_refcount.c \
20362181Sdim		apr_buckets_simple.c \
21362181Sdim		apr_buckets_socket.c \
22362181Sdim		apr_crypto.c \
23362181Sdim		apr_date.c \
24362181Sdim		apr_dbd.c \
25362181Sdim		apr_hooks.c \
26362181Sdim		apr_md4.c \
27362181Sdim		apr_md5.c \
28362181Sdim		apr_memcache.c \
29362181Sdim		apr_passwd.c \
30362181Sdim		apr_queue.c \
31362181Sdim		apr_reslist.c \
32362181Sdim		apr_rmm.c \
33362181Sdim		apr_sha1.c \
34362181Sdim		apr_strmatch.c \
35362181Sdim		apr_thread_pool.c \
36362181Sdim		apr_uri.c \
37362181Sdim		apr_xml.c \
38362181Sdim		apu_dso.c \
39362181Sdim		apu_version.c \
40362181Sdim		crypt_blowfish.c \
41362181Sdim		getuuid.c \
42362181Sdim		uuid.c \
43362181Sdim		xlate.c
44251886Speter
45362181Sdim.PATH:		${APRU}/buckets \
46362181Sdim		${APRU}/crypto \
47362181Sdim		${APRU}/dbd \
48362181Sdim		${APRU}/encoding \
49362181Sdim		${APRU}/hooks \
50362181Sdim		${APRU}/memcache \
51362181Sdim		${APRU}/misc \
52362181Sdim		${APRU}/strmatch \
53362181Sdim		${APRU}/uri \
54362181Sdim		${APRU}/xlate \
55362181Sdim		${APRU}/xml \
56362181Sdim		${APRU}/include
57251886Speter
58362181SdimCFLAGS+=	-DHAVE_CONFIG_H \
59251886Speter		-I${.CURDIR} \
60251886Speter		-I${APRU}/include/private \
61251886Speter		-I${APRU}/include \
62251886Speter		-I${.CURDIR}/../libapr \
63251886Speter		-I${APR}/include/arch/unix \
64251886Speter		-I${APR}/include
65251886Speter
66265420Simp.include <src.opts.mk>
67252457Speter
68252457Speter.if ${MK_ICONV} == "yes"
69362181SdimCFLAGS+=	-DHAVE_ICONV_H=1 \
70362181Sdim		-DAPU_HAVE_ICONV=1
71252457Speter.endif
72252457Speter
73251886Speter.include <bsd.lib.mk>
74