From: Attila Molnar Date: Tue, 17 Feb 2015 15:10:04 +0000 (+0100) Subject: Merge pull request #992 from SaberUK/insp20+fix-error-message X-Git-Tag: v2.0.23~73 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=d3124462f23cc1aa72357919199be026458f160a;hp=cde9fdc38bd247bba69638782e0265c86e427bae;p=user%2Fhenk%2Fcode%2Finspircd.git Merge pull request #992 from SaberUK/insp20+fix-error-message [2.0] Fix erroneous error messages in configure. --- 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;