Bash程序  |  33行  |  485 B

#!/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