bootstrap 2.26 KB
#!/bin/sh
# ***************************************************************************
# bootstrap : Set up config.mak
# ***************************************************************************
# Copyright (C) 2003 VideoLAN
# $Id$
#
# Authors: Christophe Massiot <massiot@via.ecp.fr>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
# ***************************************************************************

if test "$#" -gt "1"; then
  echo "Usage: $0 <host>" >&2
  echo "  Prepare config.mak file." >&2
  exit 1
fi

LANG=C
export LANG
set -e
set -x

BUILD=`gcc -dumpmachine`
if test "$#" = "1"; then
  HOST="$1"
else
  HOST="$BUILD"
fi

echo -e "# Automatically generated by bootstrap.\n# Make changes if you know what you're doing.\n" >| config.mak

echo "BUILD = $BUILD" >> config.mak
echo "HOST = $HOST" >> config.mak

case $HOST in
    powerpc-apple-darwin8 | ppc-darwin)
	    echo "EXTRA_CPPFLAGS = -no-cpp-precomp" >> config.mak
	    echo "CONTRIB_URL = http://download.videolan.org/pub/videolan/devtools/contrib-macosx.tar.bz2" >> config.mak
        ;;
    i586-pc-beos)
	    echo "EXTRA_LDFLAGS = -lnet" >> config.mak
        ;;
    *)
        ;;
esac

if which curl >/dev/null; then
	echo "WGET = curl -O" >> config.mak
elif wget --version >/dev/null 2>&1; then
	echo "WGET = wget" >> config.mak
else
	echo "You need at least wget or curl to fetch the packages." >&2
	exit 1
fi

if test -f /sw/bin/svn; then
        echo "SVN = /sw/bin/svn" >> config.mak
elif svn help >/dev/null 2>&1; then
        echo "SVN = svn" >> config.mak
else
        echo "You do not have a subversion client installed." >&2
fi

echo "PREFIX = `pwd`" >> config.mak