2009-10-16 16:01:53 UTC
Thanks for responding so quickly. I'm sorry I didn't follow-up sooner but for some reason I didn't receive an email notification of your reply.
<pre><code>
yum install libpcap libpcap-devel
</code></pre>
Yum reported that libpcap was already installed so I only needed libpcap-devel. I was then able to successfully do a 'make local'.
Following the instructions in the INSTALL doc, I got:
<pre><code>
[root@localhost ncid]# make install
make: *** No rule to make target getopt_long.h', needed byncidd.o'. Stop.
[root@localhost ncid]# make install-package
make: *** No rule to make target `install-package'. Stop.
[root@localhost ncid]#
</code></pre>
I then looked at 'Makefile' and saw different install instructions so I made this attempt:
<pre><code>
[root@localhost ncid]# make package-install
make install prefix=/usr prefix2=
make[1]: Entering directory /tmp/ncid'
make[1]: *** No rule to make targetgetopt_long.h', needed by ncidd.o'. Stop.
make[1]: Leaving directory/tmp/ncid'
make: *** [package-install] Error 2
[root@localhost ncid]#
</code></pre>
I think there are two issues:
1) The INSTALL doc instructions don't match Makefile.
2) The error 2 above.