]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/configure.pm
184f994f10b427e44916038e34226256bdd9c215
[user/henk/code/inspircd.git] / make / configure.pm
1 #       +------------------------------------+
2 #       | Inspire Internet Relay Chat Daemon |
3 #       +------------------------------------+
4 #
5 #  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 # See: http://www.inspircd.org/wiki/index.php/Credits
7 #
8 # This program is free but copyrighted software; see
9 #      the file COPYING for details.
10 #
11 # ---------------------------------------------------
12
13 package make::configure;
14
15 require 5.8.0;
16
17 use strict;
18 use warnings FATAL => qw(all);
19
20 use Exporter 'import';
21 use POSIX;
22 use make::utilities;
23 our @EXPORT = qw(promptnumeric dumphash is_dir getmodules getrevision getcompilerflags getlinkerflags getdependencies getmodversion nopedantic resolve_directory yesno showhelp promptstring_s);
24
25 my $no_svn = 0;
26
27 sub yesno {
28         my ($flag,$prompt) = @_;
29         print "$prompt [\e[1;32m$main::config{$flag}\e[0m] -> ";
30         chomp(my $tmp = <STDIN>);
31         if ($tmp eq "") { $tmp = $main::config{$flag} }
32         if (($tmp eq "") || ($tmp =~ /^y/i))
33         {
34                 $main::config{$flag} = "y";
35         }
36         else
37         {
38                 $main::config{$flag} = "n";
39         }
40         return;
41 }
42
43 sub resolve_directory
44 {
45         my $ret = $_[0];
46         eval
47         {
48                 use File::Spec;
49                 $ret = File::Spec->rel2abs($_[0]);
50         };
51         return $ret;
52 }
53
54 sub getrevision {
55         if ($no_svn)
56         {
57                 return "0";
58         }
59         my $data = `svn info 2>/dev/null`;
60         if ($data eq "")
61         {
62                 $data = `git describe --tags --always 2>/dev/null`;
63                 if ($data eq "")
64                 {
65                         $no_svn = 1;
66                         return '0';
67                 }
68                 chomp $data; # remove \n
69                 return $data;
70         }
71         $data =~ /Revision: (\d+)/;
72         my $rev = $1;
73         if (!defined($rev))
74         {
75                 $rev = "0";
76         }
77         return $rev;
78 }
79
80 sub getcompilerflags {
81         my ($file) = @_;
82         open(FLAGS, $file) or return "";
83         while (<FLAGS>) {
84                 if ($_ =~ /^\/\* \$CompileFlags: (.+) \*\/$/) {
85                         my $x = translate_functions($1, $file);
86                         next if ($x eq "");
87                         close(FLAGS);
88                         return $x;
89                 }
90         }
91         close(FLAGS);
92         return "";
93 }
94
95 sub getlinkerflags {
96         my ($file) = @_;
97         open(FLAGS, $file) or return "";
98         while (<FLAGS>) {
99                 if ($_ =~ /^\/\* \$LinkerFlags: (.+) \*\/$/) {
100                         my $x = translate_functions($1, $file);
101                         next if ($x eq "");
102                         close(FLAGS);
103                         return $x;
104                 }
105         }
106         close(FLAGS);
107         return "";
108 }
109
110 sub getdependencies {
111         my ($file) = @_;
112         open(FLAGS, $file) or return "";
113         while (<FLAGS>) {
114                 if ($_ =~ /^\/\* \$ModDep: (.+) \*\/$/) {
115                         my $x = translate_functions($1, $file);
116                         next if ($x eq "");
117                         close(FLAGS);
118                         return $x;
119                 }
120         }
121         close(FLAGS);
122         return "";
123 }
124
125 sub getmodversion {
126         my ($file) = @_;
127         open(FLAGS, $file) or return "";
128         while (<FLAGS>) {
129                 if ($_ =~ /^\/\* \$ModVersion: (.+) \*\/$/) {
130                         my $x = translate_functions($1, $file);
131                         next if ($x eq "");
132                         close(FLAGS);
133                         return $x;
134                 }
135         }
136         close(FLAGS);
137         return "";
138 }
139
140 sub nopedantic {
141         my ($file) = @_;
142         open(FLAGS, $file) or return "";
143         while (<FLAGS>) {
144                 if ($_ =~ /^\/\* \$NoPedantic \*\/$/) {
145                         my $x = translate_functions($_, $file);
146                         next if ($x eq "");
147                         close(FLAGS);
148                         return 1;
149                 }
150         }
151         close(FLAGS);
152         return 0;
153 }
154
155 sub getmodules
156 {
157         my $i = 0;
158         print "Detecting modules ";
159         opendir(DIRHANDLE, "src/modules") or die("WTF, missing src/modules!");
160         foreach my $name (sort readdir(DIRHANDLE))
161         {
162                 if ($name =~ /^m_(.+)\.cpp$/)
163                 {
164                         my $mod = $1;
165                         $main::modlist[$i++] = $mod;
166                         print ".";
167                 }
168         }
169         closedir(DIRHANDLE);
170         print "\nOk, $i modules.\n";
171 }
172
173 sub promptnumeric($$)
174 {
175         my $continue = 0;
176         my ($prompt, $configitem) = @_;
177         while (!$continue)
178         {
179                 print "Please enter the maximum $prompt?\n";
180                 print "[\e[1;32m$main::config{$configitem}\e[0m] -> ";
181                 chomp(my $var = <STDIN>);
182                 if ($var eq "")
183                 {
184                         $var = $main::config{$configitem};
185                 }
186                 if ($var =~ /^\d+$/) {
187                         # We don't care what the number is, set it and be on our way.
188                         $main::config{$configitem} = $var;
189                         $continue = 1;
190                         print "\n";
191                 } else {
192                         print "You must enter a number in this field. Please try again.\n\n";
193                 }
194         }
195 }
196
197 sub promptstring_s($$)
198 {
199         my ($prompt,$default) = @_;
200         my $var;
201         print "$prompt\n";
202         print "[\e[1;32m$default\e[0m] -> ";
203         chomp($var = <STDIN>);
204         $var = $default if $var eq "";
205         print "\n";
206         return $var;
207 }
208
209 sub dumphash()
210 {
211         print "\n\e[1;32mPre-build configuration is complete!\e[0m\n\n";
212         print "\e[0mBase install path:\e[1;32m\t\t$main::config{BASE_DIR}\e[0m\n";
213         print "\e[0mConfig path:\e[1;32m\t\t\t$main::config{CONFIG_DIR}\e[0m\n";
214         print "\e[0mModule path:\e[1;32m\t\t\t$main::config{MODULE_DIR}\e[0m\n";
215         print "\e[0mLibrary path:\e[1;32m\t\t\t$main::config{LIBRARY_DIR}\e[0m\n";
216         print "\e[0mGCC Version Found:\e[1;32m\t\t$main::config{GCCVER}.$main::config{GCCMINOR}\e[0m\n";
217         print "\e[0mCompiler program:\e[1;32m\t\t$main::config{CC}\e[0m\n";
218         print "\e[0mIPv6 Support:\e[1;32m\t\t\t$main::config{IPV6}\e[0m\n";
219         print "\e[0mIPv6 to IPv4 Links:\e[1;32m\t\t$main::config{SUPPORT_IP6LINKS}\e[0m\n";
220         print "\e[0mGnuTLS Support:\e[1;32m\t\t\t$main::config{USE_GNUTLS}\e[0m\n";
221         print "\e[0mOpenSSL Support:\e[1;32m\t\t$main::config{USE_OPENSSL}\e[0m\n\n";
222         print "\e[1;32mImportant note: The maximum length values are now configured in the\e[0m\n";
223         print "\e[1;32m                configuration file, not in ./configure! See the <limits>\e[0m\n";
224         print "\e[1;32m                tag in the configuration file for more information.\e[0m\n\n";
225 }
226
227 sub is_dir
228 {
229         my ($path) = @_;
230         if (chdir($path))
231         {
232                 chdir($main::this);
233                 return 1;
234         }
235         else
236         {
237                 # Just in case..
238                 chdir($main::this);
239                 return 0;
240         }
241 }
242
243 sub showhelp
244 {
245         chomp(my $PWD = `pwd`);
246         print "Usage: configure [options]
247
248 *** NOTE: NON-INTERACTIVE CONFIGURE IS *NOT* SUPPORTED BY THE ***
249 *** INSPIRCD DEVELOPMENT TEAM. DO NOT ASK FOR HELP REGARDING  ***
250 ***     NON-INTERACTIVE CONFIGURE ON THE FORUMS OR ON IRC!    ***
251
252 Options: [defaults in brackets after descriptions]
253
254 When no options are specified, interactive
255 configuration is started and you must specify
256 any required values manually. If one or more
257 options are specified, non-interactive configuration
258 is started, and any omitted values are defaulted.
259
260 Arguments with a single \"-\" symbol, as in
261 InspIRCd 1.0.x, are also allowed.
262
263   --disable-interactive        Sets no options intself, but
264                                will disable any interactive prompting.
265   --disable-rpath              Disable runtime paths. DO NOT USE UNLESS
266                                YOU KNOW WHAT YOU ARE DOING!
267   --update                     Update makefiles and dependencies
268   --modupdate                  Detect new modules and write makefiles
269   --svnupdate {--rebuild}      Update working copy via subversion
270                                 {and optionally rebuild if --rebuild
271                                  is also specified}
272   --clean                      Remove .config.cache file and go interactive
273   --enable-gnutls              Enable GnuTLS module [no]
274   --enable-openssl             Enable OpenSSL module [no]
275   --enable-optimization=[n]    Optimize using -O[n] gcc flag
276   --enable-epoll               Enable epoll() where supported [set]
277   --enable-kqueue              Enable kqueue() where supported [set]
278   --disable-epoll              Do not enable epoll(), fall back
279                                to select() [not set]
280   --disable-kqueue             Do not enable kqueue(), fall back
281                                to select() [not set]
282   --enable-ipv6                Build ipv6 native InspIRCd [no]
283   --enable-remote-ipv6         Build with ipv6 support for remote
284                                servers on the network [yes]
285   --disable-remote-ipv6        Do not allow remote ipv6 servers [not set]
286   --with-cc=[filename]         Use an alternative g++ binary to
287                                build InspIRCd [g++]
288   --with-maxbuf=[n]            Change the per message buffer size [512]
289                                DO NOT ALTER THIS OPTION WITHOUT GOOD REASON
290                                AS IT *WILL* BREAK CLIENTS!!!
291   --prefix=[directory]         Base directory to install into (if defined,
292                                can automatically define config, module, bin
293                                and library dirs as subdirectories of prefix)
294                                [$PWD]
295   --config-dir=[directory]     Config file directory for config and SSL certs
296                                [$PWD/conf]
297   --module-dir=[directory]     Modules directory for loadable modules
298                                [$PWD/modules]
299   --binary-dir=[directory]     Binaries directory for core binary
300                                [$PWD/bin]
301   --library-dir=[directory]    Library directory for core libraries
302                                [$PWD/lib]
303   --list-extras                Show current status of extra modules
304   --enable-extras=[extras]     Enable the specified list of extras
305   --disable-extras=[extras]    Disable the specified list of extras
306   --help                       Show this help text and exit
307
308 ";
309         exit(0);
310 }
311
312 1;
313