summaryrefslogtreecommitdiffstats
path: root/ulogd/pcap
diff options
context:
space:
mode:
authorlaforge <laforge>2002-12-09 14:42:43 +0000
committerlaforge <laforge>2002-12-09 14:42:43 +0000
commit322b293a7f3382925499bd63e0325814593cf11f (patch)
treec7ad676df50d495e69d6b6ffa5a3a2b8ec98699b /ulogd/pcap
parent07ee869a6e4a275747a571f37a6150c87fc5e63f (diff)
fix include paths.
Diffstat (limited to 'ulogd/pcap')
-rw-r--r--ulogd/pcap/Makefile.in8
-rw-r--r--ulogd/pcap/ulogd_PCAP.c6
2 files changed, 7 insertions, 7 deletions
diff --git a/ulogd/pcap/Makefile.in b/ulogd/pcap/Makefile.in
index 9a31edb..edbdbdf 100644
--- a/ulogd/pcap/Makefile.in
+++ b/ulogd/pcap/Makefile.in
@@ -1,12 +1,12 @@
#
-
-# Normally You should not need to change anything below
-#
include @top_srcdir@/Rules.make
-CFLAGS+=-I@top_srcdir@ -I@top_srcdir@/libipulog/include -I@top_srcdir@/conffile
+CFLAGS+=-I@top_srcdir@ -I@top_srcdir@/libipulog/include -I@top_srcdir@/include
SH_CFLAGS:=$(CFLAGS) -fPIC
+# Normally You should not need to change anything below
+#
+
SHARED_LIBS=ulogd_PCAP.so
all: $(SHARED_LIBS)
diff --git a/ulogd/pcap/ulogd_PCAP.c b/ulogd/pcap/ulogd_PCAP.c
index d7e5912..2bebcf1 100644
--- a/ulogd/pcap/ulogd_PCAP.c
+++ b/ulogd/pcap/ulogd_PCAP.c
@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
- * $Id: ulogd_PCAP.c,v 1.1 2002/06/13 12:55:21 laforge Exp $
+ * $Id: ulogd_PCAP.c,v 1.1 2002/07/30 08:00:47 laforge Exp $
*
*/
@@ -32,8 +32,8 @@
#include <sys/time.h>
#include <sys/stat.h>
#include <pcap.h>
-#include "ulogd.h"
-#include "conffile.h"
+#include <ulogd/ulogd.h>
+#include <ulogd/conffile.h>
#ifndef ULOGD_PCAP_DEFAULT
#define ULOGD_PCAP_DEFAULT "/var/log/ulogd.pcap"