From 9f4038f62015b79246ca6e267f9935f5305cf21a Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Thu, 12 Feb 2015 22:12:41 +0000 Subject: Fix erroneous error messages in configure. --- configure | 4 ++-- 1 file 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; -- cgit v1.2.3