summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-15 16:20:08 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-15 16:20:08 +0000
commitd7f97fcb2b8380330aa6fafbf61fc6c9d1b0d4c4 (patch)
tree553bc4fb51be57825ff105aae4c2cbf4485373fe /configure
parent685db946209d352c75bc49a40716cb92b1a8eee6 (diff)
A few simple output lines (similar to gnu autoconf so people know what's happening)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1393 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
1 files changed, 8 insertions, 1 deletions
diff --git a/configure b/configure
index eba9f84cb..428328e42 100755
--- 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 #