-
Notifications
You must be signed in to change notification settings - Fork 80
FAQ
shivarammysore edited this page Jul 10, 2012
·
3 revisions
- **Build errors related to libpcap**
If there is more than one version of libpcap on the system, the wrong libpcap library may be selected by the build system. The library is selected by the ordering of the LDFLAGS environment variable. If the required libpcap is available at /usr/local/lib and the one selected automatically is in /usr/lib, then one can do the following to make the build work correctly. % export LDFLAGS=-L/usr/local/lib % make rel
***