summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2007-07-24 16:17:16 +0000
committerpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2007-07-24 16:17:16 +0000
commit1ec51cea95284c7e01e3e434805b22faec45b4c9 (patch)
treed2deff0caf27f19c1103254777c0045f10ca12ad /make
parentc521c75a2d5e495bc445a7ea575657d642e25435 (diff)
A bit of static lingering
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7549 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'make')
-rw-r--r--make/configure.pm8
1 files changed, 2 insertions, 6 deletions
diff --git a/make/configure.pm b/make/configure.pm
index 1c475aedf..448ad90da 100644
--- a/make/configure.pm
+++ b/make/configure.pm
@@ -116,11 +116,8 @@ sub getmodules
if ($name =~ /^m_(.+)\.cpp$/)
{
$mod = $1;
- if ($mod !~ /_static$/)
- {
- $main::modlist[$i++] = $mod;
- print ".";
- }
+ $main::modlist[$i++] = $mod;
+ print ".";
}
}
closedir(DIRHANDLE);
@@ -182,7 +179,6 @@ sub dumphash()
print "\033[0mMax away length:\033[1;32m\t\t$main::config{MAX_AWAY}\033[0m\n";
print "\033[0mGCC Version Found:\033[1;32m\t\t$main::config{GCCVER}.x\033[0m\n";
print "\033[0mCompiler program:\033[1;32m\t\t$main::config{CC}\033[0m\n";
- print "\033[0mStatic modules:\033[1;32m\t\t\t$main::config{STATIC_LINK}\033[0m\n";
print "\033[0mIPv6 Support:\033[1;32m\t\t\t$main::config{IPV6}\033[0m\n";
print "\033[0mIPv6 to IPv4 Links:\033[1;32m\t\t$main::config{SUPPORT_IP6LINKS}\033[0m\n";
print "\033[0mGnuTLS Support:\033[1;32m\t\t\t$main::config{USE_GNUTLS}\033[0m\n";