32 lines
485 B
Bash
Executable file
32 lines
485 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# This generates our configure scripts and leads us onto the path of
|
|
# the great Makefile...
|
|
#
|
|
|
|
set -e
|
|
|
|
if [ ! -d config ];
|
|
then
|
|
mkdir config;
|
|
fi
|
|
|
|
if [ $(uname) != FreeBSD ];
|
|
then
|
|
WARNINGS="all,error"
|
|
export WARNINGS
|
|
fi
|
|
|
|
if [ $(uname) = NetBSD ] || [ $(uname) = DragonFly ];
|
|
then
|
|
WARNINGS=""
|
|
export WARNINGS
|
|
fi
|
|
|
|
if [ $(uname) = "CYGWIN_NT-6.1" ] || [ $(uname) = "MINGW32_NT-6.1" ];
|
|
then
|
|
WARNINGS=""
|
|
export WARNINGS
|
|
fi
|
|
|
|
autoreconf --install --verbose --force
|