Search
j0ke.net Open Build Service
>
Projects
>
server:monitoring
>
ntop
> ntop-3.3.9-configure-geoip.patch.old
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File ntop-3.3.9-configure-geoip.patch.old of Package ntop (Revision 53)
Currently displaying revision
53
,
show latest
--- configure.in.orig 2009-01-11 20:37:48.000000000 +0100 +++ configure.in 2009-01-11 20:38:25.000000000 +0100 @@ -1889,6 +1889,14 @@ dnl> GeoIP (http://www.maxmind.com/) if test -f "GeoIP.tar.gz"; then echo "GeoIP already present on this machine" + tar xvfz GeoIP.tar.gz + GEO_DIR=`find $PWD -type d -name "GeoIP-*"` + cd $GEO_DIR; ./configure; make; cd .. + # OSX Fix + GEO_DYLIB="$GEO_DIR/libGeoIP/.libs/libGeoIP.dylib" + if test -f $GEO_DYLIB; then + ln -s $GEO_DYLIB . + fi else wget http://www.maxmind.com/download/geoip/api/c/GeoIP.tar.gz tar xvfz GeoIP.tar.gz