486518fcaa
threaded in order to better deal with the requirements of multi-interface routers. Information regarding MAC addresses and interfaces is maintained by the program, and an alert is issued should a device move between interfaces. In addition, event processing has been refactored, and some bugs have been fixed. PR: 59180 Submitted by: Matthew George <mdg@secureworks.net> Approved by: portmgr
32 lines
758 B
Text
32 lines
758 B
Text
--- ../arpwatch.orig/configure Wed May 16 14:26:11 2001
|
|
+++ ./configure Wed Sep 10 13:08:05 2003
|
|
@@ -649,7 +649,7 @@
|
|
:
|
|
fi
|
|
|
|
- V_CCOPT="-O"
|
|
+# V_CCOPT="-O"
|
|
V_INCLS=""
|
|
if test "${srcdir}" != "." ; then
|
|
V_INCLS="-I\$\(srcdir\)"
|
|
@@ -2496,7 +2496,7 @@
|
|
fi
|
|
V_CCOPT="$V_CCOPT -Wall"
|
|
if test $ac_cv_lbl_gcc_vers -gt 1 ; then
|
|
- V_CCOPT="$V_CCOPT -Wmissing-prototypes -Wstrict-prototypes"
|
|
+# V_CCOPT="$V_CCOPT -Wmissing-prototypes -Wstrict-prototypes"
|
|
fi
|
|
fi
|
|
else
|
|
@@ -3075,6 +3075,11 @@
|
|
if test ! -f arp.dat ; then
|
|
echo 'creating empty arp.dat file'
|
|
touch arp.dat
|
|
+fi
|
|
+
|
|
+if test ! -f ether.dat ; then
|
|
+ echo 'creating empty ether.dat file'
|
|
+ touch ether.dat
|
|
fi
|
|
|
|
if test -f .devel ; then
|