From: fredrik@DOLDA2000.COM Date: Mon, 23 May 2005 00:29:55 +0000 (+0000) Subject: Incorporate make system changes by Oron Peled. X-Git-Url: http://dolda2000.com/gitweb/?p=icmp-dn.git;a=commitdiff_plain;h=2269406c64770520d8c504f925af30eebe60d5aa Incorporate make system changes by Oron Peled. git-svn-id: svn+ssh://svn.dolda2000.com/srv/svn/repos/src/icmp-dn@239 959494ce-11ee-0310-bf91-de5d638817bd --- diff --git a/src/icmpdnd.c b/src/icmpdnd.c index 339f7aa..910d1a5 100644 --- a/src/icmpdnd.c +++ b/src/icmpdnd.c @@ -29,6 +29,7 @@ #include #include #include +#include "config.h" struct icmphdr { u_int8_t type; diff --git a/src/idnlookup.c b/src/idnlookup.c index e97f62f..bab502d 100644 --- a/src/idnlookup.c +++ b/src/idnlookup.c @@ -31,6 +31,7 @@ #include #include #include +#include "config.h" struct icmphdr { u_int8_t type; diff --git a/src/nss-icmp.c b/src/nss-icmp.c index 5bc5ec7..dcad650 100644 --- a/src/nss-icmp.c +++ b/src/nss-icmp.c @@ -33,8 +33,12 @@ #include #include #include +#include "config.h" +#ifndef CONFIGFILE #define CONFIGFILE "/etc/nss-icmp.conf" +#endif + #if 0 #define DEBUGP(format...) fprintf(stderr, "nss-icmp: " format); #else