summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure10
-rw-r--r--make/utilities.pm1
2 files changed, 11 insertions, 0 deletions
diff --git a/configure b/configure
index 76f1543c6..f4d910050 100755
--- a/configure
+++ b/configure
@@ -817,6 +817,7 @@ if (($config{USE_GNUTLS} eq "n") && ($config{USE_OPENSSL} eq "n")) {
print "Skipping SSL Certificate generation, SSL support is not available.\n\n";
}
+depcheck();
writefiles(1);
makecache();
@@ -1155,6 +1156,15 @@ EOF
chmod 0744, 'inspircd';
}
+sub depcheck
+{
+ getmodules();
+ for my $mod (@modlist) {
+ getcompilerflags("src/modules/m_$mod.cpp");
+ getlinkerflags("src/modules/m_$mod.cpp");
+ }
+}
+
sub prepare_dynamic_makefile
{
my $i = 0;
diff --git a/make/utilities.pm b/make/utilities.pm
index 22425714a..ad7a32f8f 100644
--- a/make/utilities.pm
+++ b/make/utilities.pm
@@ -454,6 +454,7 @@ sub translate_functions($$)
my $err = $@;
#$err =~ s/at .+? line \d+.*//g;
print "\n\nConfiguration failed. The following error occured:\n\n$err\n";
+ print "\nMake sure you have pkg-config installed\n";
print "\nIn the case of gnutls configuration errors on debian,\n";
print "Ubuntu, etc, you should ensure that you have installed\n";
print "gnutls-bin as well as gnutls-dev and gnutls.\n";