diff options
author | Peter Powell <petpow@saberuk.com> | 2015-02-12 22:12:41 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2015-02-12 22:12:54 +0000 |
commit | 9f4038f62015b79246ca6e267f9935f5305cf21a (patch) | |
tree | 2c6fbd3a55a175b0c9d3f4dbde88e220e9b75df2 /configure | |
parent | f6ace5e8084e2ab23f6797ab9d77a41466ea4a78 (diff) |
Fix erroneous error messages in configure.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -660,12 +660,12 @@ dumphash(); if (($config{USE_GNUTLS} eq "y") && ($config{HAS_GNUTLS} ne "y")) { - print "Sorry, but I couldn't detect GnuTLS. Make sure gnutls-config is in your path.\n"; + print "Sorry, but I couldn't detect GnuTLS. Make sure pkg-config is in your path.\n"; exit(0); } if (($config{USE_OPENSSL} eq "y") && ($config{HAS_OPENSSL} ne "y")) { - print "Sorry, but I couldn't detect OpenSSL. Make sure openssl is in your path.\n"; + print "Sorry, but I couldn't detect OpenSSL. Make sure pkg-config and openssl are in your path.\n"; exit(0); } our $failed = 0; |