X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=bootstrap;h=a5f3dcd5896b869d1f215bd344709eee339c7618;hb=6ac29eec363a6b9165d31496e5f83c76dbd402ef;hp=b9a973a57bbd6d9dcd43979cdd980ea540b223f9;hpb=31f0666a4667eaed90ee21bf5a766e02e7d3d49d;p=vlc diff --git a/bootstrap b/bootstrap index b9a973a57b..a5f3dcd589 100755 --- a/bootstrap +++ b/bootstrap @@ -1,7 +1,7 @@ #! /bin/sh ## bootstrap file for the VLC media player -## $Id: bootstrap,v 1.68 2003/07/08 13:40:57 sam Exp $ +## $Id: bootstrap,v 1.71 2003/07/24 20:34:47 sam Exp $ ## ## Authors: Sam Hocevar @@ -255,7 +255,7 @@ echo "done." set -x # remove autotools cruft -rm -f aclocal.m4 configure configure.ac.in config.log Modules.am config.h config.h.in +rm -f aclocal.m4 configure config.log config.h config.h.in # remove old autotools extra cruft rm -f config.guess config.sub missing mkinstalldirs compile depcomp install-sh # remove new autotools extra cruft @@ -263,8 +263,12 @@ rm -f config.guess config.sub missing mkinstalldirs compile depcomp install-sh # remove libtool cruft rm -f ltmain.sh libtool ltconfig # remove gettext cruft -rm -f m4/oldgettext.m4 ABOUT-NLS +rm -f ABOUT-NLS rm -Rf intl +# remove old vlc cruft +rm -f m4/oldgettext.m4 stamp-pic configure.ac.in Modules.am +# remove new vlc cruft +rm -f stamp-builtin stamp-h* mozilla/stamp-pic # Check for gettext if gettextize --version >/dev/null 2>&1; then @@ -272,7 +276,7 @@ if gettextize --version >/dev/null 2>&1; then if expr `gettextize --version | sed -e '1s/[^0-9]*//' -e q` \ '>=' 0.11.5 >/dev/null 2>&1; then # We have gettext, and a recent version! Everything is cool. - autopoint + autopoint=autopoint GETTEXT=yes else # User's gettext is too old. try to continue anyway. @@ -284,6 +288,7 @@ dnl User's gettext is too old, so this is a no-op AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) EOF + autopoint=: GETTEXT=old fi;else # we don't have gettext. grmbl. try to continue anyway. @@ -295,6 +300,7 @@ dnl User does not have gettext, so this is a no-op AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) EOF + autopoint=: GETTEXT=no fi @@ -318,14 +324,14 @@ if automake-1.7 --version >/dev/null 2>&1; then amvers="-1.7" # If we also have 1.6, use it instead because it is faster if automake-1.6 --version >/dev/null 2>&1; then - if expr "`automake-1.6 --version | sed -e '1s/[^0-9]*//' -e q`" ">" "1.6.1" > /dev/null 2>&1 - then amvers="-1.6" + if expr "`automake-1.6 --version | sed -e '1s/[^0-9]*//' -e q`" ">" "1.6.1" > /dev/null 2>&1; then + amvers="-1.6" fi fi elif automake-1.6 --version >/dev/null 2>&1; then amvers="-1.6" - if expr "`automake-1.6 --version | sed -e '1s/[^0-9]*//' -e q`" "<=" "1.6.1" > /dev/null 2>&1 - then AUTOMAKESUCKS=yes + if expr "`automake-1.6 --version | sed -e '1s/[^0-9]*//' -e q`" "<=" "1.6.1" > /dev/null 2>&1; then + AUTOMAKESUCKS=yes fi elif automake-1.5 --version >/dev/null 2>&1; then INSTALLSUCKS=yes @@ -348,14 +354,20 @@ if test "${amvers}" = "none"; then exit 1 fi +aclocal=aclocal${amvers} +automake=automake${amvers} +autoconf=autoconf +autoheader=autoheader + # Automake complains if this is not present rm -f vlc-config.in && printf "" > vlc-config.in # Do the rest -aclocal${amvers} -I m4 -autoconf -autoheader -automake${amvers} --add-missing --copy +${autopoint} -f +${aclocal} -I m4 +${autoconf} +${autoheader} +${automake} --add-missing --copy ## ## files which need to be regenerated