diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-04-11T13·41+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-04-11T13·41+0200 |
commit | b134c2d05280be9615c81f018a5309fc8dcbca0e (patch) | |
tree | d2a3cc14483ebbb2b67165caf7f1d19d8bee5340 /perl | |
parent | 915f62fa19790d8f826aeb4dd3d2bb5bde2f67e9 (diff) |
Drop WWW::Curl dependency
Somehow this came back after d1da6967b8891763ce04d668027cf300c9bbf0b2.
Diffstat (limited to 'perl')
-rw-r--r-- | perl/configure.ac | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/perl/configure.ac b/perl/configure.ac index d617c78535f6..7a6b28be23e8 100644 --- a/perl/configure.ac +++ b/perl/configure.ac @@ -52,7 +52,7 @@ PKG_CHECK_MODULES([SODIUM], [libsodium], have_sodium=1], [have_sodium=]) AC_SUBST(HAVE_SODIUM, [$have_sodium]) -# Check for the required Perl dependencies (DBI, DBD::SQLite and WWW::Curl). +# Check for the required Perl dependencies (DBI and DBD::SQLite). perlFlags="-I$perllibdir" AC_ARG_WITH(dbi, AC_HELP_STRING([--with-dbi=PATH], @@ -63,10 +63,6 @@ AC_ARG_WITH(dbd-sqlite, AC_HELP_STRING([--with-dbd-sqlite=PATH], [prefix of the Perl DBD::SQLite library]), perlFlags="$perlFlags -I$withval") -AC_ARG_WITH(www-curl, AC_HELP_STRING([--with-www-curl=PATH], - [prefix of the Perl WWW::Curl library]), - perlFlags="$perlFlags -I$withval") - AC_MSG_CHECKING([whether DBD::SQLite works]) if ! $perl $perlFlags -e 'use DBI; use DBD::SQLite;' 2>&5; then AC_MSG_RESULT(no) @@ -74,13 +70,6 @@ if ! $perl $perlFlags -e 'use DBI; use DBD::SQLite;' 2>&5; then fi AC_MSG_RESULT(yes) -AC_MSG_CHECKING([whether WWW::Curl works]) -if ! $perl $perlFlags -e 'use WWW::Curl;' 2>&5; then - AC_MSG_RESULT(no) - AC_MSG_FAILURE([The Perl module WWW::Curl is missing.]) -fi -AC_MSG_RESULT(yes) - AC_SUBST(perlFlags) PKG_CHECK_MODULES([NIX], [nix-store]) |