]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - configure
101b89dfe544df3123ce98ef5f1029e93ce75e71
[user/henk/code/inspircd.git] / configure
1 #!/usr/bin/perl
2 ###################################################
3 # InspIRCd Configuration Script
4 #
5 # Copyright 2002-2007 The InspIRCd Development Team
6 #  http://www.inspircd.org/wiki/index.php/Credits
7 #
8 # Licensed under GPL, please see the COPYING file
9 # for more information
10 #
11 # $Id$
12 #
13 ###################################################
14
15 require 5.6.0;
16 use Socket;
17 use Cwd;
18 use Getopt::Long;
19
20 # Utility functions for our buildsystem
21 use make::utilities;
22 use make::configure;
23 use make::gnutlscert;
24 use make::opensslcert;
25
26 GetOptions (
27         'enable-gnutls' => \$opt_use_gnutls,
28         'rebuild' => \$opt_rebuild,
29         'enable-openssl' => \$opt_use_openssl,
30         'disable-interactive' => \$opt_nointeractive,
31         'with-nick-length=i' => \$opt_nick_length,
32         'with-channel-length=i' => \$opt_chan_length,
33         'with-max-clients=i' => \$opt_maxclients,
34         'enable-ports' => \$opt_ports,
35         'enable-epoll' => \$opt_epoll,
36         'enable-kqueue' => \$opt_kqueue,
37         'disable-ports' => \$opt_noports,
38         'disable-epoll' => \$opt_noepoll,
39         'disable-kqueue' => \$opt_nokqueue,
40         'enable-ipv6' => \$opt_ipv6,
41         'enable-remote-ipv6' => \$opt_ipv6links,
42         'disable-remote-ipv6' => \$opt_noipv6links,
43         'with-cc=s' => \$opt_cc,
44         'with-ident-length=i' => \$opt_ident,
45         'with-quit-length=i' => \$opt_quit,
46         'with-topic-length=i' => \$opt_topic,
47         'with-maxbuf=i' => \$opt_maxbuf,
48         'with-kick-length=i' => \$opt_kick,
49         'with-gecos-length=i' => \$opt_gecos,
50         'with-away-length=i' => \$opt_away,
51         'with-max-modes=i' => \$opt_modes,
52         'prefix=s' => \$opt_base_dir,
53         'config-dir=s' => \$opt_config_dir,
54         'module-dir=s' => \$opt_module_dir,
55         'binary-dir=s' => \$opt_binary_dir,
56         'library-dir=s' => \$opt_library_dir,
57         'disable-debuginfo' => sub { $opt_disable_debug = 1 },
58         'help'  => sub { showhelp(); },
59         'modupdate' => sub { modupdate(); },
60         'update' => sub { update(); },
61         'svnupdate' => sub { svnupdate(); },
62         'clean' => sub { clean(); },
63 );
64
65 my $non_interactive = (
66         (defined $opt_library_dir) ||
67         (defined $opt_base_dir) ||
68         (defined $opt_config_dir) ||
69         (defined $opt_module_dir) ||
70         (defined $opt_base_dir) ||
71         (defined $opt_binary_dir) ||
72         (defined $opt_nointeractive) ||
73         (defined $opt_away) ||
74         (defined $opt_gecos) ||
75         (defined $opt_kick) ||
76         (defined $opt_maxclients) ||
77         (defined $opt_modes) ||
78         (defined $opt_topic) ||
79         (defined $opt_quit) ||
80         (defined $opt_ident) ||
81         (defined $opt_cc) ||
82         (defined $opt_ipv6) ||
83         (defined $opt_ipv6links) ||
84         (defined $opt_noipv6links) ||
85         (defined $opt_kqueue) ||
86         (defined $opt_epoll) ||
87         (defined $opt_ports) ||
88         (defined $opt_maxchans) ||
89         (defined $opt_opermaxchans) ||
90         (defined $opt_chan_length) ||
91         (defined $opt_nick_length) ||
92         (defined $opt_use_openssl) ||
93         (defined $opt_nokqueue) ||
94         (defined $opt_noepoll) ||
95         (defined $opt_noports) ||
96         (defined $opt_maxbuf) ||
97         (defined $opt_use_gnutls)
98 );
99 my $interactive = !$non_interactive;
100
101
102 chomp($topdir = getcwd());
103 $this = resolve_directory($topdir);                                             # PWD, Regardless.
104 @modlist = ();                                                                  # Declare for Module List..
105 %config = ();                                                                   # Initiate Configuration Hash..
106 $config{ME}              = resolve_directory($topdir);                          # Present Working Directory
107
108 $config{BASE_DIR}          = $config{ME};
109
110 if (defined $opt_base_dir)
111 {
112         $config{BASE_DIR} = $opt_base_dir;
113 }
114
115 $config{CONFIG_DIR}      = resolve_directory($config{BASE_DIR}."/conf");        # Configuration Directory
116 $config{MODULE_DIR}      = resolve_directory($config{BASE_DIR}."/modules");     # Modules Directory
117 $config{BINARY_DIR}      = resolve_directory($config{BASE_DIR}."/bin");         # Binary Directory
118 $config{LIBRARY_DIR}    = resolve_directory($config{BASE_DIR}."/lib");          # Library Directory
119
120 if (defined $opt_config_dir)
121 {
122         $config{CONFIG_DIR} = $opt_config_dir;
123 }
124 if (defined $opt_module_dir)
125 {
126         $config{MODULE_DIR} = $opt_module_dir;
127 }
128 if (defined $opt_binary_dir)
129 {
130         $config{BINARY_DIR} = $opt_binary_dir;
131 }
132 if (defined $opt_library_dir)
133 {
134         $config{LIBRARY_DIR} = $opt_library_dir;
135 }
136 chomp($config{HAS_GNUTLS}   = `libgnutls-config --version 2>/dev/null | cut -c 1,2,3`); # GNUTLS Version.
137 chomp($config{HAS_OPENSSL}  = `pkg-config --modversion openssl 2>/dev/null`);           # Openssl version
138 chomp($gnutls_ver = $config{HAS_GNUTLS});
139 chomp($openssl_ver = $config{HAS_OPENSSL});
140 $config{USE_GNUTLS}         = "n";
141 if (defined $opt_use_gnutls)
142 {
143         $config{USE_GNUTLS} = "y";                                      # Use gnutls.
144 }
145 $config{USE_OPENSSL}    = "n";                                          # Use openssl.
146 if (defined $opt_use_openssl)
147 {
148         $config{USE_OPENSSL} = "y";
149 }
150
151 # no, let's not change these.
152 $config{OPTIMITEMP}      = "0";                                         # Default Optimisation Value
153 if (!defined $opt_disable_debug)
154 {
155         $config{OPTIMISATI}      = "-g1";                               # Optimisation Flag
156 }
157 else
158 {
159         $config{OPTIMISATI}      = "-O2";                               # DEBUGGING OFF!
160 }
161
162 $config{NICK_LENGT}      = "31";                                        # Default Nick Length
163 if (defined $opt_nick_length)
164 {
165         $config{NICK_LENGT} = $opt_nick_length;
166 }
167 $config{CHAN_LENGT}      = "64";                                        # Default Channel Name Length
168 if (defined $opt_chan_length)
169 {
170         $config{CHAN_LENGT} = $opt_chan_length;
171 }
172 $config{MAXI_MODES}      = "20";                                        # Default Max. Number of Modes set at once.
173 if (defined $opt_modes)
174 {
175         $config{MAXI_MODES} = $opt_modes;
176 }
177 $config{HAS_STRLCPY}    = "false";                                      # strlcpy Check.
178 $config{HAS_STDINT}      = "false";                                     # stdint.h check
179 $config{USE_KQUEUE}      = "y";                                         # kqueue enabled
180 if (defined $opt_kqueue)
181 {
182         $config{USE_KQUEUE} = "y";
183 }
184 if (defined $opt_nokqueue)
185 {
186         $config{USE_KQUEUE} = "n";
187 }
188 $config{USE_EPOLL}        = "y";                                        # epoll enabled
189 if (defined $opt_epoll)
190 {
191         $config{USE_EPOLL} = "y";
192 }
193 if (defined $opt_noepoll)
194 {
195         $config{USE_EPOLL} = "n";
196 }
197 $config{USE_PORTS}        = "y";                                        # epoll enabled
198 if (defined $opt_ports)
199 {
200         $config{USE_PORTS} = "y";
201 }
202 if (defined $opt_noports)
203 {
204         $config{USE_PORTS} = "n";
205 }
206 $config{IPV6}          = "n";                                           # IPv6 support (experimental)
207 if (defined $opt_ipv6)
208 {
209         $config{IPV6} = "y";
210 }
211 $config{SUPPORT_IP6LINKS}   = "y";                                      # IPv4 supporting IPv6 links (experimental)
212 if (defined $opt_ipv6links)
213 {
214         $config{SUPPORT_IP6LINKS} = "y";
215 }
216 if (defined $opt_noipv6links)
217 {
218         $config{SUPPORT_IP6LINKS} = "n";
219 }
220 $config{STATIC_LINK}        = "no";                                     # are doing static modules?
221 chomp($config{MAX_CLIENT_T} = `sh -c \"ulimit -n\"`);                   # FD Limit
222 chomp($config{MAX_DESCRIPTORS} = `sh -c \"ulimit -n\"`);                # Hard FD Limit
223 chomp($config{GCCVER}       = `g++ -dumpversion | cut -c 1`);           # Major GCC Version
224 $config{_SOMAXCONN} = SOMAXCONN;                                        # Max connections in accept queue
225 $config{OSNAME}             = $^O;                                      # Operating System Name
226 $config{IS_DARWIN}          = "NO";                                     # Is OSX?
227 $config{STARTSCRIPT}          = "inspircd";                     # start script?
228 $config{DESTINATION}          = "BASE";                         # Is target path.
229 $config{EXTRA_DIR}          = "";                                               # Is empty.
230 if ($config{OSNAME} =~ /darwin/i)
231 {
232         $config{IS_DARWIN} = "YES";
233         $config{STARTSCRIPT}          = "org.inspircd.plist";           # start script for OSX.
234         $config{DESTINATION}          = "LAUNCHDPATH";                          # Is OSX target.
235         $config{EXTRA_DIR}            = " launchd_dir";                         # Is OSX specific path.
236 }
237 $config{CC}                 = "g++";                                            # C++ compiler
238 if (defined $opt_cc)
239 {
240         $config{CC} = $opt_cc;
241 }
242 $exec = $config{CC} . " -dumpversion | cut -c 1";
243 chomp($config{GCCVER}           = `$exec`);                             # Major GCC Version
244 $config{MAKEORDER}              = "ircd mods";                          # build order
245 $config{STATICLIBS}             = "";                                   # library archive path
246 $config{MAX_IDENT}              = "12";                                 # max ident size
247 $config{MAX_QUIT}               = "255";                                # max quit message size
248 $config{MAX_TOPIC}              = "307";                                # max topic size
249 $config{MAX_KICK}               = "255";                                # max kick message size
250 $config{MAX_GECOS}              = "128";                                # max GECOS size
251 $config{MAX_AWAY}               = "200";                                # max AWAY size
252 $config{MAXBUF}                 = "512";                                # Max buffer size
253 if (defined $opt_ident)
254 {
255         $config{MAX_IDENT} = $opt_ident;
256 }
257 if (defined $opt_quit)
258 {
259         $config{MAX_QUIT} = $opt_quit;
260 }
261 if (defined $opt_topic)
262 {
263         $config{MAX_TOPIC} = $opt_topic;
264 }
265 if (defined $opt_kick)
266 {
267         $config{MAX_KICK} = $opt_kick;
268 }
269 if (defined $opt_gecos)
270 {
271         $config{MAX_GECOS} = $opt_gecos;
272 }
273 if (defined $opt_away)
274 {
275         $config{MAX_AWAY} = $opt_away;
276 }
277
278 $config{HAS_OPENSSL} =~ /^([-[:digit:].]+)([a-z])?(\-[a-z][0-9])?$/;
279 $config{HAS_OPENSSL} = $1;
280
281 if ($config{GCCVER} eq "") {
282         print $config{CC} . " was not found! You require g++ (the GNU C++ compiler, part of GCC) to build InspIRCd!\n";
283         exit;
284 }
285
286 # Minihack! Convert Cygwin to 'Cyg-Static' so i can
287 # Keep my dynamic module experiments here for later
288 # consideration!
289
290 if ($config{OSNAME} =~ /CYGWIN/i)
291 {
292         $config{OSNAME} = "CYG-STATIC";
293 }
294
295 if (!$config{MAX_CLIENT_T}) { 
296         $config{MAX_CLIENT_T} = 1024;                            # Set a reasonable 'Default'
297         $fd_scan_fail = "true";                                # Used Later
298 }
299
300 # Get and Set some important vars..
301 getmodules();
302
303 sub clean
304 {
305         system("rm -rf .config.cache");
306 }
307
308 sub update
309 {
310         eval {
311                 chomp($topdir = getcwd());
312                 $this = resolve_directory($topdir);                                          # PWD, Regardless.
313                 getmodules();
314                 # Does the cache file exist?
315                 if (!getcache()) {
316                         # No, No it doesn't.. *BASH*
317                         print "You have not run ./configure before. Please do this before trying to run the update script.\n";
318                         exit 0;
319                 } else {
320                         # We've Loaded the cache file and all our variables..
321                         print "Updating Files..\n";
322                         getosflags();
323                         if ($opt_disable_debug == 1)
324                         {
325                                 print "Disabling debug information (-g).\n";
326                                 $config{OPTIMISATI} = "";
327                                 getosflags();
328                         }
329                         $has_epoll = $config{HAS_EPOLL};
330                         $has_ports = $config{HAS_PORTS};
331                         $has_kqueue = $config{HAS_KQUEUE};
332                         writefiles(1);
333                         makecache();
334                         print "Complete.\n";
335                         exit;
336                 }
337         };
338         if ($@)
339         {
340                 print "Configure update failed: $@\n";
341         }
342         exit;
343 }
344
345 sub modupdate
346 {
347         eval {
348                 chomp($topdir = getcwd());
349                 $this = resolve_directory($topdir);                                          # PWD, Regardless.
350                 getmodules();
351                 # Does the cache file exist?
352                 if (!getcache()) {
353                         # No, No it doesn't.. *BASH*
354                         print "You have not run ./configure before. Please do this before trying to run the update script.\n";
355                         exit 0;
356                 } else {
357                         # We've Loaded the cache file and all our variables..
358                         print "Updating Files..\n";
359                         getosflags();
360                         $has_epoll = $config{HAS_EPOLL};
361                         $has_ports = $config{HAS_PORTS};
362                         $has_kqueue = $config{HAS_KQUEUE};
363                         writefiles(0);
364                         makecache();
365                         print "Complete.\n";
366                         exit;
367                 }
368         };
369         if ($@)
370         {
371                 print "Module update failed: $@\n";
372         }
373         exit;
374 }
375
376
377
378 sub svnupdate
379 {
380         my $fail = 0;
381         open(FH,"<.svn/entries") or $fail = 1;
382         if ($fail) {
383                 print "This is not an SVN copy of InspIRCd.\n";
384                 exit;
385         }
386         else
387         {
388                 close(FH);
389         }
390         system("svn update");
391         system("perl configure -update");
392         if (defined $opt_rebuild) {
393                 system("make install");
394         }
395         exit;
396 }
397
398 print "Running non-interactive configure...\n" unless $interactive;
399 print "Checking for cache from previous configure... ";
400 print ((getcache() eq "true") ? "found\n" : "not found\n");
401 print "Checking operating system version... ";
402 print getosflags() . "\n";
403
404 if (defined $opt_maxclients)
405 {
406         $config{MAX_CLIENT} = $opt_maxclients;
407 }
408
409 if (!$config{MAX_CLIENT}) { 
410         # If the cache hasn't set the max clients, copy the variable of MAX_CLIENT_T, this
411         # allows us to keep _T for testing purposes. (ie. "Are you sure you want to go
412         # higher than the found value" :))
413         $config{MAX_CLIENT} = $config{MAX_CLIENT_T};
414 }
415
416 printf "Checking if stdint.h exists... ";
417 $config{HAS_STDINT} = "true";
418 my $fail = 0;
419 open(STDINT, "</usr/include/stdint.h") or $config{HAS_STDINT} = "false";
420 if ($config{HAS_STDINT} eq "true") {
421         close(STDINT);
422 }
423 print "yes\n" if $config{HAS_STDINT} eq "true";
424 print "no\n" if $config{HAS_STDINT} eq "false";
425
426
427 printf "Checking if strlcpy exists... ";
428 # Perform the strlcpy() test..
429 $config{HAS_STRLCPY} = "false";
430 my $fail = 0;
431 open(STRLCPY, "</usr/include/string.h") or $fail = 1;
432 if (!$fail) {
433         while (chomp($line = <STRLCPY>)) {
434                 # try and find the delcaration of:
435                 # size_t strlcpy(...)
436                 if ($line =~ /size_t(\0x9|\s)+strlcpy/) {
437                         $config{HAS_STRLCPY} = "true";
438                 }
439         }
440         close(STRLCPY);
441 }
442 print "yes\n" if $config{HAS_STRLCPY} eq "true";
443 print "no\n" if $config{HAS_STRLCPY} eq "false";
444
445
446 printf "Checking if kqueue exists... ";
447 $has_kqueue = 0;
448 $fail = 0;
449 open(KQUEUE, "</usr/include/sys/event.h") or $fail = 1;
450 if (!$fail) {
451         while (chomp($line = <KQUEUE>)) {
452                 # try and find the delcaration of:
453                 # int kqueue(void);
454                 if ($line =~ /int(\0x9|\s)+kqueue/) {
455                         $has_kqueue = 1;
456                 }
457         }
458         close(KQUEUE);
459 }
460 print "yes\n" if $has_kqueue == 1;
461 print "no\n" if $has_kqueue == 0;
462
463 printf "Checking if epoll exists... ";
464 $has_epoll = 0;
465 $fail = 0;
466 open(EPOLL, "</usr/include/sys/epoll.h") or $fail = 1;
467 if (!$fail) {
468         $has_epoll = 1;
469         close(EPOLL);
470 }
471 if ($has_epoll) {
472         my $kernel = `uname -r`;
473         chomp($kernel);
474         if (($kernel =~ /^2\.0\./) || ($kernel =~ /^2\.2\./) || ($kernel =~ /^2\.4\./)) {
475                 $has_epoll = 0;
476         }
477 }
478 print "yes\n" if $has_epoll == 1;
479 print "no\n" if $has_epoll == 0;
480
481 printf "Checking if Solaris I/O completion ports are available... ";
482 $has_ports = 0;
483 my $system = `uname -s`;
484 chomp ($system);
485 $has_ports = 1 if ($system eq "SunOS");
486
487 if ($has_ports) {
488         my $kernel = `uname -r`;
489         chomp($kernel);
490         if (($kernel !~ /^5\.1./)) {
491                 $has_ports = 0;
492         }
493 }
494 print "yes\n" if $has_ports == 1;
495 print "no\n" if $has_ports == 0;
496
497 if (($config{OSNAME} =~ /CYGWIN/) || ($config{OSNAME} eq "CYG-STATIC")) {
498         $config{HAS_STRLCPY} = "true";
499 }
500
501 $config{HAS_EPOLL} = $has_epoll;
502 $config{HAS_KQUEUE} = $has_kqueue; 
503
504 printf "Checking for libgnutls... ";
505 if (($config{HAS_GNUTLS}) && (($config{HAS_GNUTLS} >= 1.2) || ($config{HAS_GNUTLS} eq "y"))) {
506         print "yes\n";
507         $config{HAS_GNUTLS} = "y";
508 } else {
509         print "no\n";
510         $config{HAS_GNUTLS} = "n";
511 }
512
513 printf "Checking for openssl... ";
514 if (($config{HAS_OPENSSL}) && (($config{HAS_OPENSSL} >= 0.8) || ($config{HAS_OPENSSL} eq "y"))) {
515         print "yes\n";
516         $config{HAS_OPENSSL} = "y";
517 } else {
518         print "no\n";
519         $config{HAS_OPENSSL} = "n";
520 }
521
522 ################################################################################
523 #                         BEGIN INTERACTIVE PART                              #
524 ################################################################################
525
526 # Clear the Screen..
527 if ($interactive)
528 {
529         system("clear");
530         $wholeos = $^O;
531
532         my $rev = getrevision();
533         # Display Introduction Message..
534         print "
535 Welcome to the \033[1mInspIRCd\033[0m Configuration program! (\033[1minteractive mode\033[0m)
536 \033[1mPackage maintainers: Type ./configure --help for non-interactive help\033[0m
537
538 *** If you are unsure of any of these values, leave it blank for    ***
539 *** standard settings that will work, and your server will run      ***
540 *** using them. Please consult your IRC network admin if in doubt.  ***
541
542 Press \033[1m<RETURN>\033[0m to accept the default for any option, or enter
543 a new value. Please note: You will \033[1mHAVE\033[0m to read the docs
544 dir, otherwise you won't have a config file!
545
546 Your operating system is: \033[1;32m$config{OSNAME}\033[0m ($wholeos)
547 Maximum file descriptors: \033[1;32m$config{MAX_CLIENT_T}\033[0m
548 Your InspIRCd revision ID is \033[1;32mr$rev\033[0m";
549         if ($rev eq "r0") {
550                 print " (Non-SVN build)";
551         }
552         print ".\n\n";
553
554         $config{CHANGE_COMPILER} = "n";
555         print "I have detected the following compiler: \033[1;32m$config{CC}\033[0m (version \033[1;32m$config{GCCVER}.x\033[0m)\n";
556
557         while (($config{GCCVER} < 3) || ($config{GCCVER} eq "")) {
558                 print "\033[1;32mIMPORTANT!\033[0m A GCC 2.x compiler has been detected, and
559 should NOT be used. You should probably specify a newer compiler.\n\n";
560                 yesno(CHANGE_COMPILER,"Do you want to change the compiler?");
561                 if ($config{CHANGE_COMPILER} =~ /y/i) {
562                         print "What command do you want to use to invoke your compiler?\n";
563                         print "[\033[1;32m$config{CC}\033[0m] -> ";
564                         chomp($config{CC} = <STDIN>);
565                         if ($config{CC} eq "") {
566                                 $config{CC} = "g++";
567                         }
568                         chomp($foo = `$config{CC} -dumpversion | cut -c 1`);
569                         if ($foo ne "") {
570                                 chomp($config{GCCVER}       = `$config{CC} -dumpversion | cut -c 1`); # we must redo these if we change compilers
571                                 print "Queried compiler: \033[1;32m$config{CC}\033[0m (version \033[1;32m$config{GCCVER}.x\033[0m)\n";
572                                 if ($config{GCCVER} < 3) {
573                                         print "\033[1;32mGCC 2.x WILL NOT WORK!\033[0m. Let's try that again, shall we?\n";
574                                 }
575                         }
576                         else {
577                                 print "\033[1;32mWARNING!\033[0m Could not execute the compiler you specified. You may want to try again.\n";
578                         }
579                 }
580         }
581
582         print "\n";
583
584         # Directory Settings..
585         my $tmpbase = $config{BASE_DIR};
586         dir_check("do you wish to install the InspIRCd base", "BASE_DIR");
587         if ($tmpbase ne $config{BASE_DIR}) {
588                 $config{CONFIG_DIR}      = resolve_directory($config{BASE_DIR}."/conf");           # Configuration Dir
589                 $config{MODULE_DIR}      = resolve_directory($config{BASE_DIR}."/modules");     # Modules Directory
590                 $config{BINARY_DIR}      = resolve_directory($config{BASE_DIR}."/bin");     # Binary Directory
591                 $config{LIBRARY_DIR}    = resolve_directory($config{BASE_DIR}."/lib");      # Library Directory
592         }
593
594         dir_check("are the configuration files", "CONFIG_DIR");
595         dir_check("are the modules to be compiled to", "MODULE_DIR");
596         dir_check("is the IRCd binary to be placed", "BINARY_DIR");
597         dir_check("are the IRCd libraries to be placed", "LIBRARY_DIR");
598
599         if ($has_kqueue) {
600                 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?");
601                 print "\n";
602         }
603         if ($has_epoll) {
604                 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?");
605                 print "\n";
606         }
607         if ($has_ports) {
608                 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?");
609                 print "\n";
610         }
611         $chose_hiperf = (($config{USE_EPOLL} eq "y") || ($config{USE_KQUEUE} eq "y") || ($config{USE_PORTS} eq "y"));
612         if (!$chose_hiperf) {
613                 print "No high-performance socket engines are available, or you chose\n";
614                 print "not to enable one. Defaulting to select() engine.\n\n";
615         }
616
617         yesno(IPV6,"Would you like to build InspIRCd with IPv6 support?");
618         print "\n";
619
620         if ($config{IPV6} eq "y") {
621                 print "You have chosen to build an \033[1;32mIPV6-enabled\033[0m server.\nTo accept IPV4 users, you can still use IPV4 addresses\nin your port bindings..\n\n";
622                 $config{SUPPORT_IP6LINKS} = "y";
623         } else {
624                 yesno(SUPPORT_IP6LINKS,"You have chosen to build an \033[1;32mIPV4-only\033[0m server.\nWould you like to enable support for linking to IPV6-enabled\nInspIRCd servers?\nIf you are using a recent operating\nsystem and are unsure, answer yes.\nIf you answer 'no' here, your InspIRCd server will be unable\nto parse IPV6 addresses (e.g. for CIDR bans)");
625                 print "\n";
626         }
627
628         if (($config{HAS_GNUTLS} eq "y") && ($config{HAS_OPENSSL} eq "y")) {
629                 print "I have detected both \033[1;32mGnuTLS\033[0m and \033[1;32mOpenSSL\033[0m on your system.\n";
630                 print "I will default to GnuTLS. If you wish to use OpenSSL\n";
631                 print "instead, you should enable the OpenSSL module yourself\n";
632                 print "by copying it from src/modules/extra to src/modules.\n\n";
633                 print "Detected GnuTLS version: \033[1;32m" . $gnutls_ver . "\033[0m\n";
634                 print "Detected OpenSSL version: \033[1;32m" . $openssl_ver . "\033[0m\n\n";
635         }
636
637         if ($config{HAS_GNUTLS} eq "y") {
638                 yesno(USE_GNUTLS, "Would you like to enable SSL Support?");
639                 if ($config{USE_GNUTLS} eq "y") {
640                         print "\nUsing GnuTLS SSL module.\n";
641                 }
642         } elsif ($config{HAS_OPENSSL} eq "y") {
643                         yesno(USE_OPENSSL, "Would you like to enable SSL Support?");
644         if ($config{USE_OPENSSL} eq "y") {
645                         print "\nUsing OpenSSL SSL module.\nYou will get better performance if you move to GnuTLS in the future.\n";
646                 }
647         }
648         else {
649                 print "\nCould not detect OpenSSL or GnuTLS. Make sure pkg-config is installed if\nyou intend to use OpenSSL, or that GnuTLS is in your path if you intend\nto use GnuTLS.\n\n";
650         }
651
652         print "\nThe following questions will ask you for various figures relating\n";
653         print "To your IRCd install. Please note that these should usually be left\n";
654         print "as defaults unless you have a real reason to change them. If they\n";
655         print "changed, then the values must be identical on all servers on your\n";
656         print "network, or malfunctions and/or crashes may occur, with the exception\n";
657         print "of the 'maximum number of clients' setting which may be different on\n";
658         print "different servers on the network.\n\n";
659
660         # File Descriptor Settings..
661         promptnumeric("number of clients at any one time", "MAX_CLIENT_T");
662         $config{MAX_CLIENT} = $config{MAX_CLIENT_T};
663         $config{MAX_DESCRIPTORS} = $config{MAX_CLIENT_T};
664
665         promptnumeric("length of nicknames", "NICK_LENGT");
666         promptnumeric("length of channel names", "CHAN_LENGT");
667         promptnumeric("number of mode changes in one line", "MAXI_MODES");
668         promptnumeric("length of an ident (username)", "MAX_IDENT");
669         promptnumeric("length of a quit message", "MAX_QUIT");
670         promptnumeric("length of a channel topic", "MAX_TOPIC");
671         promptnumeric("length of a kick message", "MAX_KICK");
672         promptnumeric("length of a GECOS (real name)", "MAX_GECOS");
673         promptnumeric("length of an away message", "MAX_AWAY");
674 }
675
676 dumphash();
677
678 if (($config{USE_GNUTLS} eq "y") && ($config{HAS_GNUTLS} ne "y"))
679 {
680         print "Sorry, but i couldn't detect gnutls. Make sure gnutls-config is in your path.\n";
681         exit(0);
682 }
683 if (($config{USE_OPENSSL} eq "y") && ($config{HAS_OPENSSL} ne "y"))
684 {
685         print "Sorry, but i couldn't detect openssl. Make sure openssl is in your path.\n";
686         exit(0);
687 }
688
689 if ($config{USE_GNUTLS} eq "y") {
690         $failed = 0;
691         open(TMP, "<src/modules/m_ssl_gnutls.cpp") or $failed = 1;
692         close(TMP);
693         if ($failed) {
694                 print "Symlinking src/modules/m_ssl_gnutls.cpp from extra/\n";
695                 chdir("src/modules");
696                 system("ln -s extra/m_ssl_gnutls.cpp");
697                 chdir("../..");
698         }
699         getmodules();
700         if ($interactive)
701         {
702                 $failed = 0;
703                 open(TMP, "<$config{CONFIG_DIR}/key.pem") or $failed = 1;
704                 close(TMP);
705                 open(TMP, "<$config{CONFIG_DIR}/cert.pem") or $failed = 1;
706                 close(TMP);
707                 if ($failed) {
708                         print "SSL Certificates Not found, Generating.. \n\n
709 *************************************************************
710 * Generating the Private Key may take some time, go grab a  *
711 * Coffee. Even better, to generate some more entropy if it  *
712 * is taking a while, open another console and type du / a   *
713 * few times and get that HD going :) Then answer the        *
714 * Questions which follow. If you are unsure, just hit enter *
715 *************************************************************\n\n";
716                         make_gnutls_cert() or $failed = 1;
717                         if (!$failed) {
718                                 print "\nCertificate generation complete, copying to config directory... ";
719                                 system("mv key.pem $config{CONFIG_DIR}/key.pem");
720                                 system("mv cert.pem $config{CONFIG_DIR}/cert.pem");
721                                 print "Done.\n\n";
722                         } else {
723                                 print "\n\033[1;32mCertificate generation failed!\033[0m\n\n";
724                         }
725                 }
726                 else {
727                         print "SSL Certificates found, skipping.\n\n";
728                 }
729         }
730         else
731         {
732                 print "Skipping SSL certificate generation\nin non-interactive mode.\n\n";
733         }
734 } elsif ($config{USE_OPENSSL} eq "y") {
735         $failed = 0;
736         open(TMP, "<src/modules/m_ssl_openssl.cpp") or $failed = 1;
737         close(TMP);
738         if ($failed) {
739                 print "Symlinking src/modules/m_ssl_openssl.cpp from extra/\n";
740                 chdir("src/modules");
741                 system("ln -s extra/m_ssl_openssl.cpp");
742                 chdir("../..");
743         }
744         getmodules();
745         $failed = 0;
746         if ($interactive)
747         {
748                 open(TMP, "<$config{CONFIG_DIR}/key.pem") or $failed = 1;
749                 close(TMP);
750                 open(TMP, "<$config{CONFIG_DIR}/cert.pem") or $failed = 1;
751                 close(TMP);
752                 if ($failed) {
753                         print "SSL Certificates Not found, Generating.. \n\n
754 *************************************************************
755 * Generating the certificates may take some time, go grab a *
756 * coffee, or something.                                     *
757 *************************************************************\n\n";
758                         make_openssl_cert();
759                         print "\nCertificate generation complete, copying to config directory... ";
760                         system("mv key.pem $config{CONFIG_DIR}/key.pem");
761                         system("mv cert.pem $config{CONFIG_DIR}/cert.pem");
762                         system("mv dhparams.pem $config{CONFIG_DIR}/dhparams.pem");
763                         print "Done.\n\n";
764                 } else {
765                         print "SSL Certificates found, skipping.\n\n"
766                 }
767         }
768         else
769         {
770                 print "Skipping SSL certificate generation\nin non-interactive mode.\n\n";
771         }
772 }
773 if (($config{USE_GNUTLS} eq "n") && ($config{USE_OPENSSL} eq "n")) {
774         print "Skipping SSL Certificate generation, SSL support is not available.\n\n";
775 }
776
777 getosflags();
778 writefiles(1);
779 makecache();
780
781 print "\n\n";
782 print "To build your server with these settings, please type '\033[1;32m$config{MAKEPROG}\033[0m' now.\n";
783 if (($config{USE_GNUTLS} eq "y") || ($config{USE_OPENSSL} eq "y")) {
784         print "Please remember that to enable \033[1;32mSSL support\033[0m you must\n";
785         print "load the required modules in your config. This configure process\n";
786         print "has just prepared these modules to be compiled for you, and has not\n";
787         print "configured them to be compiled into the core of the ircd.\n";
788 }
789 print "*** \033[1;32mRemember to edit your configuration files!!!\033[0m ***\n\n\n";
790 if (($config{OSNAME} eq "OpenBSD") && ($config{CC} ne "eg++")) {
791         print "\033[1;32mWARNING!\033[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";
792 }
793
794 if ($config{GCCVER} < "3") {
795         print <<FOO2;
796 \033[1;32mWARNING!\033[0m You are attempting to compile InspIRCd on GCC 2.x!
797 GCC 2.x series compilers only had partial (read as broken) C++ support, and
798 your compile will most likely fail horribly! If you have any problems, do NOT
799 report them to the bugtracker or forums without first upgrading your compiler
800 to a newer 3.x or 4.x (or whatever is available currently) version.
801 FOO2
802 }
803
804 ################################################################################
805 #                             HELPER FUNCTIONS                          #
806 ################################################################################
807 sub getcache {
808         # Retrieves the .config.cache file, and loads values into the main config hash.
809         open(CACHE, ".config.cache") or return undef;
810         while (<CACHE>) {
811                 chomp;
812                 # Ignore Blank lines, and comments..
813                 next if /^\s*$/;
814                 next if /^\s*#/;
815                 my ($key, $value) = split("=", $_, 2);
816                 $value =~ /^\"(.*)\"$/;
817                 # Do something with data here!
818                 $config{$key} = $1;
819         }
820         close(CONFIG);
821         return "true";
822 }
823
824 sub makecache {
825         # Dump the contents of %config
826         print "Writing \033[1;32mcache file\033[0m for future ./configures ...\n";
827         open(FILEHANDLE, ">.config.cache");
828         foreach $key (keys %config) {
829                 print FILEHANDLE "$key=\"$config{$key}\"\n";
830         }
831         close(FILEHANDLE);
832 }
833
834 sub dir_check {
835         my ($desc, $hash_key) = @_;
836         my $complete = 0;
837         while (!$complete) {
838                 print "In what directory $desc?\n";
839                 print "[\033[1;32m$config{$hash_key}\033[0m] -> ";
840                 chomp($var = <STDIN>);
841                 if ($var eq "") {
842                         $var = $config{$hash_key};
843                 }
844                 if ($var =~ /^\~\/(.+)$/) {
845                         # Convert it to a full path..
846                         $var = resolve_directory($ENV{HOME} . "/" . $1);
847                 }
848                 elsif ((($config{OSNAME} =~ /MINGW32/i) and ($var !~ /^[A-Z]{1}:\\.*/)) and (substr($var,0,1) ne "/"))
849                 {
850                         # Assume relative Path was given.. fill in the rest.
851                         $var = $this . "/$var";
852                 }
853                 
854                 $var = resolve_directory($var); 
855                 if (! -e $var) {
856                         print "$var does not exist. Create it?\n[\033[1;32my\033[0m] ";
857                         chomp($tmp = <STDIN>);
858                         if (($tmp eq "") || ($tmp =~ /^y/i)) {
859                                 # Attempt to Create the Dir..
860                                 
861                                 system("mkdir -p \"$var\" >> /dev/null 2>&1");
862                                 $chk = system("mkdir -p \"$var\" >> /dev/null 2>&1") / 256;
863                                 if ($chk != 0) {
864                                         print "Unable to create directory. ($var)\n\n";
865                                         # Restart Loop..
866                                         next;
867                                 }
868                         } else {
869                                 # They said they don't want to create, and we can't install there.
870                                 print "\n\n";
871                                 next;
872                         }
873                 } else {
874                         if (!is_dir($var)) {
875                                 # Target exists, but is not a directory.
876                                 print "File $var exists, but is not a directory.\n\n";
877                                 next;
878                         }
879                 }
880                 # Either Dir Exists, or was created fine.
881                 $config{$hash_key} = $var;
882                 $complete = 1;
883                 print "\n";
884         }
885 }
886
887 sub getosflags {
888
889         $config{LDLIBS} = "-lstdc++";
890         $config{FLAGS}  = "-fno-strict-aliasing -fPIC -Wall -Woverloaded-virtual -Wno-deprecated $config{OPTIMISATI}";
891         $config{DEVELOPER} = "-fno-strict-aliasing -fPIC -Wall -Woverloaded-virtual -Wno-deprecated -g";
892         $SHARED = "-Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared";
893         $config{MAKEPROG} = "make";
894
895         if ($config{OSNAME} =~ /darwin/i) {
896                 $config{FLAGS}  = "-DDARWIN -frtti -fPIC -Wall -Woverloaded-virtual -Wno-deprecated $config{OPTIMISATI}";
897                 $SHARED = "-bundle -twolevel_namespace -undefined dynamic_lookup";
898                 $config{LDLIBS} = "-ldl -lstdc++";
899         }
900
901         if ($config{OSNAME} =~ /OpenBSD/i) {
902                 $config{MAKEPROG} = "gmake";
903                 chomp($foo = `eg++ -dumpversion | cut -c 1`);
904                 # theyre running the package version of gcc (eg++)... detect it and set up its version numbers.
905                 # if theyre not running this, configure lets the build continue but they probably wont manage to
906                 # compile as this standard version is 2.95.3!
907                 if ($foo ne "") {
908                         $config{CC} = "eg++";
909                         chomp($config{GCCVER}       = `eg++ -dumpversion | cut -c 1`); # we must redo these if we change the compiler path
910                 }
911                 return "OpenBSD";
912         }
913
914         if ($config{OSNAME} =~ /Linux/i) {
915                 $config{LDLIBS} = "-ldl -lstdc++";
916                 $config{FLAGS}  = "-fno-strict-aliasing -fPIC -Wall -Woverloaded-virtual -Wno-deprecated $config{OPTIMISATI}";
917                 $config{FLAGS}  .= " " . $ENV{CXXFLAGS} if exists($ENV{CXXFLAGS});
918                 $config{LDLIBS} .= " " . $ENV{LDLIBS} if exists($ENV{LDLIBS});
919                 $config{MAKEPROG} = "make";
920                 if ($config{OSNAME} =~ /CYGWIN/) {
921                         $config{FLAGS}  = "-fno-strict-aliasing -Wall -Woverloaded-virtual -Wno-deprecated $config{OPTIMISATI}";
922                         $config{LDLIBS} = "";
923                         $config{MAKEPROG} = "/usr/bin/make";
924                         $config{MAKEORDER} = "ircd mods";
925                         return "Cygwin";
926                 } elsif ($config{OSNAME} eq "CYG-STATIC") {
927                         $config{FLAGS} = "-fno-strict-aliasing -Wall -Woverloaded-virtual -Wno-deprecated $config{OPTIMISATI}";
928                         $config{LDLIBS} = "";
929                         $config{MAKEPROG} = "/usr/bin/make";
930                         $config{MAKEORDER} = "mods ircd";
931                         $config{STATICLIBS} = "modules/mods.a";
932                         $config{STATIC_LINK} = "yes";
933                         return "Cygwin-Static";
934                 }
935         }
936
937         if ($config{OSNAME} =~ /FreeBSD/i) {
938                 $config{FLAGS}  .= " " . $ENV{CXXFLAGS} if exists($ENV{CXXFLAGS});
939                 $config{LDLIBS} .= " " . $ENV{LDLIBS} if exists($ENV{LDLIBS});
940         }
941
942         if ($config{OSNAME} =~ /SunOS/i or $config{OSNAME} =~ /solaris/i)
943         {
944                 # solaris/sunos needs these
945                 # socket = bsd sockets api
946                 # nsl = dns stuff
947                 # rt = POSIX realtime extensions
948                 # resolv = inet_aton only (why isnt this in nsl?!)
949                 $config{MAKEPROG} = "gmake";
950                 $config{LDLIBS} .= " -lsocket -lnsl -lrt -lresolv";
951                 return "Solaris";
952         }
953         
954         if($config{OSNAME} =~ /MINGW32/i)
955         {
956                 # All code is position-independent on windows
957                 $config{FLAGS} =~ s/-fPIC //;
958                 return "MinGW";
959         }
960
961         return $config{OSNAME};
962 }
963
964 sub writefiles {
965         my($writeheader) = @_;
966         # First File.. inspircd_config.h
967         chomp(my $incos = `uname -n -s -r`);
968         chomp($version = `sh src/version.sh`);
969         chomp(my $revision2 = getrevision());
970         if ($writeheader == 1)
971         {
972                 print "Writing \033[1;32minspircd_config.h\033[0m\n";
973                 open(FILEHANDLE, ">include/inspircd_config.h");
974                 my $NL = $config{NICK_LENGT}+1;
975                 my $CL = $config{CHAN_LENGT}+1;
976                 print FILEHANDLE <<EOF;
977 /* Auto generated by configure, do not modify! */
978 #ifndef __CONFIGURATION_AUTO__
979 #define __CONFIGURATION_AUTO__
980
981 /* this is for windows support. */
982 #define CoreExport /**/
983 #define DllExport /**/
984
985 #define CONFIG_FILE "$config{CONFIG_DIR}/inspircd.conf"
986 #define MOD_PATH "$config{MODULE_DIR}"
987 #define VERSION "$version"
988 #define REVISION "$revision2"
989 #define MAXCLIENTS $config{MAX_CLIENT}
990 #define MAXCLIENTS_S "$config{MAX_CLIENT}"
991 #define SOMAXCONN_S "$config{_SOMAXCONN}"
992 #define MAX_DESCRIPTORS $config{MAX_DESCRIPTORS}
993 #define NICKMAX $NL
994 #define CHANMAX $CL
995 #define MAXMODES $config{MAXI_MODES}
996 #define IDENTMAX $config{MAX_IDENT}
997 #define MAXQUIT $config{MAX_QUIT}
998 #define MAXTOPIC $config{MAX_TOPIC}
999 #define MAXKICK $config{MAX_KICK}
1000 #define MAXGECOS $config{MAX_GECOS}
1001 #define MAXAWAY $config{MAX_AWAY}
1002 #define OPTIMISATION $config{OPTIMITEMP}
1003 #define LIBRARYDIR "$config{LIBRARY_DIR}"
1004 #define SYSTEM "$incos"
1005 EOF
1006 print FILEHANDLE "#define MAXBUF " . ($config{MAXBUF}+2) . "\n";
1007
1008                 if ($config{OSNAME} =~ /SunOS/i) {
1009                         print FILEHANDLE "#define IS_SOLARIS\n";
1010                 }
1011                 if ($config{OSNAME} =~ /CYGWIN/i) {
1012                         print FILEHANDLE "#define IS_CYGWIN\n";
1013                         print FILEHANDLE "#ifndef FD_SETSIZE\n#define FD_SETSIZE        1024\n#endif\n";
1014                 }
1015                 if ($config{OSNAME} =~ /MINGW32/i) {
1016                         print FILEHANDLE "#define IS_MINGW\n";
1017                 }
1018                 if ($config{OSNAME} =~ /CYG-STATIC/i) {
1019                         print FILEHANDLE "#ifndef FD_SETSIZE\n#define FD_SETSIZE    1024\n#endif\n";
1020                 }
1021                 if ($config{STATIC_LINK} eq "yes") {
1022                         print FILEHANDLE "#define STATIC_LINK\n";
1023                 }
1024                 if ($config{GCCVER} >= 3) {
1025                         print FILEHANDLE "#define GCC3\n";
1026                 }
1027                 if ($config{HAS_STRLCPY} eq "true") {
1028                         print FILEHANDLE "#define HAS_STRLCPY\n";
1029                 }
1030                 if ($config{HAS_STDINT} eq "true") {
1031                         print FILEHANDLE "#define HAS_STDINT\n";
1032                 }
1033                 if ($config{IPV6} =~ /y/i) {
1034                         print FILEHANDLE "#define IPV6\n";
1035                 }
1036                 if ($config{SUPPORT_IP6LINKS} =~ /y/i) {
1037                         print FILEHANDLE "#define SUPPORT_IP6LINKS\n";
1038                 }
1039                 my $use_hiperf = 0;
1040                 if (($has_kqueue) && ($config{USE_KQUEUE} eq "y")) {
1041                         print FILEHANDLE "#define USE_KQUEUE\n";
1042                         $se = "socketengine_kqueue";
1043                         $use_hiperf = 1;
1044                 }
1045                 if (($has_epoll) && ($config{USE_EPOLL} eq "y")) {
1046                         print FILEHANDLE "#define USE_EPOLL\n";
1047                         $se = "socketengine_epoll";
1048                         $use_hiperf = 1;
1049                 }
1050                 if (($has_ports) && ($config{USE_PORTS} eq "y")) {
1051                         print FILEHANDLE "#define USE_PORTS\n";
1052                         $se = "socketengine_ports";
1053                         $use_hiperf = 1;
1054                 }
1055                 # user didn't choose either epoll or select for their OS.
1056                 # default them to USE_SELECT (ewwy puke puke)
1057                 if (!$use_hiperf) {
1058                         print FILEHANDLE "#define USE_SELECT\n";
1059                         $se = "socketengine_select";
1060                 }
1061                 print FILEHANDLE "\n#endif\n";
1062                 close(FILEHANDLE);
1063         }
1064
1065         if ($writeheader)
1066         {
1067                 open(FILEHANDLE, ">include/inspircd_se_config.h");
1068                 print FILEHANDLE <<EOF;
1069 /* Auto generated by configure, do not modify or commit to svn! */
1070 #ifndef __CONFIGURATION_SOCKETENGINE__
1071 #define __CONFIGURATION_SOCKETENGINE__
1072
1073 #include "$se.h"
1074
1075 #endif
1076 EOF
1077                 close(FILEHANDLE);
1078         }
1079
1080
1081         # Create a Modules List..
1082         my $modules = "";
1083         foreach $i (@modlist)
1084         {
1085                 if ($config{STATIC_LINK} eq "yes") {
1086                         $modules .= "m_".$i.".o ";
1087                 }
1088                 else {
1089                         $modules .= "m_".$i.".so ";
1090                 }
1091         }
1092         chomp($modules);   # Remove Redundant whitespace..
1093
1094         opendir(DIRHANDLE, "src/modules");
1095         foreach $name (sort readdir(DIRHANDLE)) {
1096                 if ($name =~ /^m_(.+?)$/) {
1097                         if (opendir(MDIRHANDLE, "src/modules/$name") != 0) {
1098                                 closedir(MDIRHANDLE);
1099                                 $modules .= "$name.so ";
1100                         }
1101                 }
1102         }
1103         closedir(DIRHANDLE);
1104
1105
1106         # Write all .in files.
1107         my $tmp = "";
1108         my $file = "";
1109         my $exe = "inspircd";
1110
1111         if ($config{OSNAME} =~ /CYGWIN/i) {
1112                 $exe = "inspircd.exe";
1113         }
1114
1115         opendir(DIRHANDLE, $this);
1116
1117         # Do this once here, and cache it in the .*.inc files,
1118         # rather than attempting to read src/version.sh from
1119         # compiled code -- we might not have the source to hand.
1120         # Fix for bug#177 by Brain.
1121
1122         chomp(my $version = `sh ./src/version.sh`);
1123         chomp(my $revision = getrevision());
1124         $version = "$version(r$revision)";
1125
1126         my $LIBEXT = "so";
1127         if ($config{IS_DARWIN} eq "YES")
1128         {
1129                 $LIBEXT = "dylib";
1130         }
1131         # We can actually parse any file starting with . and ending with .inc,
1132         # but right now we only parse .inspircd.inc to form './inspircd'
1133
1134         foreach $name (sort readdir(DIRHANDLE)) {
1135                 if ($name =~ /^\.(.+)\.inc$/) {
1136                         $file = $1;
1137                         # All .name.inc files need parsing!
1138                         $tmp = "";
1139                         open(FILEHANDLE, ".$file.inc");
1140                         while (<FILEHANDLE>) {
1141                                 $tmp .= $_;
1142                         }
1143                         close(FILEHANDLE);
1144
1145                         $tmp =~ s/\@CC\@/$config{CC}/;
1146                         $tmp =~ s/\@MAKEPROG\@/$config{MAKEPROG}/;
1147                         $tmp =~ s/\@FLAGS\@/$config{FLAGS}/;
1148                         $tmp =~ s/\@DEVELOPER\@/$config{DEVELOPER}/;
1149                         $tmp =~ s/\@LDLIBS\@/$config{LDLIBS}/;
1150                         $tmp =~ s/\@BASE_DIR\@/$config{BASE_DIR}/;
1151                         $tmp =~ s/\@CONFIG_DIR\@/$config{CONFIG_DIR}/;
1152                         $tmp =~ s/\@MODULE_DIR\@/$config{MODULE_DIR}/;
1153                         $tmp =~ s/\@BINARY_DIR\@/$config{BINARY_DIR}/;
1154                         $tmp =~ s/\@LIBRARY_DIR\@/$config{LIBRARY_DIR}/;
1155                         $tmp =~ s/\@LIBRARY_EXT\@/$LIBEXT/;
1156                         $tmp =~ s/\@MODULES\@/$modules/;
1157                         $tmp =~ s/\@STARTSCRIPT\@/$config{STARTSCRIPT}/;
1158                         $tmp =~ s/\@DESTINATION\@/$config{DESTINATION}/;
1159                         $tmp =~ s/\@EXTRA_DIR\@/$config{EXTRA_DIR}/;
1160                         $tmp =~ s/\@EXECUTABLE\@/$exe/;
1161                         $tmp =~ s/\@MAKEORDER\@/$config{MAKEORDER}/;
1162                         $tmp =~ s/\@STATICLIBS\@/$config{STATICLIBS}/;
1163                         $tmp =~ s/\@VERSION\@/$version/;
1164
1165                         print "Writing \033[1;32m$file\033[0m\n";
1166                         open(FILEHANDLE, ">$file");
1167                         print FILEHANDLE $tmp;
1168                 }
1169         }
1170         closedir(DIRHANDLE);
1171
1172         # Make inspircd executable!
1173         chmod 0744, 'inspircd';
1174
1175         if ($config{STATIC_LINK} eq "yes") {
1176                 print "Writing static-build \033[1;32msrc/Makefile\033[0m\n";
1177                 write_static_makefile();
1178                 write_static_modules_makefile();
1179         } elsif ($config{OSNAME} =~ /CYGWIN/i) {
1180                 print "Writing cygwin-build \033[1;32msrc/Makefile\033[0m\n";
1181                 write_static_makefile();
1182                 write_dynamic_modules_makefile();
1183         } else {
1184                 print "Writing dynamic-build \033[1;32msrc/Makefile\033[0m\n";
1185                 write_dynamic_makefile();
1186                 write_dynamic_modules_makefile();
1187         }
1188 }
1189
1190 sub write_static_modules_makefile {
1191         # Modules Makefile..
1192         print "Writing \033[1;32msrc/modules/Makefile\033[0m\n";
1193         open(FILEHANDLE, ">src/modules/Makefile");
1194
1195         ###
1196         # Module Makefile Header
1197         ###
1198         print FILEHANDLE <<EOF;
1199 # (C) ChatSpike development team
1200 # Makefile by <Craig\@ChatSpike.net>
1201 # Many Thanks to Andrew Church <achurch\@achurch.org>
1202 #    for assisting with making this work right.
1203 #
1204 # Automatically Generated by ./configure to add a modules
1205 # please run ./configure --update
1206
1207 all: \$(MODULES)
1208
1209 EOF
1210         ###
1211         # End Module Makefile Header
1212         ###
1213
1214         # Create a Modules List..
1215         my $modules = "";
1216         my $cmflags = "";
1217         my $liflags = "";
1218
1219         open(MODLIST,">include/modlist.h");
1220
1221         ###
1222         # Include File Header
1223         ###
1224         print MODLIST <<HEADER;
1225 // Generated automatically by configure. DO NOT EDIT!
1226
1227 #ifndef __SYMBOLS__H_CONFIGURED__
1228 #define __SYMBOLS__H_CONFIGURED__
1229
1230 HEADER
1231         ###
1232         # End Include File Header
1233         ###
1234
1235         # Place Module List into Include
1236         foreach $i (@modlist) {
1237                 if ($i !~ /_static$/) {
1238                         print MODLIST "extern \"C\" void * $i\_init (void);\n";
1239                 }
1240         }
1241         print MODLIST "\nstruct {const char *name; initfunc *value; } modsyms[] = {\n";
1242
1243         ###
1244         # Build Module Crap
1245         ###
1246         foreach $i (@modlist)
1247         {
1248                 if ($i !~ /_static$/) {
1249                         $cmflags = getcompilerflags("src/modules/m_".$i.".cpp");
1250                         $liflags = getlinkerflags("src/modules/m_".$i.".cpp");
1251                         $deps = getdependencies("src/modules/m_".$i.".cpp");
1252
1253                         #print "file: $i: cmflags=$cmflags; liflags=$liflags; deps=$deps\n";
1254
1255                         ###
1256                         # Write Entry to the Makefile
1257                         ###
1258                         print FILEHANDLE <<EOCHEESE;
1259 m_$i.o: .m_$i\_static.cpp ../../include/modules.h ../../include/users.h ../../include/channels.h ../../include/base.h $deps
1260         \$(CC) -pipe -I../../include \$(FLAGS) $flags -export-dynamic -c .m_$i\_static.cpp
1261         mv .m_$i\_static.o ../m_$i.o
1262
1263 EOCHEESE
1264                         ###
1265                         # End Write Entry to the MakeFile
1266                         ###
1267                         print "Configuring module [\033[1;32mm_$i.so\033[0m] for static linking... ";
1268                         open(MODULE,"<src/modules/m_".$i.".cpp") or die("Could not open m_".$i.".cpp");
1269                         open(MUNGED,">src/modules/.m_".$i."_static.cpp") or die("Could not create .m_".$i."_static.cpp");
1270                         while (chomp($a = <MODULE>)) { 
1271                                 $a =~ s/init_module/$i\_init/g;
1272                                 print MUNGED "$a\n";
1273                         }
1274                         close(MODULE);
1275                         close(MUNGED);
1276                         print MODLIST <<EOENT;
1277 {"m_$i.so",\&$i\_init},
1278 EOENT
1279                         print "done\n";
1280                 }
1281         }
1282
1283         print MODLIST "{0}};\n\n#endif\n";
1284         close(MODLIST);
1285 }
1286
1287 sub write_dynamic_modules_makefile {
1288         # Modules Makefile..
1289         print "Writing \033[1;32msrc/modules/Makefile\033[0m\n";
1290         open(FILEHANDLE, ">src/modules/Makefile");
1291         my $extra = "";
1292
1293         if ($config{OSNAME} =~ /CYGWIN/i) {
1294                 $extra = "../inspircd.dll.a";
1295         }
1296
1297 ###
1298 # Module Makefile Header
1299 ###
1300         print FILEHANDLE <<EOF;
1301 # (C) ChatSpike development team
1302 # Makefile by <Craig\@ChatSpike.net>
1303 # Many Thanks to Andrew Church <achurch\@achurch.org>
1304 #    for assisting with making this work right.
1305 #
1306 # Automatically Generated by ./configure to add a modules
1307 # please run ./configure -update or ./configure -modupdate
1308
1309 all: \$(MODULES)
1310
1311 EOF
1312         ###
1313         # End Module Makefile Header
1314         ###
1315
1316         # Create a Modules List..
1317         my $modules = "";
1318         my $cmflags = "";
1319         my $liflags = "";
1320         my $crud = "";
1321
1322         foreach $i (@modlist) {
1323                 ###
1324                 # Write Entry to the MakeFile
1325                 ###
1326                 $cmflags = getcompilerflags("src/modules/m_".$i.".cpp");
1327                 $liflags = getlinkerflags("src/modules/m_".$i.".cpp");
1328                 $deps = getdependencies("src/modules/m_".$i.".cpp");
1329         
1330                 #print "file: $i: cmflags=$cmflags; liflags=$liflags; deps=$deps\n";
1331         
1332                 print FILEHANDLE <<EOCHEESE;
1333 m_$i.so: m_$i.cpp ../../include/modules.h ../../include/users.h ../../include/channels.h ../../include/base.h ../../include/inspircd_config.h ../../include/inspircd.h ../../include/configreader.h $deps
1334         \$(CC) -pipe -I../../include \$(FLAGS) $cmflags -export-dynamic -c m_$i.cpp
1335 EOCHEESE
1336
1337 if ($config{OSNAME} =~ /darwin/) {
1338                 print FILEHANDLE <<EOCHEESE;
1339         \$(CC) -pipe -twolevel_namespace -undefined dynamic_lookup \$(FLAGS) -bundle $liflags -o m_$i.so m_$i.o $extra
1340
1341 EOCHEESE
1342 } else {
1343                 print FILEHANDLE <<EOCHEESE;
1344         \$(CC) -pipe \$(FLAGS) -shared $liflags -o m_$i.so m_$i.o $extra
1345
1346 EOCHEESE
1347 }
1348                 $crud = $crud . "       install -m \$(INSTMODE) m_$i.so \$(MODPATH)\n";
1349 ###
1350                 # End Write Entry to the MakeFile
1351                 ###
1352         }
1353
1354         opendir(DIRHANDLE, "src/modules");
1355         foreach $name (sort readdir(DIRHANDLE)) {
1356                 if ($name =~ /^m_(.+?)$/) {
1357                         $crapola = "";
1358                         $crap3 = "";
1359                         $mliflags = "";
1360                         # A module made of multiple files, in a dir, e.g. src/modules/m_spanningtree/
1361                         if (opendir(MDIRHANDLE, "src/modules/$name") != 0) {
1362                                 my $i = 0;
1363                                 print FILEHANDLE "$name.so: ../../include/modules.h ../../include/users.h ../../include/channels.h ../../include/base.h ../../include/inspircd_config.h ../../include/inspircd.h ../../include/configreader.h"; 
1364                                 foreach $fname (sort readdir(MDIRHANDLE)) {
1365                                         if ($fname =~ /\.cpp$/) {
1366                                                 $cmflags = getcompilerflags("src/modules/$name/$fname");
1367                                                 $mliflags = $mliflags . " " . getlinkerflags("src/modules/$name/$fname");
1368                                                 $deps = getdependencies("src/modules/$name/$fname");
1369                                                 $oname = $fname;
1370                                                 $oname =~ s/\.cpp$/.o/g;
1371                                                 print FILEHANDLE " $name/$oname";
1372                                                 $crapola = $crapola .  "$name/$oname: $name/$fname ../../include/modules.h ../../include/users.h ../../include/channels.h ../../include/base.h ../../include/inspircd_config.h ../../include/inspircd.h ../../include/configreader.h $deps\n";
1373                                                 $crapola = $crapola .  "        \$(CC) -pipe -I../../include -I. \$(FLAGS) $cmflags -export-dynamic -o $name/$oname -c $name/$fname\n\n";
1374                                                 $crap3 = $crap3 . " $name/$oname";
1375                                                 $i++;
1376                                         }
1377                                 }
1378                                 print "Composing Makefile rules for directory \033[1;32m$name\033[0m... (\033[1;32m$i files found\033[0m)\n";
1379                                 if ($config{IS_DARWIN} eq "YES") {
1380                                         print FILEHANDLE "\n    \$(CC) -pipe -twolevel_namespace -undefined dynamic_lookup \$(FLAGS) -bundle -o $name.so $crap3\n"; 
1381                                 } else {
1382                                         print FILEHANDLE "\n    \$(CC) -pipe \$(FLAGS) -shared $mliflags -o $name.so $crap3\n";
1383                                 }
1384                                 print FILEHANDLE "\n$crapola\n";
1385                                 closedir(MDIRHANDLE);
1386                                 $crud = $crud . "       install -m \$(INSTMODE) $name.so \$(MODPATH)\n";
1387                         }
1388                 }
1389         }
1390         closedir(DIRHANDLE);
1391
1392         print FILEHANDLE "modinst:\n    \@echo \"Installing modules...\"\n" . $crud;
1393 }
1394
1395
1396 sub write_static_makefile {
1397         open(FH,">src/Makefile") or die("Could not write src/Makefile!");
1398         my $i = 0;
1399         my @cmdlist = ();
1400         opendir(DIRHANDLE, "src");
1401         foreach $name (sort readdir(DIRHANDLE)) {
1402                 if ($name =~ /^cmd_(.+)\.cpp$/) {
1403                         $cmdlist[$i++] = $1;
1404                 }
1405         }
1406         closedir(DIRHANDLE);
1407         my $cmdobjs = "";
1408         my $srcobjs = "";
1409         foreach my $cmd (@cmdlist) {
1410                 $cmdobjs = $cmdobjs . "cmd_$cmd.o ";
1411                 $srcobjs = $srcobjs . "cmd_$cmd.cpp ";
1412         }
1413         print FH <<EOM;
1414 # Insp Makefile :p
1415 #
1416 # (C) ChatSpike development team
1417 # Makefile by <Craig\@ChatSpike.net>
1418 # Makefile version 2 (statically linked core) by <brain\@inspircd.org>
1419 #
1420
1421 CC = im a cheezeball
1422
1423 CXXFLAGS = -I../include \${FLAGS}
1424 CPPFILES = \$(shell /bin/ls -l modes/ | grep '\\.cpp' | sed 's/^.* //' | grep -v svn)
1425 RELCPPFILES = \$(shell /bin/ls -l modes/ | grep '\\.cpp' | sed 's/^.* /modes\\//' | grep -v svn)
1426
1427 EOM
1428
1429 $se = "socketengine_select";
1430 if (($has_kqueue) && ($config{USE_KQUEUE} eq "y")) {
1431         $se = "socketengine_kqueue";
1432 }       
1433 elsif (($has_epoll) && ($config{USE_EPOLL} eq "y")) {
1434         $se = "socketengine_epoll";
1435 }
1436 elsif (($has_ports) && ($config{USE_PORTS} eq "y")) {
1437         $se = "socketengine_ports";
1438 }
1439
1440         ###
1441         # This next section is for cygwin dynamic module builds.
1442         # Basically, what we do, is build the inspircd core as a library
1443         # then the main executable uses that. the library is capable of
1444         # loading / unloading the modules dynamically :)
1445         # Massive thanks to the guys on #cygwin @ irc.freenode.net for helping
1446         # make this work :)
1447         ###
1448
1449         if ($config{OSNAME} =~ /CYGWIN/i) {
1450                 print FH <<EOM;
1451 all: timer.o command_parse.o cull_list.o userprocess.o socketengine.o socket.o hashcomp.o channels.o mode.o xline.o inspstring.o dns.o base.o configreader.o inspsocket.o $cmdobjs commands.o dynamic.o users.o modules.o wildcard.o helperfuncs.o snomasks.o inspircd.exe
1452
1453 inspircd.exe: inspircd.dll.a
1454         \$(CC) -o \$@ \$^
1455
1456 inspircd.dll inspircd.dll.a: inspircd.o channels.o mode.o xline.o inspstring.o dns.o base.o configreader.o inspsocket.o $cmdobjs  commands.o dynamic.o users.o modules.o wildcard.o helperfuncs.o hashcomp.o socket.o socketengine.o userprocess.o cull_list.o command_parse.o timer.o snomasks.o
1457         \$(CC) -shared -Wl,--out-implib=inspircd.dll.a -o inspircd.dll \$^
1458 EOM
1459         } else {
1460                 print FH <<EOM;
1461 all: timer.o command_parse.o cull_list.o userprocess.o socketengine.o socket.o hashcomp.o channels.o mode.o xline.o inspstring.o dns.o base.o configreader.o inspsocket.o $cmdobjs commands.o dynamic.o users.o modules.o wildcard.o helperfuncs.o snomasks.o \$(MODULES) inspircd.exe
1462
1463 inspircd.exe: inspircd.cpp ../include/base.h ../include/channels.h ../include/inspircd.h ../include/channels.h ../include/globals.h ../include/inspircd_config.h ../include/base.h
1464         \$(CC) -I../include \$(FLAGS) inspircd.cpp -o inspircd.exe \$(LDLIBS) channels.o mode.o xline.o inspstring.o dns.o base.o inspsocket.o configreader.o $cmdobjs commands.o dynamic.o users.o modules.o wildcard.o helperfuncs.o hashcomp.o socket.o socketengine.o userprocess.o cull_list.o command_parse.o timer.o snomasks.o modes/modeclasses.a \$(MODULES)
1465 EOM
1466         }
1467
1468         print FH <<EOM;
1469
1470 cull_list.o: cull_list.cpp ../include/base.h ../include/hashcomp.h ../include/globals.h ../include/inspircd_config.h ../include/users.h ../include/channels.h
1471         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c cull_list.cpp
1472
1473 snomasks.o: snomasks.cpp ../include/base.h ../include/hashcomp.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/channels.h
1474         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c snomasks.cpp
1475
1476 command_parse.o: command_parse.cpp ../include/base.h ../include/hashcomp.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1477         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c command_parse.cpp
1478
1479 userprocess.o: userprocess.cpp ../include/base.h ../include/hashcomp.h ../include/globals.h ../include/inspircd_config.h
1480         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c userprocess.cpp
1481
1482 socketengine.o: $se.cpp socketengine.cpp ../include/base.h ../include/hashcomp.h ../include/globals.h ../include/inspircd_config.h ../include/$se.h
1483         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c socketengine.cpp $se.cpp
1484
1485 hashcomp.o: hashcomp.cpp ../include/base.h ../include/hashcomp.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1486         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c hashcomp.cpp
1487
1488 helperfuncs.o: helperfuncs.cpp ../include/base.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1489         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c helperfuncs.cpp
1490
1491 channels.o: channels.cpp ../include/base.h ../include/channels.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1492         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c channels.cpp
1493
1494 mode.o: mode.cpp ../include/base.h ../include/mode.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h \$(RELCPPFILES) modes/modeclasses.a
1495         \${MAKE} -C "modes" DIRNAME="src/modes" CC="\$(CC)" \$(MAKEARGS)
1496         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c mode.cpp
1497
1498 xline.o: xline.cpp ../include/base.h ../include/xline.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1499         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c xline.cpp
1500
1501 inspstring.o: inspstring.cpp ../include/base.h ../include/inspstring.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1502         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c inspstring.cpp
1503
1504 dns.o: dns.cpp ../include/base.h ../include/dns.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1505         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c dns.cpp
1506
1507 base.o: base.cpp ../include/base.h ../include/globals.h ../include/inspircd_config.h
1508         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c base.cpp
1509
1510 configreader.o: configreader.cpp ../include/base.h ../include/configreader.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1511         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c configreader.cpp
1512
1513 commands.o: commands.cpp ../include/base.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h $srcobjs
1514         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c commands.cpp $cmdobjs
1515
1516 dynamic.o: dynamic.cpp ../include/base.h ../include/dynamic.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1517         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c dynamic.cpp
1518
1519 users.o: users.cpp ../include/base.h ../include/users.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1520         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c users.cpp
1521
1522 modules.o: modules.cpp ../include/base.h ../include/modules.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1523         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c modules.cpp
1524
1525 wildcard.o: wildcard.cpp ../include/base.h ../include/wildcard.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1526         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c wildcard.cpp
1527
1528 socket.o: socket.cpp ../include/base.h ../include/inspircd.h ../include/globals.h ../include/inspircd_config.h
1529         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c socket.cpp
1530         
1531 inspsocket.o: inspsocket.cpp ../include/base.h ../include/inspircd.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1532         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c inspsocket.cpp
1533
1534 timer.o: timer.cpp ../include/base.h ../include/inspircd.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1535         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c timer.cpp
1536
1537 EOM
1538         foreach my $cmd (@cmdlist) {
1539                 print FH <<ITEM;
1540 cmd_$cmd.o: cmd_$cmd.cpp ../include/base.h ../include/modules.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/commands/cmd_$cmd.h
1541         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c cmd_$cmd.cpp
1542 ITEM
1543         }
1544         close(FH);
1545 }
1546
1547 sub write_dynamic_makefile {
1548
1549         my $i = 0;
1550         my @cmdlist = ();
1551         opendir(DIRHANDLE, "src");
1552         foreach $name (sort readdir(DIRHANDLE)) {
1553                 if ($name =~ /^cmd_(.+)\.cpp$/) {
1554                         $cmdlist[$i++] = $1;
1555                 }
1556         }
1557         closedir(DIRHANDLE);
1558
1559         my $cmdobjs = "";
1560         my $srcobjs = "";
1561         foreach my $cmd (@cmdlist) {
1562                 $cmdobjs = $cmdobjs . "cmd_$cmd.so ";
1563                 $srcobjs = $srcobjs . "cmd_$cmd.cpp ";
1564         }
1565
1566         $se = "socketengine_select";
1567         if (($has_kqueue) && ($config{USE_KQUEUE} eq "y")) {
1568                 $se = "socketengine_kqueue";
1569         }
1570         elsif (($has_epoll) && ($config{USE_EPOLL} eq "y")) {
1571                 $se = "socketengine_epoll";
1572         }
1573         elsif (($has_ports) && ($config{USE_PORTS} eq "y")) {
1574                 $se = "socketengine_ports";
1575         }
1576
1577         open(FH,">src/Makefile") or die("Could not write src/Makefile");
1578         print FH <<EOM;
1579 # Insp Makefile :p
1580 #
1581 # (C) ChatSpike development team
1582 # Makefile by <Craig\@ChatSpike.net>
1583 # Makefile version 2 (dynamically linked core) by <brain\@inspircd.org>
1584 #
1585
1586 CC = im a cheezeball
1587
1588 CXXFLAGS = -I../include \${FLAGS}
1589 CPPFILES = \$(shell /bin/ls -l modes/ | grep '\\.cpp' | sed 's/^.* //' | grep -v svn)
1590 RELCPPFILES = \$(shell /bin/ls -l modes/ | grep '\\.cpp' | sed 's/^.* /modes\\//' | grep -v svn)
1591
1592 EOM
1593
1594 if ($config{IS_DARWIN} eq "YES") {
1595         print FH <<EOM;
1596 all: libIRCDtimer.dylib libIRCDcull_list.dylib libIRCDuserprocess.dylib libIRCDsocketengine.dylib libIRCDsocket.dylib libIRCDhash.dylib libIRCDchannels.dylib libIRCDmode.dylib libIRCDxline.dylib libIRCDstring.dylib libIRCDasyncdns.dylib libIRCDbase.dylib libIRCDconfigreader.dylib libIRCDinspsocket.dylib libIRCDcommands.dylib libIRCDdynamic.dylib libIRCDusers.dylib libIRCDmodules.dylib libIRCDwildcard.dylib libIRCDhelper.dylib libIRCDcommand_parse.dylib libIRCDsnomasks.dylib inspircd
1597
1598 inspircd: inspircd.cpp ../include/base.h ../include/channels.h ../include/inspircd.h ../include/channels.h ../include/globals.h ../include/inspircd_config.h ../include/socket.h $cmdobjs libIRCDtimer.dylib libIRCDcull_list.dylib libIRCDuserprocess.dylib libIRCDsocketengine.dylib libIRCDsocket.dylib libIRCDhash.dylib libIRCDchannels.dylib libIRCDmode.dylib libIRCDxline.dylib libIRCDstring.dylib libIRCDasyncdns.dylib libIRCDbase.dylib libIRCDconfigreader.dylib libIRCDinspsocket.dylib libIRCDsnomasks.dylib libIRCDcommands.dylib libIRCDdynamic.dylib libIRCDusers.dylib libIRCDmodules.dylib libIRCDwildcard.dylib libIRCDhelper.dylib libIRCDcommand_parse.dylib
1599         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c inspircd.cpp
1600         \$(CC) -pipe -dynamic -bind_at_load -L. -o inspircd \$(LDLIBS) inspircd.o libIRCDchannels.dylib libIRCDmode.dylib libIRCDxline.dylib libIRCDstring.dylib libIRCDasyncdns.dylib libIRCDbase.dylib libIRCDconfigreader.dylib libIRCDinspsocket.dylib libIRCDcommands.dylib libIRCDdynamic.dylib libIRCDusers.dylib libIRCDmodules.dylib libIRCDwildcard.dylib libIRCDhelper.dylib libIRCDhash.dylib libIRCDsocket.dylib libIRCDsocketengine.dylib libIRCDuserprocess.dylib libIRCDcull_list.dylib libIRCDcommand_parse.dylib libIRCDtimer.dylib libIRCDsnomasks.dylib
1601
1602 libIRCDsocketengine.dylib: $se.cpp socketengine.cpp ../include/base.h ../include/hashcomp.h ../include/globals.h ../include/inspircd_config.h ../include/$se.h
1603         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c socketengine.cpp
1604         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c $se.cpp
1605         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDsocketengine.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDsocketengine.dylib socketengine.o $se.o
1606
1607 libIRCDsnomasks.dylib: snomasks.cpp ../include/base.h ../include/hashcomp.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/channels.h
1608         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c snomasks.cpp
1609         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDsnomasks.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDsnomasks.dylib snomasks.o
1610
1611 libIRCDcommand_parse.dylib: command_parse.cpp ../include/base.h ../include/hashcomp.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1612         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c command_parse.cpp
1613         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDcommand_parse.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDcommand_parse.dylib command_parse.o
1614
1615 libIRCDcull_list.dylib: cull_list.cpp ../include/base.h ../include/hashcomp.h ../include/globals.h ../include/inspircd_config.h ../include/users.h ../include/channels.h
1616         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c cull_list.cpp
1617         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDcull_list.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDcull_list.dylib cull_list.o
1618
1619 libIRCDuserprocess.dylib: userprocess.cpp ../include/base.h ../include/hashcomp.h ../include/globals.h ../include/inspircd_config.h
1620         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c userprocess.cpp
1621         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDuserprocess.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDuserprocess.dylib userprocess.o
1622
1623 libIRCDhash.dylib: hashcomp.cpp ../include/base.h ../include/hashcomp.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1624         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c hashcomp.cpp
1625         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDhash.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDhash.dylib hashcomp.o
1626
1627 libIRCDhelper.dylib: helperfuncs.cpp ../include/base.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1628         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c helperfuncs.cpp
1629         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDhelper.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDhelper.dylib helperfuncs.o
1630
1631 libIRCDchannels.dylib: channels.cpp ../include/base.h ../include/channels.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1632         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c channels.cpp
1633         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDchannels.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDchannels.dylib channels.o
1634
1635 libIRCDmode.dylib: mode.cpp ../include/base.h ../include/mode.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h \$(RELCPPFILES)
1636         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c mode.cpp
1637         \${MAKE} -C "modes" DIRNAME="src/modes" CC="\$(CC)" \$(MAKEARGS) CPPFILES="\$(CPPFILES)"
1638         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDmode.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDmode.dylib mode.o modes/modeclasses.a
1639
1640 libIRCDxline.dylib: xline.cpp ../include/base.h ../include/xline.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1641         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c xline.cpp
1642         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDxline.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDxline.dylib xline.o
1643
1644 libIRCDstring.dylib: inspstring.cpp ../include/base.h ../include/inspstring.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1645         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c inspstring.cpp
1646         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDstring.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDstring.dylib inspstring.o
1647
1648 libIRCDasyncdns.dylib: dns.cpp ../include/base.h ../include/dns.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1649         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c dns.cpp
1650         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDasyncdns.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDasyncdns.dylib dns.o
1651
1652 libIRCDbase.dylib: base.cpp ../include/base.h ../include/globals.h ../include/inspircd_config.h
1653         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c base.cpp
1654         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDbase.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDbase.dylib base.o
1655
1656 libIRCDconfigreader.dylib: configreader.cpp ../include/base.h ../include/configreader.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1657         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c configreader.cpp
1658         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDconfigreader.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDconfigreader.dylib configreader.o
1659
1660 libIRCDcommands.dylib: commands.cpp ../include/base.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1661         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c commands.cpp
1662         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDcommands.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDcommands.dylib commands.o
1663
1664 libIRCDdynamic.dylib: dynamic.cpp ../include/base.h ../include/dynamic.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1665         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c dynamic.cpp
1666         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDdynamic.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDdynamic.dylib dynamic.o
1667
1668 libIRCDusers.dylib: users.cpp ../include/base.h ../include/users.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1669         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c users.cpp
1670         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDusers.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDusers.dylib users.o
1671
1672 libIRCDmodules.dylib: modules.cpp ../include/base.h ../include/modules.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1673         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c modules.cpp
1674         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDmodules.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDmodules.dylib modules.o
1675
1676 libIRCDwildcard.dylib: wildcard.cpp ../include/base.h ../include/wildcard.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1677         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c wildcard.cpp
1678         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDwildcard.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDwildcard.dylib wildcard.o
1679
1680 libIRCDsocket.dylib: socket.cpp ../include/base.h ../include/inspircd.h ../include/globals.h ../include/inspircd_config.h
1681         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c socket.cpp
1682         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDsocket.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDsocket.dylib socket.o
1683
1684 libIRCDinspsocket.dylib: inspsocket.cpp ../include/base.h ../include/inspircd.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1685         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c inspsocket.cpp
1686         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDinspsocket.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDinspsocket.dylib inspsocket.o
1687
1688 libIRCDtimer.dylib: timer.cpp ../include/base.h ../include/inspircd.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1689         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c timer.cpp
1690         \$(CC) -pipe -install_name $config{LIBRARY_DIR}/libIRCDtimer.dylib -dynamiclib -twolevel_namespace -undefined dynamic_lookup -o libIRCDtimer.dylib timer.o
1691
1692 EOM
1693
1694 } else {
1695
1696         print FH <<EOM;
1697 all: libIRCDtimer.so libIRCDcull_list.so libIRCDuserprocess.so libIRCDsocketengine.so libIRCDsocket.so libIRCDhash.so libIRCDchannels.so libIRCDmode.so libIRCDxline.so libIRCDstring.so libIRCDasyncdns.so libIRCDbase.so libIRCDconfigreader.so libIRCDinspsocket.so $cmdobjs libIRCDcommands.so libIRCDdynamic.so libIRCDusers.so libIRCDmodules.so libIRCDwildcard.so libIRCDhelper.so libIRCDcommand_parse.so libIRCDsnomasks.so inspircd
1698
1699 inspircd: inspircd.cpp ../include/base.h ../include/channels.h ../include/inspircd.h ../include/channels.h ../include/globals.h ../include/inspircd_config.h ../include/socket.h libIRCDtimer.so libIRCDcull_list.so libIRCDuserprocess.so libIRCDsocketengine.so libIRCDsocket.so libIRCDhash.so libIRCDchannels.so libIRCDmode.so libIRCDxline.so libIRCDstring.so libIRCDasyncdns.so libIRCDbase.so libIRCDconfigreader.so libIRCDinspsocket.so $cmdobjs libIRCDsnomasks.so libIRCDcommands.so libIRCDdynamic.so libIRCDusers.so libIRCDmodules.so libIRCDwildcard.so libIRCDhelper.so libIRCDcommand_parse.so
1700         \$(CC) -pipe -I../include $extra -Wl,--rpath -Wl,$config{LIBRARY_DIR} \$(FLAGS) -rdynamic -L. inspircd.cpp -o inspircd \$(LDLIBS) libIRCDchannels.so libIRCDmode.so libIRCDxline.so libIRCDstring.so libIRCDasyncdns.so libIRCDbase.so libIRCDconfigreader.so libIRCDinspsocket.so libIRCDcommands.so libIRCDdynamic.so libIRCDusers.so libIRCDmodules.so libIRCDwildcard.so libIRCDhelper.so libIRCDhash.so libIRCDsocket.so libIRCDsocketengine.so libIRCDuserprocess.so libIRCDcull_list.so libIRCDcommand_parse.so libIRCDtimer.so libIRCDsnomasks.so
1701
1702 libIRCDsocketengine.so: $se.cpp socketengine.cpp ../include/base.h ../include/hashcomp.h ../include/globals.h ../include/inspircd_config.h ../include/$se.h
1703         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c socketengine.cpp $se.cpp
1704         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDsocketengine.so socketengine.o $se.o
1705
1706 libIRCDsnomasks.so: snomasks.cpp ../include/base.h ../include/hashcomp.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/channels.h
1707         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c snomasks.cpp
1708         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDsnomasks.so snomasks.o
1709
1710 libIRCDcommand_parse.so: command_parse.cpp ../include/base.h ../include/hashcomp.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1711         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c command_parse.cpp
1712         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDcommand_parse.so command_parse.o
1713
1714 libIRCDcull_list.so: cull_list.cpp ../include/base.h ../include/hashcomp.h ../include/globals.h ../include/inspircd_config.h ../include/users.h ../include/channels.h
1715         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c cull_list.cpp
1716         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDcull_list.so cull_list.o
1717
1718 libIRCDuserprocess.so: userprocess.cpp ../include/base.h ../include/hashcomp.h ../include/globals.h ../include/inspircd_config.h
1719         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c userprocess.cpp
1720         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDuserprocess.so userprocess.o
1721
1722 libIRCDhash.so: hashcomp.cpp ../include/base.h ../include/hashcomp.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1723         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c hashcomp.cpp
1724         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDhash.so hashcomp.o
1725
1726 libIRCDhelper.so: helperfuncs.cpp ../include/base.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1727         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c helperfuncs.cpp
1728         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDhelper.so helperfuncs.o
1729
1730 libIRCDchannels.so: channels.cpp ../include/base.h ../include/channels.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1731         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c channels.cpp
1732         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDchannels.so channels.o
1733
1734 libIRCDmode.so: mode.cpp ../include/base.h ../include/mode.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h \$(RELCPPFILES)
1735         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c mode.cpp
1736         \${MAKE} -C "modes" DIRNAME="src/modes" CC="\$(CC)" \$(MAKEARGS) CPPFILES="\$(CPPFILES)"
1737         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDmode.so mode.o modes/modeclasses.a
1738
1739 libIRCDxline.so: xline.cpp ../include/base.h ../include/xline.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1740         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c xline.cpp
1741         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDxline.so xline.o
1742
1743 libIRCDstring.so: inspstring.cpp ../include/base.h ../include/inspstring.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1744         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c inspstring.cpp
1745         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDstring.so inspstring.o
1746
1747 libIRCDasyncdns.so: dns.cpp ../include/base.h ../include/dns.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1748         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c dns.cpp
1749         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDasyncdns.so dns.o
1750
1751 libIRCDbase.so: base.cpp ../include/base.h ../include/globals.h ../include/inspircd_config.h
1752         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c base.cpp
1753         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDbase.so base.o
1754
1755 libIRCDconfigreader.so: configreader.cpp ../include/base.h ../include/configreader.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1756         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c configreader.cpp
1757         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDconfigreader.so configreader.o
1758
1759 libIRCDcommands.so: commands.cpp ../include/base.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1760         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c commands.cpp
1761         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDcommands.so commands.o
1762
1763 libIRCDdynamic.so: dynamic.cpp ../include/base.h ../include/dynamic.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1764         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c dynamic.cpp
1765         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDdynamic.so dynamic.o
1766
1767 libIRCDusers.so: users.cpp ../include/base.h ../include/users.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1768         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c users.cpp
1769         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDusers.so users.o
1770
1771 libIRCDmodules.so: modules.cpp ../include/base.h ../include/modules.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1772         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c modules.cpp
1773         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDmodules.so modules.o
1774
1775 libIRCDwildcard.so: wildcard.cpp ../include/base.h ../include/wildcard.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
1776         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c wildcard.cpp
1777         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDwildcard.so wildcard.o
1778
1779 libIRCDsocket.so: socket.cpp ../include/base.h ../include/inspircd.h ../include/globals.h ../include/inspircd_config.h
1780         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c socket.cpp
1781         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDsocket.so socket.o
1782
1783 libIRCDinspsocket.so: inspsocket.cpp ../include/base.h ../include/inspircd.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1784         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c inspsocket.cpp
1785         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDinspsocket.so inspsocket.o
1786
1787 libIRCDtimer.so: timer.cpp ../include/base.h ../include/inspircd.h ../include/globals.h ../include/inspircd_config.h ../include/timer.h
1788         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c timer.cpp
1789         \$(CC) -pipe -Wl,--rpath -Wl,$config{LIBRARY_DIR} -shared -o libIRCDtimer.so timer.o
1790
1791 EOM
1792 }
1793         foreach my $cmd (@cmdlist) {
1794                 print FH <<ITEM;
1795 cmd_$cmd.so: cmd_$cmd.cpp ../include/base.h ../include/modules.h ../include/inspircd.h ../include/channels.h ../include/users.h ../include/globals.h ../include/inspircd_config.h ../include/commands/cmd_$cmd.h
1796         \$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c cmd_$cmd.cpp
1797         \$(CC) -pipe $SHARED -o cmd_$cmd.so cmd_$cmd.o
1798
1799 ITEM
1800         }
1801         close(FH);
1802 }
1803