--- embedaddon/arping/INSTALL 2012/02/21 22:16:27 1.1.1.1 +++ embedaddon/arping/INSTALL 2014/06/15 16:26:43 1.1.1.2 @@ -33,18 +33,29 @@ same package anymore. Standard autotools: ./configure && make && make install The autotools build system is new with arping 2.09. If you have problems with -it I want to hear about it. Email me at thomas@habets.pp.se and attach +it I want to hear about it. Email me at thomas@habets.se and attach the config.log file. If it failed during 'make', give me all the output from that. Examples that I use on some systems: -Linux, OpenBSD, FreeBSD: +Linux: + apt-get install libnet1-dev libpcap-dev ./configure -Solaris - ./configure LDFLAGS="-R/usr/local/lib -L/opt/csw/lib -R/opt/csw/lib" \ - CPPFLAGS="-I/usr/local/include" +OpenBSD: + ./configure CPPFLAGS=-I/usr/local/include/libnet-1.1 \ + LDFLAGS=-L/usr/local/lib -IRIX (FIXME: double-check this): - ./configure LDFLAGS="-L/usr/local/lib -R/usr/local/lib" +FreeBSD: + pkg_add -r libnet115 # (or similar) + pkg_add -r libpcap # (or similar) + ./configure CPPFLAGS='-I/usr/local/include/libnet115' \ + LDFLAGS='-L/usr/local/lib/libnet115' + +Solaris: + ./configure CPPFLAGS="-I/usr/local/include" \ + LDFLAGS="-R/usr/local/lib -L/opt/csw/lib -R/opt/csw/lib" + +IRIX: + ./configure LDFLAGS="-L/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib"