From 13e6cab49dc2716c3e58eda12eed2fbab24be59b Mon Sep 17 00:00:00 2001 From: "/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kaber/emailAddress=kaber@netfilter.org" Date: Fri, 16 Mar 2007 17:53:26 +0000 Subject: [patch] conntrack tool: Fix loading of protocol helpers (Thomas Jarosch ) the pkgconfig changes from August 2006 broke the loading of the protocol helpers as dlopen() doesn't search for symbols in the main executable. As a result the protocol helpers can't find register_proto(). Attached patch fixes the problem. --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index ebe370c..83cad99 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,5 +3,5 @@ LIBS = @CONNTRACK_LIBS@ sbin_PROGRAMS = conntrack conntrack_SOURCES = conntrack.c -#conntrack_LDFLAGS = $(all_libraries) -rdynamic +conntrack_LDFLAGS = -rdynamic -- cgit v1.2.3