1#!/bin/sh
2#
3# This generates our configure scripts and leads us onto the path of 
4# the great Makefile...
5#
6
7set -e
8
9if [ ! -d config ];
10then
11  mkdir config;
12fi
13
14if [ $(uname) != FreeBSD ];
15then
16  WARNINGS="all,error"
17  export WARNINGS
18fi
19
20if [ $(uname) = NetBSD ] || [ $(uname) = DragonFly ];
21then
22  WARNINGS=""
23  export WARNINGS
24fi
25
26if [ $(uname) = "CYGWIN_NT-6.1" ] || [ $(uname) = "MINGW32_NT-6.1" ];
27then
28  WARNINGS=""
29  export WARNINGS
30fi
31
32autoreconf --install --verbose --force
33