]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fix erroneous error messages in configure.
authorPeter Powell <petpow@saberuk.com>
Thu, 12 Feb 2015 22:12:41 +0000 (22:12 +0000)
committerPeter Powell <petpow@saberuk.com>
Thu, 12 Feb 2015 22:12:54 +0000 (22:12 +0000)
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;