src: add notes on NF_STOLEN and NF_REPEAT to documentation
[platform/upstream/libnetfilter_queue.git] / configure.ac
1 dnl Process this file with autoconf to create configure.
2
3 AC_INIT([libnetfilter_queue], [1.0.0])
4 AC_CANONICAL_HOST
5 AC_CONFIG_MACRO_DIR([m4])
6
7 AM_INIT_AUTOMAKE([-Wall foreign subdir-objects dist-bzip2 1.6])
8
9 dnl kernel style compile messages
10 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
11
12 AC_PROG_CC
13 AM_PROG_CC_C_O
14 AC_EXEEXT
15 AC_DISABLE_STATIC
16 AM_PROG_LIBTOOL
17 AC_PROG_INSTALL
18
19 case "$host" in
20 *-*-linux*) ;;
21 *) AC_MSG_ERROR([Linux only, dude!]);;
22 esac
23
24 dnl Dependencies
25 PKG_CHECK_MODULES([LIBNFNETLINK], [libnfnetlink >= 0.0.41])
26
27 dnl Output the makefiles
28 AC_CONFIG_FILES([Makefile include/Makefile include/libnetfilter_queue/Makefile
29         src/Makefile utils/Makefile libnetfilter_queue.pc doxygen.cfg])
30 AC_OUTPUT