diff options
author | Peter Powell <petpow@saberuk.com> | 2019-03-11 00:21:16 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-04-15 19:08:22 +0100 |
commit | 14e1d1f844c89e14cac24799c80af47ed6767cf2 (patch) | |
tree | fd47fc94ecfc1da318c209afb3c3743fc1f76e45 /tools | |
parent | 7c8e2990a1cc990f73822e037e1f0866f8aba97e (diff) |
Replace the geoip module with geo_maxmind, geoban, and geoclass.
MaxMind have EOL'd the library that the geoip module uses and have
replaced it with libmaxminddb.
The geoip module has been split into geo_maxmind which provides
geolocation data, geoban which provides location-based channel
bans, and geoclass which is used to filter a user into a connect
class based on location.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/travis-ci.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/travis-ci.sh b/tools/travis-ci.sh index bb32e19a1..8069717f0 100755 --- a/tools/travis-ci.sh +++ b/tools/travis-ci.sh @@ -3,10 +3,10 @@ set -ev if [ "$TRAVIS_OS_NAME" = "linux" ] then sudo apt-get update --assume-yes - sudo apt-get install --assume-yes libgeoip-dev libgnutls-dev libldap2-dev libmysqlclient-dev libpcre3-dev libpq-dev libsqlite3-dev libssl-dev libtre-dev + sudo apt-get install --assume-yes libgnutls-dev libldap2-dev libmaxminddb-dev libmysqlclient-dev libpcre3-dev libpq-dev libsqlite3-dev libssl-dev libtre-dev else >&2 echo "'$TRAVIS_OS_NAME' is an unknown Travis CI environment!" exit 1 fi -export TEST_BUILD_MODULES="m_geoip.cpp,m_ldap.cpp,m_mysql.cpp,m_pgsql.cpp,m_regex_pcre.cpp,m_regex_posix.cpp,m_regex_tre.cpp,m_sqlite3.cpp,m_ssl_gnutls.cpp,m_ssl_openssl.cpp" +export TEST_BUILD_MODULES="m_geo_maxmind.cpp,m_ldap.cpp,m_mysql.cpp,m_pgsql.cpp,m_regex_pcre.cpp,m_regex_posix.cpp,m_regex_tre.cpp,m_sqlite3.cpp,m_ssl_gnutls.cpp,m_ssl_openssl.cpp" ./tools/test-build $CXX |