]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - configure
A few simple output lines (similar to gnu autoconf so people know what's happening)
[user/henk/code/inspircd.git] / configure
index 36bee81ade6f30e6dc04a1cbbd8004cbc1148f26..428328e424858ea9c55b730725ab5f3fc765d9ff 100755 (executable)
--- a/configure
+++ b/configure
@@ -64,8 +64,9 @@ if ($arg eq "-update") {
   }
 }
 
-
+print "Checking for cache from previous configure...\n";
 getcache();
+print "Checking operating system version...\n";
 getosflags();
 
 if (!$config{MAX_CLIENT}) { 
@@ -75,6 +76,7 @@ if (!$config{MAX_CLIENT}) {
   $config{MAX_CLIENT} = $config{MAX_CLIENT_T};
 }
 
+printf "Checking if strlcpy exists... ";
 # Perform the strlcpy() test..
 $config{HAS_STRLCPY} = "false";
 my $fail = 0;
@@ -92,7 +94,10 @@ if (!$fail)
        }
        close(STRLCPY);
 }
+print "yes\n" if $config{HAS_STRLCPY} eq "true";
+print "no\n" if $config{HAS_STRLCPY} eq "false";
 
+printf "Checking if kqueue exists... ";
 $has_kqueue = 0;
 $fail = 0;
 open(KQUEUE, "</usr/include/sys/event.h") or $fail = 1;
@@ -109,6 +114,8 @@ if (!$fail)
        }
        close(KQUEUE);
 }
+print "yes\n" if $has_kqueue == 1;
+print "no\n" if $has_kqueue == 0;
 
 ################################################################################
 #                          BEGIN INTERACTIVE PART                              #
@@ -143,7 +150,7 @@ dir_check("is the IRCd binary to be placed", "BINARY_DIR");
 dir_check("are the IRCd libraries to be placed", "LIBRARY_DIR");
 
 if ($has_kqueue) {
-       yesno(USE_KQUEUE,"You are running a BSD operating system, and kqueue\nwas detected. Would you like to enable kqueue support?\nPlease be aware that kqueue support is\nEXPERIMENTAL and not gauranteed to work properly.\nIf you are unsure, answer no.\n\nEnable kqueue?");
+       yesno(USE_KQUEUE,"You are running a BSD operating system, and kqueue\nwas detected. Would you like to enable kqueue support?\nIf you are unsure, answer no.\n\nEnable kqueue?");
 }
 
 # File Descriptor Settings..