]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Merge pull request #992 from SaberUK/insp20+fix-error-message
authorAttila Molnar <attilamolnar@hush.com>
Tue, 17 Feb 2015 15:10:04 +0000 (16:10 +0100)
committerAttila Molnar <attilamolnar@hush.com>
Tue, 17 Feb 2015 15:10:04 +0000 (16:10 +0100)
[2.0] Fix erroneous error messages in configure.

configure

index 425bb21af75e4ba360860f3ed1da484d78cfcec0..fae17dfeab52af236155c55c8782066f85be7aae 100755 (executable)
--- 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;