[netfilter-cvslog] r6773 - trunk/conntrack/src

kaber at netfilter.org kaber at netfilter.org
Fri Mar 16 18:53:26 CET 2007


Author: kaber at netfilter.org
Date: 2007-03-16 18:53:26 +0100 (Fri, 16 Mar 2007)
New Revision: 6773

Modified:
   trunk/conntrack/src/Makefile.am
Log:
[patch] conntrack tool: Fix loading of protocol helpers (Thomas Jarosch <thomas.jarosch at intra2net.com>)

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.


Modified: trunk/conntrack/src/Makefile.am
===================================================================
--- trunk/conntrack/src/Makefile.am	2007-03-16 15:07:53 UTC (rev 6772)
+++ trunk/conntrack/src/Makefile.am	2007-03-16 17:53:26 UTC (rev 6773)
@@ -3,5 +3,5 @@
 
 sbin_PROGRAMS = conntrack
 conntrack_SOURCES = conntrack.c
-#conntrack_LDFLAGS = $(all_libraries) -rdynamic
+conntrack_LDFLAGS = -rdynamic
  




More information about the netfilter-cvslog mailing list