summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2015-02-12 22:12:41 +0000
committerPeter Powell <petpow@saberuk.com>2015-02-12 22:12:54 +0000
commit9f4038f62015b79246ca6e267f9935f5305cf21a (patch)
tree2c6fbd3a55a175b0c9d3f4dbde88e220e9b75df2 /configure
parentf6ace5e8084e2ab23f6797ab9d77a41466ea4a78 (diff)
Fix erroneous error messages in configure.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 425bb21af..fae17dfea 100755
--- a/configure
+++ b/configure
@@ -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;