summaryrefslogtreecommitdiff
path: root/configure
blob: c86190a2d089e30ae8fdf7d91c9229758f159fac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
#!/bin/sh
# InspIRCd Configuration Script
#
# Copyright 2003 The ChatSpike Development Team
# <brain@chatspike.net>
# <Craig@chatspike.net>
#
# $Id$
#
#
########################################

echo "Configuring default values..."

ME=`pwd`
GCCVER=`gcc -dumpversion | cut -c 1`
GCC34=`gcc -dumpversion | cut -c 3`
CONFIG_DIR=$ME/conf
MODULE_DIR=$ME/modules
BINARY_DIR=$ME/bin
INSTALL=`which install`
OPTIMITEMP=0
OPTIMISATI="-g"
MAX_CLIENT_T=`ulimit -n`
NICK_LENGT=32
CHAN_LENGT=64
MAX_CHANNE=20
MAXI_MODES=20
OSNAME=`(uname -s) 2>/dev/null` || OSNAME="unknown"

if [ -z $MAX_CLIENT_T ] ; then
        MAX_CLIENT_T=1024
        SCAN_FAILED=1
fi


if [ "$1" = "-clean" -o "$2" = "-clean" ] ; then
  `rm -rf .config.cache`
fi

if [ -e ".config.cache" -a -z "$CLEAN" ] ; then
    . .config.cache 
fi

if [ "$1" = "-update" -o "$2" = "-update" ] ; then
   # They wanna update their Makefile.. good for 'em
   # Make sure .config.cache exists
   if [ ! -e ".config.cache" ] ; then
     echo "You have not run ./configure before. Please do this before trying to run the update script."
     exit 0
   fi
   # Right, load the cache values
   . .config.cache
   # Check for modules

   case "$OSNAME" in
           FreeBSD)
                   LDLIBS="-Ldl"
                   FLAGS="-fPIC -frtti $OPTIMISATI"
                   MAKEPROG="gmake"
                   ;;
           *)
                   LDLIBS="-ldl"
                   FLAGS="-fPIC -frtti $OPTIMISATI"
                   MAKEPROG="make"
                   ;;
   esac

   MODULES=""
   for module in src/modules/*.cpp ; do
           mod=`echo $module | sed 's/.cpp/.so/' | sed 's/src\/modules\///'`
           MODULES="$MODULES $mod"
   done

   # Write the new makefile.
   for file in Makefile; do
          echo -e "\033[0;37mWriting \033[1;32m$file\033[0;37m"
          rm -f $file
          sed -e "
                  s%@MAKEPROG@%$MAKEPROG%g
                  s%@FLAGS@%$FLAGS%g
                  s%@LDLIBS@%$LDLIBS%g
                  s%@CONFIG_DIR@%$CONFIG_DIR%g
                  s%@MODULE_DIR@%$MODULE_DIR%g
                  s%@BINARY_DIR@%$BINARY_DIR%g
                  s%@MODULES@%$MODULES%g
          " .${file}.inc >> $file
   done
   echo -e "\033[0;37mWriting \033[1;32msrc/modules/Makefile\033[0;37m"
   rm -f src/modules/Makefile

   # Generate the Header..

   echo "# (C) ChatSpike development team" >> src/modules/Makefile
   echo "# Makefile by <Craig@ChatSpike.net>" >> src/modules/Makefile
   echo "# Many Thanks to Andrew Church <achurch@achurch.org>" >> src/modules/Makefile
   echo "#    for assisting with making this work right." >> src/modules/Makefile
   echo "#" >> src/modules/Makefile
   echo "# Automatically Generated by ./configure to add a module" >> src/modules/Makefile
   echo "# please run ./configure --update" >> src/modules/Makefile
   echo "" >> src/modules/Makefile
   echo "all: \$(MODULES)" >> src/modules/Makefile
   echo "" >> src/modules/Makefile


   for module in src/modules/*.cpp ; do
        flags=`grep '$CompileFlags: ' $module | sed 's/\/\* $CompileFlags://' | sed 's/\*\///'`
        mod=`echo $module | sed 's/.cpp/.so/' | sed 's/src\/modules\///'`
	mod2=`echo $module | sed 's/src\/modules\///'`
        echo "$mod:" >> src/modules/Makefile
        echo "	\$(CC) -I../../include \$(FLAGS) -shared$flags -o $mod $mod2" >> src/modules/Makefile
	echo "	@cp $mod \$(MODPATH)/" >> src/modules/Makefile
        echo "" >> src/modules/Makefile
   done


   echo "Complete."
   exit 1; 
fi


if [ -z $MAX_CLIENT ] ; then
        MAX_CLIENT=$MAX_CLIENT_T
fi


c=""
n=""
if [ "`eval echo -e -n 'a'`" = "-n a" ] ; then
        c="\c"
else
        n="-n"
fi

exists () { # because some shells don't have test -e
    if [ -f $1 -o -d $1 -o -p $1 -o -c $1 -o -b $1 ] ; then
	return 0
    else
	return 1
    fi
}

echo "#include <string.h>">.test.cpp
echo "#include <stdio.h>">>.test.cpp
echo "int main() { char a[10]; char b[10]; strlcpy(a,b,10); printf(\"%d\\n\",999); }" >>.test.cpp
g++ -o .test .test.cpp 2>&1
HAS_STRLCPY=`./.test 2>&1`
rm -f .test.cpp .test

clear
echo -e "'\033[1;33m####\033[0;37m:'\033[1;33m##\033[0;37m::: \033[1;33m##\033[0;37m::'\033[1;33m######\033[0;37m::'\033[1;33m########\033[0;37m::'\033[1;33m####\033[0;37m:'\033[1;33m########\033[0;37m:::'\033[1;33m######\033[0;37m::'\033[1;33m########\033[0;37m::"
echo -e ". \033[1;33m##\033[0;37m:: \033[1;33m###\033[0;37m:: \033[1;33m##\033[0;37m:'\033[1;33m##\033[0;37m... \033[1;33m##\033[0;37m: \033[1;33m##\033[0;37m.... \033[1;33m##\033[0;37m:. \033[1;33m##\033[0;37m:: \033[1;33m##\033[0;37m.... \033[1;33m##\033[0;37m:'\033[1;33m##\033[0;37m... \033[1;33m##\033[0;37m: \033[1;33m##\033[0;37m.... \033[1;33m##\033[0;37m:"
echo -e ": \033[1;33m##\033[0;37m:: \033[1;33m####\033[0;37m: \033[1;33m##\033[0;37m: \033[1;33m##\033[0;37m:::..:: \033[1;33m##\033[0;37m:::: \033[1;33m##\033[0;37m:: \033[1;33m##\033[0;37m:: \033[1;33m##\033[0;37m:::: \033[1;33m##\033[0;37m: \033[1;33m##\033[0;37m:::..:: \033[1;33m##\033[0;37m:::: \033[1;33m##\033[0;37m:"
echo -e ": \033[1;33m##\033[0;37m:: \033[1;33m##\033[0;37m \033[1;33m##\033[0;37m \033[1;33m##\033[0;37m:. \033[1;33m######\033[0;37m:: \033[1;33m########\033[0;37m::: \033[1;33m##\033[0;37m:: \033[1;33m########\033[0;37m:: \033[1;33m##\033[0;37m::::::: \033[1;33m##\033[0;37m:::: \033[1;33m##\033[0;37m:"
echo -e ": \033[1;33m##\033[0;37m:: \033[1;33m##\033[0;37m. \033[1;33m####\033[0;37m::..... \033[1;33m##\033[0;37m: \033[1;33m##\033[0;37m.....:::: \033[1;33m##\033[0;37m:: \033[1;33m##\033[0;37m.. \033[1;33m##\033[0;37m::: \033[1;33m##\033[0;37m::::::: \033[1;33m##\033[0;37m:::: \033[1;33m##\033[0;37m:"
echo -e ": \033[1;33m##\033[0;37m:: \033[1;33m##\033[0;37m:. \033[1;33m###\033[0;37m:'\033[1;33m##\033[0;37m::: \033[1;33m##\033[0;37m: \033[1;33m##\033[0;37m::::::::: \033[1;33m##\033[0;37m:: \033[1;33m##\033[0;37m::. \033[1;33m##\033[0;37m:: \033[1;33m##\033[0;37m::: \033[1;33m##\033[0;37m: \033[1;33m##\033[0;37m:::: \033[1;33m##\033[0;37m:"
echo -e "'\033[1;33m####\033[0;37m: \033[1;33m##\033[0;37m::. \033[1;33m##\033[0;37m:. \033[1;33m######\033[0;37m:: \033[1;33m##\033[0;37m::::::::'\033[1;33m####\033[0;37m: \033[1;33m##\033[0;37m:::. \033[1;33m##\033[0;37m:. \033[1;33m######\033[0;37m:: \033[1;33m########\033[0;37m::"
echo -e "\033[0;37m\033[0;37m....::..::::..:::......:::..:::::::::....::..:::::..:::......:::........:::"
echo ""
echo -e "\033[1;37mWelcome to the InspIRCd Configuration program!"
echo ""
echo "*** If you are unsure of any of these values, leave it blank for    ***"
echo "*** standard settings that will work, and your server will run      ***"
echo "*** using them. If you are running this server as part of a         ***"
echo "*** larger network, you must consult with your network admins       ***"
echo "*** for the proper values to use, or server links will be unstable! ***"
echo -e "\033[0;37m"
echo -e "Press \033[1;37m<RETURN>\033[0;37m to accept the default for any option, or enter"
echo -e "a new value. Please note: You will \033[1;37mHAVE\033[0;37m to read the docs"
echo -e "dir, otherwise you won't have a config file!"
echo ""
echo -e "Your operating system is: \033[1;37m$OSNAME\033[0;37m (`uname -mnr`), fdmax: $MAX_CLIENT_T"
echo ""

#############################################################################

    ok=0
    asked=1
    echo "In what directory are the configuration files?"
    while [ $ok -eq 0 ] ; do
	echo -e $n "[\033[1;32m$CONFIG_DIR\033[0;37m] -> $c"
	if read INPUT ; then : ; else echo "" ; exit 1 ; fi
	if [ ! "$INPUT" ] ; then
	    INPUT=$CONFIG_DIR
	    default=1
	fi
	if echo "$INPUT" | grep -q \[\'\"\\\] ; then
	    echo 'Please use a pathname without the characters: '\'' " \'
	elif [ ! "$NO_DIR_CHECK" -a ! -d "$INPUT" ] ; then
	    if exists "$INPUT" ; then
		echo "$INPUT exists, but is not a directory!"
	    else
		echo "$INPUT does not exist.  Create it?"
		echo -e $n "[\033[1;32my\033[0;37m] $c"
		read YN
		if [ "$YN" != "n" ] ; then
		    if mkdir -p "$INPUT" ; then
			ok=1
		    fi
		fi
	    fi
	    else
            ok=1
	fi
    done
    CONFIG_DIR=$INPUT
    echo ""


##############################################################################

    ok=0
    asked=1
    echo "In What directory are the modules to be compiled to?"
    while [ $ok -eq 0 ] ; do
        echo -e $n "[\033[1;32m$MODULE_DIR\033[0;37m] -> $c"
        if read INPUT ; then : ; else echo "" ; exit 1 ; fi
        if [ ! "$INPUT" ] ; then
            INPUT=$MODULE_DIR
            default=1
        fi
        if echo "$INPUT" | grep -q \[\'\"\\\] ; then
            echo 'Please use a pathname without the characters: '\'' " \'
        elif [ ! "$NO_DIR_CHECK" -a ! -d "$INPUT" ] ; then
            if exists "$INPUT" ; then
                echo "$INPUT exists, but is not a directory!"
            else
                echo "$INPUT does not exist.  Create it?"
                echo -e $n "[\033[1;32my\033[0;37m] $c"
                read YN
                if [ "$YN" != "n" ] ; then
                    if mkdir -p "$INPUT" ; then
                        ok=1
                    fi
                fi
            fi
            else
            ok=1
        fi
    done
    MODULE_DIR=$INPUT
    echo ""


##############################################################################

    ok=0
    asked=1
    echo "In what directory is the IRCd binary to be placed?"
    while [ $ok -eq 0 ] ; do
        echo -e $n "[\033[1;32m$BINARY_DIR\033[0;37m] -> $c"
        if read INPUT ; then : ; else echo "" ; exit 1 ; fi
        if [ ! "$INPUT" ] ; then
            INPUT=$BINARY_DIR
            default=1
        fi
        if echo "$INPUT" | grep -q \[\'\"\\\] ; then
            echo 'Please use a pathname without the characters: '\'' " \'
        elif [ ! "$NO_DIR_CHECK" -a ! -d "$INPUT" ] ; then
            if exists "$INPUT" ; then
                echo "$INPUT exists, but is not a directory!"
            else
                echo "$INPUT does not exist.  Create it?"
                echo -e $n "[\033[1;32my\033[0;37m] $c"
                read YN
                if [ "$YN" != "n" ] ; then
                    if mkdir -p "$INPUT" ; then
                        ok=1
                    fi
                fi
            fi
            else
            ok=1
        fi
    done
    BINARY_DIR=$INPUT
    echo ""

###############################################################################
# Craigs Version 3 With slightly less Cheeze :p

cheeze=0
echo -e "Maximum number of clients at any one time (\033[1;32m1-$MAX_CLIENT_T\033[0;37m)?"
while [ "$cheeze" -eq "0" ] ; do
	echo -e $n "[\033[1;32m$MAX_CLIENT\033[0;37m] -> $c"
        read cc

        if [ -z "$cc" ] ; then
		cc=$MAX_CLIENT
	fi

	case "$cc" in 
		[0-9]*)
			if [ "$cc" -gt "$MAX_CLIENT_T" -a -z "$SCAN_FAILED" ] ; then
				echo -e "WARNING: Our scans have indicated that you are attempting"
				echo -e "to use more sockets than there are avaliable. Are you sure"
				echo -e "you wish to do this? It may cause the IRCd to malfunction [y/n]"
				echo -e $n "[\033[1;32mn\033[0;37m] -> $c"
				read YN
				if [ "$YN" = "y" ] ; then
					MAX_CLIENT=$cc
					cheeze=1
				else
					echo ""
					echo -e "Please enter the correct value (\033[1;32m1-$MAX_CLIENT_T\033[0;37m)"
				fi
			else
				echo $SCAN_FAILED
				cheeze=1
				MAX_CLIENT=$cc
			fi
			;;
		*)
			echo ""
			echo "You must enter a number in this field. Please try again."
			;;
	esac
done
echo ""


###############################################################################

  cheeze=0
  echo -e "What is the Maximum length of nicknames?"
  while [ "$cheeze" -eq "0" ] ; do
        echo -e $n "[\033[1;32m$NICK_LENGT\033[0;37m] -> $c"
        read cc
        if [ "$cc" ] ; then
                case "$cc" in
                        [0-9]*)
                        NICK_LENGT=$cc
                        cheeze=1
                        ;;
                        *)
                        echo ""
                        echo "You Must Enter a Number in this field. Please Try Again."
                        cheeze=0
                        ;;
                esac
        else
                cheeze=1
        fi
  done
  echo ""

###############################################################################

  cheeze=0
  echo -e "What is the Maximum length of channel names?"
  while [ "$cheeze" -eq "0" ] ; do
        echo -e $n "[\033[1;32m$MAX_CHANNE\033[0;37m] -> $c"
        read cc
        if [ "$cc" ] ; then
                case "$cc" in
                        [0-9]*)
                        MAX_CHANNE=$cc
                        cheeze=1
                        ;;
                        *)
                        echo ""
                        echo "You Must Enter a Number in this field. Please Try Again."
                        cheeze=0
                        ;;
                esac
        else
                cheeze=1
        fi
  done
  echo ""

###############################################################################

  cheeze=0
  echo -e "What is the Maximum number of mode changes in one line?"
  while [ "$cheeze" -eq "0" ] ; do
        echo -e $n "[\033[1;32m$MAXI_MODES\033[0;37m] -> $c"
        read cc
        if [ "$cc" ] ; then
                case "$cc" in
                        [0-9]*)
                        MAXI_MODES=$cc
                        cheeze=1
                        ;;
                        *)
                        echo ""
                        echo "You Must Enter a Number in this field. Please Try Again."
                        cheeze=0
                        ;;
                esac
        else
                cheeze=1
        fi
  done
  echo ""

###############################################################################
# Code Optimisation?

  cheeze=0
  echo -e "Enter the Level Of Binary optimisation. This is a number between 0 and 3 (inclusive)"
  echo -e "The InspIRCd Team will _NOT_ support any bug reports above 0."
  echo -e "Also note, the IRCd behaviour will be different depending on this value."
  echo -e "Please read the documentation for more information."
  echo -e ""
  echo -e "The Higher the number, the more optimised your binary will be. This value will default to 0"
  echo -e "If you either a) Dont enter a number, or b) Enter a value outside the range."
  echo -e $n "[\033[1;32m$OPTIMITEMP\033[0;37m] -> $c"
  read cc
  if [ -z "$cc" ] ; then
	cc=$OPTIMITEMP
  fi
  case "$cc" in
        1)
                OPTIMITEMP=1
		OPTIMISATI="-O"
                ;;
	2)
		OPTIMITEMP=2
		OPTIMISATI="-O2"
		;;
	3)
		OPTIMITEMP=3
		OPTIMISATI="-O3"
		;;
	*)
                OPTIMITEMP=0
                OPTIMISATI="-g"
                ;;
  esac
  echo ""

###############################################################################


echo -e "\033[1;32mPre-build configuration is complete!\033[0;37m"
echo ""
echo -e "\033[0;37mConfig path:\033[1;32m\t\t\t$CONFIG_DIR"
echo -e "\033[0;37mModule path:\033[1;32m\t\t\t$MODULE_DIR"
echo -e "\033[0;37mMax connections:\033[1;32m\t\t$MAX_CLIENT"
echo -e "\033[0;37mMax User Channels\033[1;32m\t\t$MAX_CHANNE"
echo -e "\033[0;37mMax nickname length:\033[1;32m\t\t$NICK_LENGT"
echo -e "\033[0;37mMax channel length:\033[1;32m\t\t$CHAN_LENGT"
echo -e "\033[0;37mMax mode length:\033[1;32m\t\t$MAXI_MODES"
echo -e "\033[0;37mGCC Version Found:\033[1;32m\t\t$GCCVER.$GCC34"
echo -e "\033[0;37mOptimatizaton Flag:\033[1;32m\t\t$OPTIMISATI"
echo -e "\033[0;37m"

echo "Writing cache file for future ./configures ..."

COPY_CONF=0
if [ "$CONFIG_DIR" != "$ME/conf" ] ; then
    COPY_CONF=1
fi


if [ -e ".config.cache" ] ; then
	rm .config.cache
fi
echo "CONFIG_DIR=\"$CONFIG_DIR\"" >> .config.cache
echo "MODULE_DIR=\"$MODULE_DIR\"" >> .config.cache
echo "BINARY_DIR=\"$BINARY_DIR\"" >> .config.cache
echo "MAX_CLIENT=\"$MAX_CLIENT\"" >> .config.cache
echo "MAX_CHANNE=\"$MAX_CHANNE\"" >> .config.cache
echo "NICK_LENGT=\"$NICK_LENGT\"" >> .config.cache
echo "MAXI_MODES=\"$MAXI_MODES\"" >> .config.cache 
echo "OPTIMITEMP=\"$OPTIMITEMP\"" >> .config.cache
echo "OPTIMISATI=\"$OPTIMISATI\"" >> .config.cache
echo "GCC34=\"$GCC34\"" >> .config.cache
echo "HAS_STRLCPY=\"$HAS_STRLCPY\"" >> .config.cache
echo "COPY_CONF=\"$COPY_CONF\"" >> .config.cache

echo -e "Writing \033[1;32minspircd_config.h"

echo "/* Auto generated by configure, do not modify! */" >include/inspircd_config.h
echo "" >>include/inspircd_config.h
if [ "$GCCVER" -eq "3" ] ; then
echo "#define GCC3" >>include/inspircd_config.h
	if [ "$GCC34" -gt "3" ] ; then
		echo "#define GCC34" >>include/inspircd_config.h
	fi
fi
if [ "$HAS_STRLCPY" -eq "999" ] ; then
	echo "#define HAS_STRLCPY" >>include/inspircd_config.h
fi
echo "#define SYSLOG_FACILITY LOG_DAEMON" >>include/inspircd_config.h
echo "#define SYSLOG_LEVEL LOG_NOTICE" >>include/inspircd_config.h
echo "#define CONFIG_FILE \"$CONFIG_DIR/inspircd.conf\"" >>include/inspircd_config.h
echo "#define MOD_PATH \"$MODULE_DIR\"" >>include/inspircd_config.h
echo "#define VERSION \"`sh ./src/version.sh`\"" >>include/inspircd_config.h
echo "#define MAXCLIENTS $MAX_CLIENT" >>include/inspircd_config.h
echo "#define NICKMAX $NICK_LENGT" >>include/inspircd_config.h
echo "#define CHANMAX $CHAN_LENGT" >>include/inspircd_config.h
echo "#define MAXCHANS $MAX_CHANNE" >>include/inspircd_config.h
echo "#define MAXMODES $MAXI_MODES" >>include/inspircd_config.h
echo "#define OPTIMISATION $OPTIMITEMP" >>include/inspircd_config.h
echo "#define SYSTEM \"`uname -n -s -r`\"" >>include/inspircd_config.h
echo "#define MAXBUF 514">>include/inspircd_config.h
touch include/inspircd_config.h

case "$OSNAME" in
	FreeBSD)
		LDLIBS="-Ldl"
		FLAGS="-fPIC -frtti $OPTIMISATI"
		MAKEPROG="gmake"
		;;
	*)
		LDLIBS="-ldl"
		FLAGS="-fPIC -frtti $OPTIMISATI"
		MAKEPROG="make"
		;;
esac

MODULES=""
for module in src/modules/*.cpp ; do
        mod=`echo $module | sed 's/.cpp/.so/' | sed 's/src\/modules\///'`
	MODULES="$MODULES $mod" 
done

for file in Makefile inspircd; do
	echo -e "\033[0;37mWriting \033[1;32m$file\033[0;37m"
	rm -f $file
	sed -e "
		s%@MAKEPROG@%$MAKEPROG%g
		s%@FLAGS@%$FLAGS%g
		s%@LDLIBS@%$LDLIBS%g
		s%@CONFIG_DIR@%$CONFIG_DIR%g
		s%@MODULE_DIR@%$MODULE_DIR%g
		s%@BINARY_DIR@%$BINARY_DIR%g
		s%@MODULES@%$MODULES%g
	" .${file}.inc >> $file
done
`chmod 700 inspircd`

echo -e "\033[0;37mWriting \033[1;32msrc/modules/Makefile\033[0;37m"
rm -f src/modules/Makefile

# Generate the Header..

echo "# (C) ChatSpike development team" >> src/modules/Makefile
echo "# Makefile by <Craig@ChatSpike.net>" >> src/modules/Makefile
echo "# Many Thanks to Andrew Church <achurch@achurch.org>" >> src/modules/Makefile
echo "#    for assisting with making this work right." >> src/modules/Makefile
echo "#" >> src/modules/Makefile
echo "# Automatically Generated by ./configure to add a module" >> src/modules/Makefile
echo "# please run ./configure --update" >> src/modules/Makefile
echo "" >> src/modules/Makefile
echo "all: \$(MODULES)" >> src/modules/Makefile
echo "" >> src/modules/Makefile

for module in src/modules/*.cpp ; do
     flags=`grep '$CompileFlags: ' $module | sed 's/\/\* $CompileFlags://' | sed 's/\*\///'`
     mod=`echo $module | sed 's/.cpp/.so/' | sed 's/src\/modules\///'`
     mod2=`echo $module | sed 's/src\/modules\///'`
     echo "$mod:" >> src/modules/Makefile
     echo "	\$(CC) -I../../include \$(FLAGS) -shared$flags -o $mod $mod2" >> src/modules/Makefile
     echo "	@cp $mod \$(MODPATH)/" >> src/modules/Makefile
     echo "" >> src/modules/Makefile
done


echo ""

echo ""
echo "Do you want to compile the IRCd binaries?"
echo -e $n "[\033[1;32my\033[0;37m] $c"
read YN
if [ "$YN" != "n" ] ; then
	echo ""
	echo -e "\033[1;32mCompiling...\033[0;37m"
	echo ""
	cd $ME
	$MAKEPROG
	echo ""
        echo "Done!"
else
	echo ""
	echo -e "To build your server with these settings, please type '\033[1;32m$MAKEPROG\033[0;37m' now."
fi


echo ""
echo -e "*** \033[1;32mRemember to edit your configuration files!!!\033[0;37m ***"
echo ""