]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libauditd/Makefile
Make linux_ptrace() use linux_msg() instead of printf().
[FreeBSD/FreeBSD.git] / lib / libauditd / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 PACKAGE=lib${LIB}
6 OPENBSMDIR=             ${SRCTOP}/contrib/openbsm
7 _LIBAUDITDDIR=          ${OPENBSMDIR}/libauditd
8 _LIBBSMDIR=             ${OPENBSMDIR}/libbsm
9
10 LIB=            auditd
11
12 .PATH:          ${_LIBAUDITDDIR}
13
14 SRCS=   auditd_lib.c
15
16 #
17 # Must use BSM include files from within the contrib area, not the system.
18 #
19 CFLAGS+=        -I${OPENBSMDIR} -I${_LIBBSMDIR}
20
21 WARNS?=         3
22
23 MAN=
24
25 .include <bsd.lib.mk>
26
27 # Disable -Wcast-align.  Casting res->ai_addr in auditd_set_host triggers this
28 # warning, but it's ok because res->ai_addr must've originally pointed to a
29 # sockaddr_in or sockaddr_in6 anyway.
30 # Better would be to disable this warning in just that one function, but GCC
31 # 4.2 can't do that :( .
32 CWARNFLAGS.auditd_lib.c+=       -Wno-cast-align