]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - configure
Fix listmodes when the config does not specify a wildcard size entry.
[user/henk/code/inspircd.git] / configure
1 #!/usr/bin/env perl
2
3 #
4 # InspIRCd -- Internet Relay Chat Daemon
5 #
6 #   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
7 #   Copyright (C) 2007, 2009 Dennis Friis <peavey@inspircd.org>
8 #   Copyright (C) 2003, 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
9 #   Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
10 #   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
11 #   Copyright (C) 2007 John Brooks <john.brooks@dereferenced.net>
12 #   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
13 #   Copyright (C) 2003-2006 Craig McLure <craig@chatspike.net>
14 #
15 # This file is part of InspIRCd.  InspIRCd is free software: you can
16 # redistribute it and/or modify it under the terms of the GNU General Public
17 # License as published by the Free Software Foundation, version 2.
18 #
19 # This program is distributed in the hope that it will be useful, but WITHOUT
20 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
21 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
22 # details.
23 #
24 # You should have received a copy of the GNU General Public License
25 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
26 #
27
28
29 BEGIN {
30         require 5.8.0;
31 }
32
33 use strict;
34 use warnings FATAL => qw(all);
35
36 use Data::Dumper;
37 BEGIN {
38         $Data::Dumper::Sortkeys = 1;
39         $Data::Dumper::Useqq = 1;
40 };
41
42 use File::Copy ();
43 use Socket;
44 use Cwd;
45 use Getopt::Long;
46
47 # Utility functions for our buildsystem
48 use make::utilities;
49 use make::configure;
50 use make::gnutlscert;
51 use make::opensslcert;
52
53 ###############################################################################################
54 #
55 #                                 NON-EDITABLE VARIABLES
56 #
57 ###############################################################################################
58
59 our ($opt_use_gnutls, $opt_rebuild, $opt_use_openssl, $opt_nointeractive, $opt_ports,
60     $opt_epoll, $opt_kqueue, $opt_noports, $opt_noepoll, $opt_nokqueue,
61     $opt_noipv6, $opt_maxbuf, $opt_disable_debug, $opt_freebsd_port,
62         $opt_system, $opt_uid);
63
64 our ($opt_cc, $opt_base_dir, $opt_config_dir, $opt_module_dir, $opt_binary_dir, $opt_data_dir, $opt_log_dir);
65
66 sub list_extras ();
67
68 sub enable_extras (@);
69
70 sub disable_extras (@);
71
72 my @opt_enableextras;
73 my @opt_disableextras;
74
75 GetOptions (
76         'enable-gnutls' => \$opt_use_gnutls,
77         'rebuild' => \$opt_rebuild,
78         'system' => \$opt_system,
79         'uid=s' => \$opt_uid,
80         'enable-openssl' => \$opt_use_openssl,
81         'disable-interactive' => \$opt_nointeractive,
82         'enable-ports' => \$opt_ports,
83         'enable-epoll' => \$opt_epoll,
84         'enable-kqueue' => \$opt_kqueue,
85         'disable-ports' => \$opt_noports,
86         'disable-epoll' => \$opt_noepoll,
87         'disable-kqueue' => \$opt_nokqueue,
88         'disable-ipv6' => \$opt_noipv6,
89         'with-cc=s' => \$opt_cc,
90         'with-maxbuf=i' => \$opt_maxbuf,
91         'enable-freebsd-ports-openssl' => \$opt_freebsd_port,
92         'prefix=s' => \$opt_base_dir,
93         'config-dir=s' => \$opt_config_dir,
94         'module-dir=s' => \$opt_module_dir,
95         'binary-dir=s' => \$opt_binary_dir,
96         'data-dir=s' => \$opt_data_dir,
97         'log-dir=s' => \$opt_log_dir,
98         'disable-debuginfo' => sub { $opt_disable_debug = 1 },
99         'help'  => sub { showhelp(); },
100         'update' => sub { update(); },
101         'clean' => sub { clean(); },
102         'list-extras' => sub { list_extras; exit 0; }, # This, --enable-extras, and --disable-extras are for non-interactive managing.
103         'enable-extras=s@' => \@opt_enableextras, # ^
104         'disable-extras=s@' => \@opt_disableextras, # ^
105         'generate-openssl-cert' => sub { make_openssl_cert(); exit(0); },
106         'generate-gnutls-cert' => sub { make_gnutls_cert(); exit(0); }
107 );
108
109 if (scalar(@opt_enableextras) + scalar(@opt_disableextras) > 0) {
110         @opt_enableextras = split /,/, join(',', @opt_enableextras);
111         @opt_disableextras = split /,/, join(',', @opt_disableextras);
112         enable_extras(@opt_enableextras);
113         disable_extras(@opt_disableextras);
114         list_extras;
115         print "Remember: YOU are responsible for making sure any libraries needed have been installed!\n";
116         exit 0;
117 }
118
119 our $interactive = !(
120         (defined $opt_base_dir) ||
121         (defined $opt_config_dir) ||
122         (defined $opt_module_dir) ||
123         (defined $opt_base_dir) ||
124         (defined $opt_binary_dir) ||
125         (defined $opt_data_dir) ||
126         (defined $opt_log_dir) ||
127         (defined $opt_nointeractive) ||
128         (defined $opt_cc) ||
129         (defined $opt_noipv6) ||
130         (defined $opt_kqueue) ||
131         (defined $opt_epoll) ||
132         (defined $opt_ports) ||
133         (defined $opt_use_openssl) ||
134         (defined $opt_nokqueue) ||
135         (defined $opt_noepoll) ||
136         (defined $opt_noports) ||
137         (defined $opt_maxbuf) ||
138         (defined $opt_system) ||
139         (defined $opt_uid) ||
140         (defined $opt_use_gnutls) ||
141         (defined $opt_freebsd_port)
142 );
143
144 chomp(our $topdir = getcwd());
145 our $this = resolve_directory($topdir);                                         # PWD, Regardless.
146 our @modlist = ();                                                                      # Declare for Module List..
147 our %config = ();                                                                       # Initiate Configuration Hash..
148 our $cache_loaded = getcache();
149 $config{ME} = resolve_directory($topdir);                               # Present Working Directory
150
151 $config{BASE_DIR} = $config{ME}."/run";
152
153 if (defined $opt_base_dir) {
154         $config{BASE_DIR} = $opt_base_dir;
155 } elsif (defined $opt_system) {
156         $config{BASE_DIR} = '/var/lib/inspircd';
157 }
158
159 if (defined $opt_system) {
160         $config{UID} = $opt_uid || 'ircd';
161         $config{CONFIG_DIR}      = '/etc/inspircd';
162         $config{MODULE_DIR}      = '/usr/lib/inspircd';
163         $config{BINARY_DIR}      = '/usr/sbin/';
164         $config{BUILD_DIR}       = resolve_directory($config{ME}."/build");         # Build Directory
165         $config{DATA_DIR}        = '/var/inspircd';
166         $config{LOG_DIR}         = '/var/log/inspircd';
167 } else {
168         $config{UID} = $opt_uid || $<;
169         $config{CONFIG_DIR}      = resolve_directory($config{BASE_DIR}."/conf");        # Configuration Directory
170         $config{MODULE_DIR}      = resolve_directory($config{BASE_DIR}."/modules");     # Modules Directory
171         $config{BINARY_DIR}      = resolve_directory($config{BASE_DIR}."/bin");         # Binary Directory
172         $config{BUILD_DIR}       = resolve_directory($config{ME}."/build");         # Build Directory
173         $config{DATA_DIR}        = resolve_directory($config{BASE_DIR}."/data");        # Data directory
174         $config{LOG_DIR}         = resolve_directory($config{BASE_DIR}."/logs");        # Log directory
175 }
176
177 if (defined $opt_config_dir) {
178         $config{CONFIG_DIR} = $opt_config_dir;
179 }
180 if (defined $opt_module_dir) {
181         $config{MODULE_DIR} = $opt_module_dir;
182 }
183 if (defined $opt_binary_dir) {
184         $config{BINARY_DIR} = $opt_binary_dir;
185 }
186 if (defined $opt_data_dir) {
187         $config{DATA_DIR} = $opt_data_dir;
188 }
189 if (defined $opt_log_dir) {
190         $config{LOG_DIR} = $opt_log_dir;
191 }
192 chomp($config{HAS_GNUTLS}   = `pkg-config --modversion gnutls 2>/dev/null`); # GNUTLS Version.
193
194 if (defined $opt_freebsd_port)
195 {
196         chomp($config{HAS_OPENSSL} = `pkg-config --modversion openssl 2>/dev/null`);
197         chomp($config{HAS_OPENSSL_PORT}  = `pkg-config --modversion openssl 2>/dev/null`);
198         $config{USE_FREEBSD_BASE_SSL} = "n";
199 }
200 else
201 {
202         if ($^O eq "freebsd")
203         {
204                 # default: use base ssl
205                 chomp($config{HAS_OPENSSL} = `openssl version | cut -d ' ' -f 2`);                      # OpenSSL version, freebsd specific
206                 chomp($config{HAS_OPENSSL_PORT}  = `pkg-config --modversion openssl 2>/dev/null`);      # Port version, may be different
207         }
208         else
209         {
210                 chomp($config{HAS_OPENSSL}  = `pkg-config --modversion openssl 2>/dev/null`);           # Openssl version, others
211                 $config{HAS_OPENSSL_PORT} = "";
212         }
213 }
214
215 chomp(our $gnutls_ver = $config{HAS_GNUTLS});
216 chomp(our $openssl_ver = $config{HAS_OPENSSL});
217 $config{USE_GNUTLS}         = "n";
218 if (defined $opt_use_gnutls)
219 {
220         $config{USE_GNUTLS} = "y";                                      # Use gnutls.
221 }
222 $config{USE_OPENSSL}    = "n";                                          # Use openssl.
223 if (defined $opt_use_openssl)
224 {
225         $config{USE_OPENSSL} = "y";
226 }
227
228 if (!defined $opt_disable_debug) {
229         $config{OPTIMISATI}      = "-g1";                               # Optimisation Flag
230 } else {
231         $config{OPTIMISATI}      = "-O2";
232 }
233
234 $config{HAS_STRLCPY}    = "false";                                      # strlcpy Check.
235 $config{HAS_STDINT}      = "false";                                     # stdint.h check
236 $config{USE_KQUEUE}      = "y";                                         # kqueue enabled
237 if (defined $opt_nokqueue) {
238         $config{USE_KQUEUE} = "n";
239 }
240 $config{USE_POLL}     = "y";                                    # poll enabled
241 $config{USE_EPOLL}        = "y";                                        # epoll enabled
242 if (defined $opt_noepoll)
243 {
244         $config{USE_EPOLL} = "n";
245 }
246 $config{USE_PORTS}        = "y";                                        # epoll enabled
247 if (defined $opt_noports)
248 {
249         $config{USE_PORTS} = "n";
250 }
251 $config{_SOMAXCONN} = SOMAXCONN;                                        # Max connections in accept queue
252 $config{OSNAME}             = $^O;                                      # Operating System Name
253 $config{IS_DARWIN}        = "NO";                                       # Is OSX?
254 $config{STARTSCRIPT}      = "inspircd";                 # start script?
255 $config{DESTINATION}      = "BASE";                             # Is target path.
256 if ($config{OSNAME} =~ /darwin/i)
257 {
258         $config{IS_DARWIN} = "YES";
259         $config{STARTSCRIPT}      = "org.inspircd.plist";               # start script for OSX.
260         $config{CC}                 = "xcrun clang++";                                  # C++ compiler for OSX.
261 }
262 else
263 {
264         $config{CC}                 = "g++";                                            # C++ compiler
265 }
266 if (defined $opt_cc)
267 {
268         $config{CC} = $opt_cc;
269 }
270 our $exec = $config{CC} . " -dumpversion | cut -c 1";
271 chomp($config{GCCVER}           = `$exec`);                             # Major GCC Version
272 $exec = $config{CC} . " -dumpversion | cut -c 3";
273 chomp($config{GCCMINOR}         = `$exec`);
274 $config{MAXBUF}                 = "512";                                # Max buffer size
275
276 if ($config{HAS_OPENSSL} =~ /^([-[:digit:].]+)(?:[a-z])?(?:\-[a-z][0-9])?/) {
277         $config{HAS_OPENSSL} = $1;
278 } else {
279         $config{HAS_OPENSSL} = "";
280 }
281
282 if (($config{GCCVER} eq "") || ($config{GCCMINOR} eq "")) {
283         if ($config{IS_DARWIN} eq "YES") {
284                 print $config{CC} . " was not found! You require clang++ (the LLVM C++ compiler, part of the OSX developer tools) to build InspIRCd!\n";
285         } else {
286                 print $config{CC} . " was not found! You require g++ (the GNU C++ compiler, part of GCC) to build InspIRCd!\n";         
287         }
288         exit;
289 }
290
291 # Get and Set some important vars..
292 getmodules();
293
294 sub clean
295 {
296         unlink(".config.cache");
297 }
298
299 our ($has_epoll, $has_ports, $has_kqueue) = (0, 0, 0);
300
301 sub update
302 {
303         eval {
304                 chomp($topdir = getcwd());
305                 $this = resolve_directory($topdir);                                          # PWD, Regardless.
306                 getmodules();
307                 # Does the cache file exist?
308                 if (!getcache()) {
309                         # No, No it doesn't.. *BASH*
310                         print "You have not run ./configure before. Please do this before trying to run the update script.\n";
311                         exit 0;
312                 } else {
313                         # We've Loaded the cache file and all our variables..
314                         print "Updating files...\n";
315                         if (defined($opt_disable_debug) && $opt_disable_debug == 1)
316                         {
317                                 print "Disabling debug information (-g).\n";
318                                 $config{OPTIMISATI} = "";
319                         }
320                         $has_epoll = $config{HAS_EPOLL};
321                         $has_ports = $config{HAS_PORTS};
322                         $has_kqueue = $config{HAS_KQUEUE};
323                         writefiles(1);
324                         makecache();
325                         print "Complete.\n";
326                         exit;
327                 }
328         };
329         if ($@)
330         {
331                 print "Configure update failed: $@\n";
332         }
333         exit;
334 }
335
336
337 sub test_compile {
338         my $feature = shift;
339         my $fail = 0;
340         $fail ||= system "$config{CC} -o test_$feature make/check_$feature.cpp >/dev/null 2>&1";
341         $fail ||= system "./test_$feature";
342         unlink "test_$feature";
343         return !$fail;
344 }
345
346 print "Running non-interactive configure...\n" unless $interactive;
347 print "Checking for cache from previous configure... ";
348 print ($cache_loaded ? "found\n" : "not found\n");
349 $config{SYSTEM} = lc $^O;
350 print "Checking operating system version... $config{SYSTEM}\n";
351
352 $exec = $config{CC} . " -dumpversion | cut -c 1";
353 chomp($config{GCCVER}           = `$exec`);                             # Major GCC Version
354 $exec = $config{CC} . " -dumpversion | cut -c 3";
355 chomp($config{GCCMINOR}         = `$exec`);
356
357 printf "Checking if stdint.h exists... ";
358 $config{HAS_STDINT} = "true";
359 our $fail = 0;
360 open(STDINT, "</usr/include/stdint.h") or $config{HAS_STDINT} = "false";
361 if ($config{HAS_STDINT} eq "true") {
362         close(STDINT);
363 }
364 print "yes\n" if $config{HAS_STDINT} eq "true";
365 print "no\n" if $config{HAS_STDINT} eq "false";
366
367 printf "Checking if strlcpy exists... ";
368 # Perform the strlcpy() test..
369 $config{HAS_STRLCPY} = "false";
370 $fail = 0;
371 open(STRLCPY, "</usr/include/string.h") or $fail = 1;
372 if (!$fail) {
373         while (defined(my $line = <STRLCPY>)) {
374                 chomp($line);
375                 # try and find the delcaration of:
376                 # size_t strlcpy(...)
377                 if ($line =~ /size_t(\0x9|\s)+strlcpy/) {
378                         $config{HAS_STRLCPY} = "true";
379                 }
380         }
381         close(STRLCPY);
382 }
383 print "yes\n" if $config{HAS_STRLCPY} eq "true";
384 print "no\n" if $config{HAS_STRLCPY} eq "false";
385
386 printf "Checking if kqueue exists... ";
387 $has_kqueue = 0;
388 $fail = 0;
389 open(KQUEUE, "</usr/include/sys/event.h") or $fail = 1;
390 if (!$fail) {
391         while (defined(my $line = <KQUEUE>)) {
392                 chomp($line);
393                 # try and find the delcaration of:
394                 # int kqueue(void);
395                 if ($line =~ /int(\0x9|\s)+kqueue/) {
396                         $has_kqueue = 1;
397                 }
398         }
399         close(KQUEUE);
400 }
401 print "yes\n" if $has_kqueue == 1;
402 print "no\n" if $has_kqueue == 0;
403
404 printf "Checking for epoll support... ";
405 $has_epoll = test_compile('epoll');
406 print $has_epoll ? "yes\n" : "no\n";
407
408 printf "Checking for eventfd support... ";
409 $config{HAS_EVENTFD} = test_compile('eventfd') ? 'true' : 'false';
410 print $config{HAS_EVENTFD} eq 'true' ? "yes\n" : "no\n";
411
412 printf "Checking if Solaris I/O completion ports are available... ";
413 $has_ports = 0;
414 our $system = `uname -s`;
415 chomp ($system);
416 $has_ports = 1 if ($system eq "SunOS");
417
418 if ($has_ports) {
419         my $kernel = `uname -r`;
420         chomp($kernel);
421         if (($kernel !~ /^5\.1./)) {
422                 $has_ports = 0;
423         }
424 }
425 print "yes\n" if $has_ports == 1;
426 print "no\n" if $has_ports == 0;
427
428 $config{HAS_EPOLL} = $has_epoll;
429 $config{HAS_KQUEUE} = $has_kqueue;
430
431 printf "Checking for libgnutls... ";
432 if (defined($config{HAS_GNUTLS}) && (($config{HAS_GNUTLS}) || ($config{HAS_GNUTLS} eq "y"))) {
433         if (defined($gnutls_ver) && ($gnutls_ver ne "")) {
434                 print "yes\n";
435                 $config{HAS_GNUTLS} = "y";
436         } else {
437                 print "no\n";
438                 $config{HAS_GNUTLS} = "n";
439         }
440 } else {
441         print "no\n";
442         $config{HAS_GNUTLS} = "n";
443 }
444
445 printf "Checking for openssl... ";
446 if (defined($config{HAS_OPENSSL}) && (($config{HAS_OPENSSL}) || ($config{HAS_OPENSSL} eq "y"))) {
447         if (defined($openssl_ver) && ($openssl_ver ne "")) {
448                 print "yes\n";
449                 $config{HAS_OPENSSL} = "y";
450         } else {
451                 print "no\n";
452                 $config{HAS_OPENSSL} = "n";
453         }
454 } else {
455         print "no\n";
456         $config{HAS_OPENSSL} = "n";
457 }
458
459 printf "Checking if you are running an ancient, unsupported OS... ";
460 if ($config{OSNAME} =~ /FreeBSD/i)
461 {
462         my $version = `uname -r`;
463         if ($version =~ /^4\./)
464         {
465                 print "yes.\n";
466                 print "FreeBSD 4.x is no longer supported. By ANYONE.\n";
467                 print "To build, you will need to add the following to CXXFLAGS:\n";
468                 print "\t-L/usr/local/lib -lgnugetopt -DHAVE_DECL_GETOPT=1\n";
469         }
470         else
471         {
472                 print "no ($version)\n";
473         }
474 }
475 else
476 {
477         print "no ($config{OSNAME})\n";
478 }
479
480 ################################################################################
481 #                         BEGIN INTERACTIVE PART                              #
482 ################################################################################
483
484 # Clear the Screen..
485 if ($interactive)
486 {
487         print "\e[2J\e[0G\e[0d"; # J = Erase in Display, 2 = Entire Screen, (G, d) = Move cursor to (..,..)
488         my $wholeos = $^O;
489
490         my $rev = getrevision();
491         # Display Introduction Message..
492         print <<"STOP" ;
493 Welcome to the \e[1mInspIRCd\e[0m configuration program! (\e[1minteractive mode\e[0m)
494 \e[1mPackage maintainers: Type ./configure --help for non-interactive help\e[0m
495
496 *** If you are unsure of any of these values, leave it blank for    ***
497 *** standard settings that will work, and your server will run      ***
498 *** using them. Please consult your IRC network admin if in doubt.  ***
499
500 Press \e[1m<RETURN>\e[0m to accept the default for any option, or enter
501 a new value. Please note: You will \e[1mHAVE\e[0m to read the docs
502 dir, otherwise you won't have a config file!
503
504 Your operating system is: \e[1;32m$config{OSNAME}\e[0m ($wholeos)
505 Your InspIRCd revision ID is \e[1;32mr$rev\e[0m
506 STOP
507         if ($rev eq "r0") {
508                 print " (Non-SVN build)";
509         }
510         print ".\n\n";
511
512         $config{CHANGE_COMPILER} = "n";
513         print "I have detected the following compiler: \e[1;32m$config{CC}\e[0m (version \e[1;32m$config{GCCVER}.$config{GCCMINOR}\e[0m)\n";
514
515         while (($config{GCCVER} < 3) || ($config{GCCVER} eq "")) {
516                 print "\e[1;32mIMPORTANT!\e[0m A GCC 2.x compiler has been detected, and
517 should NOT be used. You should probably specify a newer compiler.\n\n";
518                 yesno('CHANGE_COMPILER',"Do you want to change the compiler?");
519                 if ($config{CHANGE_COMPILER} =~ /y/i) {
520                         print "What command do you want to use to invoke your compiler?\n";
521                         print "[\e[1;32m$config{CC}\e[0m] -> ";
522                         chomp($config{CC} = <STDIN>);
523                         if ($config{CC} eq "") {
524                                 $config{CC} = "g++";
525                         }
526                         chomp(my $foo = `$config{CC} -dumpversion | cut -c 1`);
527                         if ($foo ne "") {
528                                 chomp($config{GCCVER}       = `$config{CC} -dumpversion | cut -c 1`); # we must redo these if we change compilers
529                                 chomp($config{GCCMINOR}     = `$config{CC} -dumpversion | cut -c 3`);
530                                 print "Queried compiler: \e[1;32m$config{CC}\e[0m (version \e[1;32m$config{GCCVER}.$config{GCCMINOR}\e[0m)\n";
531                                 if ($config{GCCVER} < 3) {
532                                         print "\e[1;32mGCC 2.x WILL NOT WORK!\e[0m. Let's try that again, shall we?\n";
533                                 }
534                         }
535                         else {
536                                 print "\e[1;32mWARNING!\e[0m Could not execute the compiler you specified. You may want to try again.\n";
537                         }
538                 }
539         }
540
541         print "\n";
542
543         # Directory Settings..
544         my $tmpbase = $config{BASE_DIR};
545         dir_check("do you wish to install the InspIRCd base", "BASE_DIR");
546         if ($tmpbase ne $config{BASE_DIR}) {
547                 $config{CONFIG_DIR}      = resolve_directory($config{BASE_DIR}."/conf");           # Configuration Dir
548                 $config{MODULE_DIR}      = resolve_directory($config{BASE_DIR}."/modules");     # Modules Directory
549                 $config{DATA_DIR}        = resolve_directory($config{BASE_DIR}."/data");        # Data Directory
550                 $config{LOG_DIR}         = resolve_directory($config{BASE_DIR}."/logs");        # Log Directory
551                 $config{BINARY_DIR}      = resolve_directory($config{BASE_DIR}."/bin");     # Binary Directory
552         }
553
554         dir_check("are the configuration files", "CONFIG_DIR");
555         dir_check("are the modules to be compiled to", "MODULE_DIR");
556         dir_check("is the IRCd binary to be placed", "BINARY_DIR");
557         dir_check("are variable data files to be located in", "DATA_DIR");
558         dir_check("are the logs to be stored in", "LOG_DIR");
559         dir_check("do you want the build to take place", "BUILD_DIR");
560                 
561         my $chose_hiperf = 0;
562         if ($has_kqueue) {
563                 yesno('USE_KQUEUE',"You are running a BSD operating system, and kqueue\nwas detected. Would you like to enable kqueue support?\nThis is likely to increase performance.\nIf you are unsure, answer yes.\n\nEnable kqueue?");
564                 print "\n";
565                 if ($config{USE_KQUEUE} eq "y") {
566                         $chose_hiperf = 1;
567                 }
568         }
569         if ($has_epoll) {
570                 yesno('USE_EPOLL',"You are running a Linux 2.6+ operating system, and epoll\nwas detected. Would you like to enable epoll support?\nThis is likely to increase performance.\nIf you are unsure, answer yes.\n\nEnable epoll?");
571                 print "\n";
572                 if ($config{USE_EPOLL} eq "y") {
573                         $chose_hiperf = 1;
574                 }
575         }
576         if ($has_ports) {
577                 yesno('USE_PORTS',"You are running Solaris 10.\nWould you like to enable I/O completion ports support?\nThis is likely to increase performance.\nIf you are unsure, answer yes.\n\nEnable support for I/O completion ports?");
578                 print "\n";
579                 if ($config{USE_PORTS} eq "y") {
580                         $chose_hiperf = 1;
581                 }
582         }
583
584         if (!$chose_hiperf) {
585                 yesno('USE_POLL', "Would you like to use poll?\n This is likely to increase performance.\nIf you are unsure, answer yes.\n\nEnable poll?");
586                 if ($config{USE_POLL} ne "y")
587                 {
588                         print "No high-performance socket engines are available, or you chose\n";
589                         print "not to enable one. Defaulting to select() engine.\n\n";
590                 }
591         }
592
593         $config{USE_FREEBSD_BASE_SSL} = "n";
594         $config{USE_FREEBSD_PORTS_SSL} = "n";
595         if ($config{HAS_OPENSSL_PORT} ne "")
596         {
597                 $config{USE_FREEBSD_PORTS_SSL} = "y";
598                 print "I have detected the OpenSSL FreeBSD port installed on your system,\n";
599                 print "version \e[1;32m".$config{HAS_OPENSSL_PORT}."\e[0m. Your base system OpenSSL is version \e[1;32m".$openssl_ver."\e[0m.\n\n";
600                 yesno('USE_FREEBSD_PORTS_SSL', "Do you want to use the FreeBSD ports version?");
601                 print "\n";
602                 $config{USE_FREEBSD_BASE_SSL} = "y" if ($config{USE_FREEBSD_PORTS_SSL} eq "n");
603
604                 if ($config{USE_FREEBSD_BASE_SSL} eq "n")
605                 {
606                         # update to port version
607                         $openssl_ver = $config{HAS_OPENSSL_PORT};
608                 }
609         }
610         else
611         {
612                 $config{USE_FREEBSD_BASE_SSL} = "y" if ($^O eq "freebsd");
613         }
614
615         $config{USE_SSL} = "n";
616         $config{MODUPDATE} = 'n';
617
618         if ($config{HAS_GNUTLS} eq "y" || $config{HAS_OPENSSL} eq "y")
619         {
620                 print "Detected GnuTLS version: \e[1;32m" . $gnutls_ver . "\e[0m\n";
621                 print "Detected OpenSSL version: \e[1;32m" . $openssl_ver . "\e[0m\n\n";
622
623                 yesno('USE_SSL', "One or more SSL libraries detected. Would you like to enable SSL support?");
624                 if ($config{USE_SSL} eq "y")
625                 {
626                         if ($config{HAS_GNUTLS} eq "y")
627                         {
628                                 yesno('USE_GNUTLS',"Would you like to enable SSL with m_ssl_gnutls? (recommended)");
629                                 if ($config{USE_GNUTLS} eq "y")
630                                 {
631                                         print "\nUsing GnuTLS SSL module.\n";
632                                 }
633                         }
634
635                         if ($config{HAS_OPENSSL} eq "y")
636                         {
637                                 yesno('USE_OPENSSL', "Would you like to enable SSL with m_ssl_openssl?");
638                                 if ($config{USE_OPENSSL} eq "y")
639                                 {
640                                         print "\nUsing OpenSSL SSL module.\nYou will get better performance if you move to GnuTLS in the future.\n";
641                                 }
642                         }
643                 }
644         }
645         else
646         {
647                 print "\nCould not detect OpenSSL or GnuTLS. Make sure pkg-config is installed and\n";
648                 print "is in your path.\n\n";
649         }
650
651         yesno('MODUPDATE',"Would you like to check for updates to third-party modules?");
652         print "\n";
653         if ($config{MODUPDATE} eq "y") {
654                 print "Checking for upgrades to extra and third-party modules... ";
655                 system "./modulemanager upgrade";
656         }
657 }
658
659 # We are on a POSIX system, we can enable POSIX extras without asking
660 symlink "extra/m_regex_posix.cpp", "src/modules/m_regex_posix.cpp";
661
662 dumphash();
663
664 if (($config{USE_GNUTLS} eq "y") && ($config{HAS_GNUTLS} ne "y"))
665 {
666         print "Sorry, but I couldn't detect GnuTLS. Make sure gnutls-config is in your path.\n";
667         exit(0);
668 }
669 if (($config{USE_OPENSSL} eq "y") && ($config{HAS_OPENSSL} ne "y"))
670 {
671         print "Sorry, but I couldn't detect OpenSSL. Make sure openssl is in your path.\n";
672         exit(0);
673 }
674 our $failed = 0;
675
676 $config{CERTGEN} ||= 'y';
677 yesno('CERTGEN',"Would you like to generate SSL certificates now?") if ($interactive && ($config{USE_GNUTLS} eq "y" || $config{USE_OPENSSL} eq "y"));
678
679 if ($config{USE_GNUTLS} eq "y") {
680         unless (-r "src/modules/m_ssl_gnutls.cpp") {
681                 print "Symlinking src/modules/m_ssl_gnutls.cpp from extra/\n";
682                 symlink "extra/m_ssl_gnutls.cpp", "src/modules/m_ssl_gnutls.cpp" or print STDERR "Symlink failed: $!";
683         }
684         if ($interactive && $config{CERTGEN} eq 'y')
685         {
686                 unless (-r "$config{CONFIG_DIR}/key.pem" && -r "$config{CONFIG_DIR}/cert.pem") {
687                         print "SSL certificates not found, generating.. \n\n
688 *************************************************************
689 * Generating the private key may take some time, once done, *
690 * answer the questions which follow. If you are unsure,     *
691 * just hit enter!                                           *
692 *************************************************************\n\n";
693                         $failed = make_gnutls_cert();
694                         if ($failed) {
695                                 print "\n\e[1;32mCertificate generation failed!\e[0m\n\n";
696                         } else {
697                                 print "\nCertificate generation complete, copying to config directory... ";
698                                 File::Copy::move("key.pem", "$config{CONFIG_DIR}/key.pem") or print STDERR "Could not copy key.pem!\n";
699                                 File::Copy::move("cert.pem", "$config{CONFIG_DIR}/cert.pem") or print STDERR "Could not copy cert.pem!\n";
700                                 print "Done.\n\n";
701                         }
702                 }
703                 else {
704                         print "SSL certificates found, skipping.\n\n";
705                 }
706         }
707         else
708         {
709                 print "Skipping SSL certificate generation\nin non-interactive mode.\n\n";
710         }
711 }
712
713 if ($config{USE_OPENSSL} eq "y") {
714         unless (-r "src/modules/m_ssl_openssl.cpp") {
715                 print "Symlinking src/modules/m_ssl_openssl.cpp from extra/\n";
716                 symlink "extra/m_ssl_openssl.cpp", "src/modules/m_ssl_openssl.cpp" or print STDERR "Symlink failed: $!";
717         }
718         $failed = 0;
719         if ($interactive && $config{CERTGEN} eq 'y')
720         {
721                 unless (-r "$config{CONFIG_DIR}/key.pem" && -r "$config{CONFIG_DIR}/cert.pem") {
722                         print "SSL certificates not found, generating.. \n\n
723 *************************************************************
724 * Generating the certificates may take some time, go grab a *
725 * coffee or something.                                      *
726 *************************************************************\n\n";
727                         make_openssl_cert();
728                         print "\nCertificate generation complete, copying to config directory... ";
729                         File::Copy::move("key.pem", "$config{CONFIG_DIR}/key.pem") or print STDERR "Could not copy key.pem!\n";
730                         File::Copy::move("cert.pem", "$config{CONFIG_DIR}/cert.pem") or print STDERR "Could not copy cert.pem!\n";
731                         File::Copy::move("dhparams.pem", "$config{CONFIG_DIR}/dhparams.pem") or print STDERR "Could not copy dhparams.pem!\n";
732                         print "Done.\n\n";
733                 } else {
734                         print "SSL certificates found, skipping.\n\n"
735                 }
736         }
737         else
738         {
739                 print "Skipping SSL certificate generation\nin non-interactive mode.\n\n";
740         }
741 }
742 if (($config{USE_GNUTLS} eq "n") && ($config{USE_OPENSSL} eq "n")) {
743         print "Skipping SSL certificate generation as SSL support is not available.\n\n";
744 }
745
746 depcheck();
747 writefiles(1);
748 makecache();
749
750 print "\n\n";
751 print "To build your server with these settings, please run '\e[1;32mmake\e[0m' now.\n";
752 if (($config{USE_GNUTLS} eq "y") || ($config{USE_OPENSSL} eq "y")) {
753         print "Please note: for \e[1;32mSSL support\e[0m you will need to load required\n";
754         print "modules in your config. This configure script has added those modules to the\n";
755         print "build process. For more info, please refer to:\n";
756         print "\e[1;32mhttp://wiki.inspircd.org/Installation_From_Tarball\e[0m\n";
757 }
758 print "*** \e[1;32mRemember to edit your configuration files!!!\e[0m ***\n\n\n";
759 if (($config{OSNAME} eq "OpenBSD") && ($config{CC} ne "eg++")) {
760         print "\e[1;32mWARNING!\e[0m You are running OpenBSD but you are using the base gcc package\nrather than eg++. This compile will most likely fail, but I'm letting you\ngo ahead with it anyway, just in case I'm wrong :-)\n";
761 }
762
763 if ($config{GCCVER} < "3") {
764         print <<FOO2;
765 \e[1;32mWARNING!\e[0m You are attempting to compile InspIRCd on GCC 2.x!
766 GCC 2.x series compilers only had partial (read as broken) C++ support, and
767 your compile will most likely fail horribly! If you have any problems, do NOT
768 report them to the bugtracker or forums without first upgrading your compiler
769 to a newer 3.x or 4.x (or whatever is available currently) version.
770 FOO2
771 }
772
773 ################################################################################
774 #                             HELPER FUNCTIONS                          #
775 ################################################################################
776 sub getcache {
777         # Retrieves the .config.cache file, and loads values into the main config hash.
778         open(CACHE, ".config.cache") or return 0;
779         while (<CACHE>) {
780                 chomp;
781                 # Ignore Blank lines, and comments..
782                 next if /^\s*$/;
783                 next if /^\s*#/;
784                 my ($key, $value) = split("=", $_, 2);
785                 $value =~ /^\"(.*)\"$/;
786                 # Do something with data here!
787                 $config{$key} = $1;
788         }
789         close(CACHE);
790         return 1;
791 }
792
793 sub makecache {
794         # Dump the contents of %config
795         print "Writing \e[1;32mcache file\e[0m for future ./configures ...\n";
796         open(FILEHANDLE, ">.config.cache");
797         foreach my $key (keys %config) {
798                 print FILEHANDLE "$key=\"$config{$key}\"\n";
799         }
800         close(FILEHANDLE);
801 }
802
803 sub dir_check {
804         my ($desc, $hash_key) = @_;
805         my $complete = 0;
806         while (!$complete) {
807                 print "In what directory $desc?\n";
808                 print "[\e[1;32m$config{$hash_key}\e[0m] -> ";
809                 chomp(my $var = <STDIN>);
810                 if ($var eq "") {
811                         $var = $config{$hash_key};
812                 }
813                 if ($var =~ /^\~\/(.+)$/) {
814                         # Convert it to a full path..
815                         $var = resolve_directory($ENV{HOME} . "/" . $1);
816                 }
817                 elsif ((($config{OSNAME} =~ /MINGW32/i) and ($var !~ /^[A-Z]{1}:\\.*/)) and (substr($var,0,1) ne "/"))
818                 {
819                         # Assume relative Path was given.. fill in the rest.
820                         $var = $this . "/$var";
821                 }
822
823                 $var = resolve_directory($var);
824                 if (! -e $var) {
825                         print "$var does not exist. Create it?\n[\e[1;32my\e[0m] ";
826                         chomp(my $tmp = <STDIN>);
827                         if (($tmp eq "") || ($tmp =~ /^y/i)) {
828                                 # Attempt to Create the Dir..
829                                 my $chk = eval {
830                                         use File::Path ();
831                                         File::Path::mkpath($var, 0, 0777);
832                                         1;
833                                 };
834                                 unless (defined($chk) && -d $var) {
835                                         print "Unable to create directory. ($var)\n\n";
836                                         # Restart Loop..
837                                         next;
838                                 }
839                         } else {
840                                 # They said they don't want to create, and we can't install there.
841                                 print "\n\n";
842                                 next;
843                         }
844                 } else {
845                         if (!is_dir($var)) {
846                                 # Target exists, but is not a directory.
847                                 print "File $var exists, but is not a directory.\n\n";
848                                 next;
849                         }
850                 }
851                 # Either Dir Exists, or was created fine.
852                 $config{$hash_key} = $var;
853                 $complete = 1;
854                 print "\n";
855         }
856 }
857
858 our $SHARED = "";
859
860 my ($mliflags, $mfrules, $mobjs, $mfcount) = ("", "", "", 0);
861
862 sub writefiles {
863         my($writeheader) = @_;
864         # First File.. inspircd_config.h
865         chomp(my $incos = `uname -n -s -r`);
866         chomp(my $version = `sh src/version.sh`);
867         chomp(my $revision2 = getrevision());
868         my $branch = "InspIRCd-0.0";
869         if ($version =~ /^(InspIRCd-[0-9]+\.[0-9]+)\.[0-9]+/)
870         {
871                 $branch = $1;
872         }
873         if ($writeheader == 1)
874         {
875                 print "Writing \e[1;32minspircd_config.h\e[0m\n";
876                 open(FILEHANDLE, ">include/inspircd_config.h.tmp");
877                 print FILEHANDLE <<EOF;
878 /* Auto generated by configure, do not modify! */
879 #ifndef __CONFIGURATION_AUTO__
880 #define __CONFIGURATION_AUTO__
881
882 /* this is for windows support. */
883 #define CoreExport /**/
884 #define DllExport /**/
885
886 #define CONFIG_PATH "$config{CONFIG_DIR}"
887 #define DATA_PATH "$config{DATA_DIR}"
888 #define LOG_PATH "$config{LOG_DIR}"
889 #define MOD_PATH "$config{MODULE_DIR}"
890 #define SOMAXCONN_S "$config{_SOMAXCONN}"
891 #define ENTRYPOINT int main(int argc, char** argv)
892
893 EOF
894 print FILEHANDLE "#define MAXBUF " . ($config{MAXBUF}+2) . "\n";
895
896                 if ($config{OSNAME} =~ /SunOS/i) {
897                         print FILEHANDLE "#define IS_SOLARIS\n";
898                 }
899                 if ($config{OSNAME} =~ /MINGW32/i) {
900                         print FILEHANDLE "#define IS_MINGW\n";
901                 }
902                 if ($config{GCCVER} >= 3) {
903                         print FILEHANDLE "#define GCC3\n";
904                 }
905                 if ($config{HAS_STRLCPY} eq "true") {
906                         print FILEHANDLE "#define HAS_STRLCPY\n";
907                 }
908                 if ($config{HAS_STDINT} eq "true") {
909                         print FILEHANDLE "#define HAS_STDINT\n";
910                 }
911                 if ($config{HAS_EVENTFD} eq 'true') {
912                         print FILEHANDLE "#define HAS_EVENTFD\n";
913                 }
914                 if ($config{OSNAME} !~ /DARWIN/i) {
915                         print FILEHANDLE "#define HAS_CLOCK_GETTIME\n";
916                 }
917                 my $use_hiperf = 0;
918                 if (($has_kqueue) && ($config{USE_KQUEUE} eq "y")) {
919                         print FILEHANDLE "#define USE_KQUEUE\n";
920                         $config{SOCKETENGINE} = "socketengine_kqueue";
921                         $use_hiperf = 1;
922                 }
923                 if (($has_epoll) && ($config{USE_EPOLL} eq "y")) {
924                         print FILEHANDLE "#define USE_EPOLL\n";
925                         $config{SOCKETENGINE} = "socketengine_epoll";
926                         $use_hiperf = 1;
927                 }
928                 if (($has_ports) && ($config{USE_PORTS} eq "y")) {
929                         print FILEHANDLE "#define USE_PORTS\n";
930                         $config{SOCKETENGINE} = "socketengine_ports";
931                         $use_hiperf = 1;
932                 }
933                 # user didn't choose either epoll or select for their OS.
934                 # default them to USE_SELECT (ewwy puke puke)
935                 if (!$use_hiperf) {
936                         print "no hi-perf, " . $config{USE_POLL};
937                         if ($config{USE_POLL} eq "y")
938                         {
939                                 print FILEHANDLE "#define USE_POLL\n";
940                                 $config{SOCKETENGINE} = "socketengine_poll";
941                         }
942                         else
943                         {
944                                 print FILEHANDLE "#define USE_SELECT\n";
945                                 $config{SOCKETENGINE} = "socketengine_select";
946                         }
947                 }
948                 print FILEHANDLE "\n#include \"threadengines/threadengine_pthread.h\"\n\n#endif\n";
949                 close(FILEHANDLE);
950
951                 open(FILEHANDLE, ">include/inspircd_version.h.tmp");
952                 print FILEHANDLE <<EOF;
953 #define BRANCH "$branch"
954 #define VERSION "$version"
955 #define REVISION "$revision2"
956 #define SYSTEM "$incos"
957 EOF
958                 close FILEHANDLE;
959
960                 for my $file (qw(include/inspircd_config.h include/inspircd_version.h)) {
961                         my $diff = 0;
962                         open my $fh1, $file or $diff = 1;
963                         open my $fh2, $file.'.tmp' or die "Can't read $file.tmp that we just wrote: $!";
964                         while (!$diff) {
965                                 my $line1 = <$fh1>;
966                                 my $line2 = <$fh2>;
967                                 if (defined($line1) != defined($line2)) {
968                                         $diff = 1;
969                                 } elsif (!defined $line1) {
970                                         last;
971                                 } else {
972                                         $diff = ($line1 ne $line2);
973                                 }
974                         }
975                         if ($diff) {
976                                 unlink $file;
977                                 rename "$file.tmp", $file;
978                         } else {
979                                 unlink "$file.tmp";
980                         }
981                 }
982         }
983
984         # Write all .in files.
985         my $tmp = "";
986         my $file = "";
987         my $exe = "inspircd";
988
989         # Do this once here, and cache it in the .*.inc files,
990         # rather than attempting to read src/version.sh from
991         # compiled code -- we might not have the source to hand.
992         # Fix for bug#177 by Brain.
993
994         chomp($version = `sh ./src/version.sh`);
995         chomp(my $revision = getrevision());
996         $version = "$version(r$revision)";
997
998         # We can actually parse any file starting with . and ending with .inc,
999         # but right now we only parse .inspircd.inc to form './inspircd'
1000         prepare_dynamic_makefile();
1001
1002         my @dotfiles = qw(main.mk inspircd);
1003         push @dotfiles, 'org.inspircd.plist' if $config{OSNAME} eq 'darwin';
1004
1005         foreach my $file (@dotfiles) {
1006                 open(FILEHANDLE, "make/template/$file") or die "Can't open make/template/$file: $!";
1007                 $_ = join '', <FILEHANDLE>;
1008                 close(FILEHANDLE);
1009
1010                 $config{BUILD_DIR} ||= resolve_directory($config{ME}."/build");
1011
1012                 for my $var (qw(
1013                         CC SYSTEM BASE_DIR CONFIG_DIR MODULE_DIR BINARY_DIR BUILD_DIR DATA_DIR UID
1014                         STARTSCRIPT DESTINATION SOCKETENGINE
1015                 )) {
1016                         s/\@$var\@/$config{$var}/g;
1017                 }
1018                 s/\@EXECUTABLE\@/$exe/ if defined $exe;
1019                 s/\@VERSION\@/$version/ if defined $version;
1020
1021                 if ($file eq 'main.mk') {
1022                         print "Writing \e[1;32mGNUmakefile\e[0m ...\n";
1023
1024                         my $mk_tmp = $_;
1025                         s/\@IFDEF (\S+)/ifdef $1/g;
1026                         s/\@IFNDEF (\S+)/ifndef $1/g;
1027                         s/\@IFEQ (\S+) (\S+)/ifeq ($1,$2)/g;
1028                         s/\@ELSIFEQ (\S+) (\S+)/else ifeq ($1,$2)/g;
1029                         s/\@ELSE/else/g;
1030                         s/\@ENDIF/endif/g;
1031                         s/ *\@BSD_ONLY .*\n//g;
1032                         s/\@GNU_ONLY //g;
1033                         s/\@DO_EXPORT (.*)/export $1/g;
1034                         open MKF, '>GNUmakefile' or die "Can't write to GNUmakefile: $!";
1035                         print MKF $_;
1036                         close MKF;
1037
1038                         print "Writing \e[1;32mBSDmakefile\e[0m ...\n";
1039                         $_ = $mk_tmp;
1040                         s/\@IFDEF (\S+)/.if defined($1)/g;
1041                         s/\@IFNDEF (\S+)/.if !defined($1)/g;
1042                         s/\@IFEQ (\S+) (\S+)/.if $1 == $2/g;
1043                         s/\@ELSIFEQ (\S+) (\S+)/.elif $1 == $2/g;
1044                         s/\@ELSE/.else/g;
1045                         s/\@ENDIF/.endif/g;
1046                         s/\@BSD_ONLY //g;
1047                         s/ *\@GNU_ONLY .*\n//g;
1048                         $mk_tmp = $_;
1049                         $mk_tmp =~ s#\@DO_EXPORT (.*)#"MAKEENV += ".join ' ', map "$_='\${$_}'", split /\s/, $1#eg;
1050                         open MKF, '>BSDmakefile' or die "Can't write to BSDmakefile: $!";
1051                         print MKF $mk_tmp;
1052                         close MKF;
1053                 } else {
1054                         print "Writing \e[1;32m$file\e[0m ...\n";
1055                         open(FILEHANDLE, ">$file") or die("Can't write to $file: $!\n");
1056                         print FILEHANDLE $_;
1057                         close(FILEHANDLE);
1058                 }
1059         }
1060
1061         chmod 0755, 'inspircd';
1062 }
1063
1064 sub depcheck
1065 {
1066         getmodules();
1067         for my $mod (@modlist) {
1068                 getcompilerflags("src/modules/m_$mod.cpp");
1069                 getlinkerflags("src/modules/m_$mod.cpp");
1070         }
1071 }
1072
1073 sub prepare_dynamic_makefile
1074 {
1075         my $i = 0;
1076
1077         if (!$has_epoll)
1078         {
1079                 $config{USE_EPOLL} = 0;
1080         }
1081         if (!$has_kqueue)
1082         {
1083                 $config{USE_KQUEUE} = 0;
1084         }
1085         if (!$has_ports)
1086         {
1087                 $config{USE_PORTS} = 0;
1088         }
1089 }
1090
1091 # Routine to list out the extra/ modules that have been enabled.
1092 # Note: when getting any filenames out and comparing, it's important to lc it if the
1093 # file system is not case-sensitive (== Epoc, MacOS, OS/2 (incl DOS/DJGPP), VMS, Win32
1094 # (incl NetWare, Symbian)). Cygwin may or may not be case-sensitive, depending on
1095 # configuration, however, File::Spec does not currently tell us (it assumes Unix behavior).
1096 sub list_extras () {
1097         use File::Spec;
1098         # @_ not used
1099         my $srcdir = File::Spec->catdir("src", "modules");
1100         my $abs_srcdir = File::Spec->rel2abs($srcdir);
1101         local $_;
1102         my $dd;
1103         opendir $dd, File::Spec->catdir($abs_srcdir, "extra") or die (File::Spec->catdir($abs_srcdir, "extra") . ": $!\n");
1104         my @extras = map { File::Spec->case_tolerant() ? lc($_) : $_ } (readdir($dd));
1105         closedir $dd;
1106         undef $dd;
1107         opendir $dd, $abs_srcdir or die "$abs_srcdir: $!\n";
1108         my @sources = map { File::Spec->case_tolerant() ? lc($_) : $_ } (readdir($dd));
1109         closedir $dd;
1110         undef $dd;
1111         my $maxlen = (sort { $b <=> $a } (map {length($_)} (@extras)))[0];
1112         my %extras = ();
1113 EXTRA:  for my $extra (@extras) {
1114                 next if (File::Spec->curdir() eq $extra || File::Spec->updir() eq $extra);
1115                 my $abs_extra = File::Spec->catfile($abs_srcdir, "extra", $extra);
1116                 my $abs_source = File::Spec->catfile($abs_srcdir, $extra);
1117                 next unless ($extra =~ m/\.(cpp|h)$/ || (-d $abs_extra)); # C++ Source/Header, or directory
1118                 if (-l $abs_source) {
1119                         # Symlink, is it in the right place?
1120                         my $targ = readlink($abs_source);
1121                         my $abs_targ = File::Spec->rel2abs($targ, $abs_srcdir);
1122                         if ($abs_targ eq $abs_extra) {
1123                                 $extras{$extra} = "\e[32;1menabled\e[0m";
1124                         } else {
1125                                 $extras{$extra} = sprintf("\e[31;1mwrong symlink target (%s)\e[0m", $abs_targ);
1126                         }
1127                 } elsif (-e $abs_source) {
1128                         my ($devext, $inoext) = stat($abs_extra);
1129                         my ($devsrc, $inosrc, undef, $lnksrc) = stat($abs_source);
1130                         if ($lnksrc > 1) {
1131                                 if ($devsrc == $devext && $inosrc == $inoext) {
1132                                         $extras{$extra} = "\e[32;1menabled\e[0m";
1133                                 } else {
1134                                         $extras{$extra} = sprintf("\e[31;1mwrong hardlink target (%d:%d)\e[0m", $devsrc, $inosrc);
1135                                 }
1136                         } else {
1137                                 open my $extfd, "<", $abs_extra;
1138                                 open my $srcfd, "<", $abs_source;
1139                                 local $/ = undef;
1140                                 if (scalar(<$extfd>) eq scalar(<$srcfd>)) {
1141                                         $extras{$extra} = "\e[32;1menabled\e[0m";
1142                                 } else {
1143                                         $extras{$extra} = sprintf("\e[31;1mout of synch (re-copy)\e[0m");
1144                                 }
1145                         }
1146                 } else {
1147                         $extras{$extra} = "\e[33;1mdisabled\e[0m";
1148                 }
1149         }
1150         # Now let's add dependency info
1151         for my $extra (keys(%extras)) {
1152                 next unless $extras{$extra} =~ m/enabled/; # only process enabled extras.
1153                 my $abs_extra = File::Spec->catfile($abs_srcdir, "extra", $extra);
1154                 my @deps = split / +/, getdependencies($abs_extra);
1155                 for my $dep (@deps) {
1156                         if (exists($extras{$dep})) {
1157                                 my $ref = \$extras{$dep}; # Take reference.
1158                                 if ($$ref !~ m/needed by/) {
1159                                         # First dependency found.
1160                                         if ($$ref =~ m/enabled/) {
1161                                                 $$ref .= " (needed by \e[32;1m$extra\e[0m";
1162                                         } else {
1163                                                 $$ref =~ s/\e\[.*?m//g; # Strip out previous coloring. Will be set in bold+red+blink later.
1164                                                 $$ref .= " (needed by \e[0;32;1;5m$extra\e[0;31;1;5m";
1165                                         }
1166                                 } else {
1167                                         if ($$ref =~ m/enabled/) {
1168                                                 $$ref .= ", \e[32;1m$extra\e[0m";
1169                                         } else {
1170                                                 $$ref .= ", \e[0;32;1;5m$extra\e[0;31;1;5m";
1171                                         }
1172                                 }
1173                         }
1174                 }
1175         }
1176         for my $extra (sort {$a cmp $b} keys(%extras)) {
1177                 my $text = $extras{$extra};
1178                 if ($text =~ m/needed by/ && $text !~ m/enabled/) {
1179                         printf "\e[31;1;5m%-*s = %s%s\e[0m\n", $maxlen, $extra, $text, ($text =~ m/needed by/ ? ")" : "");
1180                 } else {
1181                         printf "%-*s = %s%s\n", $maxlen, $extra, $text, ($text =~ m/needed by/ ? "\e[0m)" : "");
1182                 }
1183         }
1184         return keys(%extras) if wantarray; # Can be used by manage_extras.
1185 }
1186
1187 sub enable_extras (@) {
1188         my (@extras) = @_;
1189         for my $extra (@extras) {
1190                 my $extrapath = "src/modules/extra/$extra";
1191                 if (!-e $extrapath) {
1192                         print STDERR "Cannot enable \e[32;1m$extra\e[0m : No such file or directory in src/modules/extra\n";
1193                         next;
1194                 }
1195                 my $source = "src/modules/$extra";
1196                 if (-e $source) {
1197                         print STDERR "Cannot enable \e[32;1m$extra\e[0m : destination in src/modules exists (might already be enabled?)\n";
1198                         next;
1199                 }
1200                 # Get dependencies, and add them to be processed.
1201                 my @deps = split / +/, getdependencies($extrapath);
1202                 for my $dep (@deps) {
1203                         next if scalar(grep { $_ eq $dep } (@extras)) > 0; # Skip if we're going to be enabling it anyway.
1204                         if (!-e "src/modules/$dep") {
1205                                 if (-e "src/modules/extra/$dep") {
1206                                         print STDERR "Will also enable extra \e[32;1m$dep\e[0m (needed by \e[32;1m$extra\e[0m)\n";
1207                                         push @extras, $dep;
1208                                 } else {
1209                                         print STDERR "\e[33;1mWARNING:\e[0m module \e[32;1m$extra\e[0m might be missing dependency \e[32;1m$dep\e[0m - YOU are responsible for satisfying it!\n";
1210                                 }
1211                         }
1212                 }
1213                 print "Enabling $extra ... \n";
1214                 symlink "extra/$extra", $source or print STDERR "$source: Cannot link to 'extra/$extra': $!\n";
1215         }
1216 }
1217
1218 sub disable_extras (@)
1219 {
1220         opendir my $dd, "src/modules/extra/";
1221         my @files = readdir($dd);
1222         closedir $dd;
1223         my (@extras) = @_;
1224 EXTRA:  for my $extra (@extras) {
1225                 my $extrapath = "src/modules/extra/$extra";
1226                 my $source = "src/modules/$extra";
1227                 if (!-e $extrapath) {
1228                         print STDERR "Cannot disable \e[32;1m$extra\e[0m : Is not an extra\n";
1229                         next;
1230                 }
1231                 if ((! -l $source) || readlink($source) ne "extra/$extra") {
1232                         print STDERR "Cannot disable \e[32;1m$extra\e[0m : Source is not a link or doesn't refer to the right file. Remove manually if this is in error.\n";
1233                         next;
1234                 }
1235                 # Check if anything needs this.
1236                 for my $file (@files) {
1237                         my @deps = split / +/, getdependencies("src/modules/extra/$file");
1238                         # File depends on this extra...
1239                         if (scalar(grep { $_ eq $extra } @deps) > 0) {
1240                                 # And is both enabled and not about to be disabled.
1241                                 if (-e "src/modules/$file" && scalar(grep { $_ eq $file } @extras) < 1) {
1242                                         print STDERR "Cannot disable \e[32;1m$extra\e[0m : is needed by \e[32;1m$file\e[0m\n";
1243                                         next EXTRA;
1244                                 }
1245                         }
1246                 }
1247                 # Now remove.
1248                 print "Disabling $extra ... \n";
1249                 unlink "src/modules/$extra" or print STDERR "Cannot disable \e[32;1m$extra\e[0m : $!\n";
1250         }
1251 }