]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
A few simple output lines (similar to gnu autoconf so people know what's happening)
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sun, 15 May 2005 16:20:08 +0000 (16:20 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sun, 15 May 2005 16:20:08 +0000 (16:20 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1393 e03df62e-2008-0410-955e-edbf42e46eb7

configure

index eba9f84cbdab285fc43db59b1b4925f5ee6a019e..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                              #