Skip to content
shivarammysore edited this page Jul 10, 2012 · 5 revisions
  1. Build errors related to libpcap If there is more than one version of libpcap exists on the system, the wrong libpcap library may be selected by the build makefiles. 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