* [PATCH 3/6] libnetfilter_queue changes
@ 2006-07-31 8:23 KOVACS Krisztian
0 siblings, 0 replies; only message in thread
From: KOVACS Krisztian @ 2006-07-31 8:23 UTC (permalink / raw)
To: netfilter-devel; +Cc: Patrick McHardy
[-- Attachment #1: Type: text/plain, Size: 92 bytes --]
Hi,
Attached are the changes to libnetfilter_queue.
--
Regards,
Krisztian Kovacs
[-- Attachment #2: 03-libnetfilter_queue.patch --]
[-- Type: text/x-diff, Size: 1459 bytes --]
Index: libnetfilter_queue/configure.in
===================================================================
--- libnetfilter_queue/configure.in (revision 6652)
+++ libnetfilter_queue/configure.in (working copy)
@@ -17,8 +17,16 @@
*) AC_MSG_ERROR([Linux only, dude!]);;
esac
-AC_CHECK_LIB(nfnetlink, nfnl_subsys_open, AC_MSG_RESULT(found), AC_MSG_ERROR([libnfnetlink 0.0.16 or later needed]))
-AC_CHECK_HEADER([libnfnetlink/linux_nfnetlink.h], [AC_MSG_RESULT([found])], [AC_MSG_ERROR([libnfnetlink 0.0.16 or later needed])])
+dnl Dependencies
+LIBNFNETLINK_REQUIRED=0.0.16
+
+PKG_CHECK_MODULES(LIBNFNETLINK, libnfnetlink >= $LIBNFNETLINK_REQUIRED,,
+ AC_MSG_ERROR(Cannot find libnfnetlink >= $LIBNFNETLINK_REQUIRED))
+
+CFLAGS="$CFLAGS $LIBNFNETLINK_CFLAGS"
+LIBNFQUEUE_LIBS="$LIBNFNETLINK_LIBS"
+
+AC_SUBST(LIBNFQUEUE_LIBS)
dnl Output the makefiles
AC_OUTPUT(Makefile include/Makefile include/libnetfilter_queue/Makefile src/Makefile utils/Makefile libnetfilter_queue.pc)
Index: libnetfilter_queue/src/Makefile.am
===================================================================
--- libnetfilter_queue/src/Makefile.am (revision 6652)
+++ libnetfilter_queue/src/Makefile.am (working copy)
@@ -3,8 +3,8 @@
LIBVERSION=2:0:1
INCLUDES = $(all_includes) -I$(top_srcdir)/include -I${KERNELDIR}
-AM_CFLAGS=-fPIC -Wall
-LIBS=
+AM_CFLAGS = -fPIC -Wall
+LIBS = @LIBNFQUEUE_LIBS@
lib_LTLIBRARIES = libnetfilter_queue.la libnetfilter_queue_libipq.la
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-07-31 8:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-31 8:23 [PATCH 3/6] libnetfilter_queue changes KOVACS Krisztian
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.