diff options
author | Vincent Richard <[email protected]> | 2012-11-10 16:46:31 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2012-11-10 16:46:31 +0000 |
commit | f937c3228511f9abc0a8f286572edb290c4edf7a (patch) | |
tree | f1ee5a096de4a46013c925dd0583376775579b7e | |
parent | Fixed compilation issues on Windows. (diff) | |
download | vmime-f937c3228511f9abc0a8f286572edb290c4edf7a.tar.gz vmime-f937c3228511f9abc0a8f286572edb290c4edf7a.zip |
Removed unused file.
-rwxr-xr-x | bootstrap | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/bootstrap b/bootstrap deleted file mode 100755 index 9c9c3d3c..00000000 --- a/bootstrap +++ /dev/null @@ -1,60 +0,0 @@ -#! /usr/bin/env bash -# -# Bootstrap file for 'autotools' build -# - -export WANT_AUTOCONF="latest" -export WANT_AUTOMAKE="1.9" -export LANG=C - -rm -f aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh INSTALL -rm -Rf autom4te.cache -(mkdir autotools >& /dev/null) -(cd autotools && rm -f config.guess config.sub missing mkinstalldirs compile ltmain.sh depcomp install-sh) - -# Check for "glibtoolize" instead of "libtoolize" on OSX -LIBTOOLIZE=libtoolize -if which glibtoolize > /dev/null 2>&1; then - LIBTOOLIZE=glibtoolize -fi - - -DIE=0 - -echo "" - -if test $DIE = 0 ; then - echo -n "* Running aclocal... " ; (aclocal -I m4 >& bootstrap.tmpout) \ - && (echo "[OK]" ; cat bootstrap.tmpout ; rm -f bootstrap.tmpout) \ - || (echo "[NO]" ; cat bootstrap.tmpout ; rm -f bootstrap.tmpout ; not_a_command >& /dev/null) || DIE=1 -fi - -if test $DIE = 0 ; then - echo -n "* Running autoconf... " ; (autoconf >& bootstrap.tmpout) \ - && (echo "[OK]" ; cat bootstrap.tmpout ; rm -f bootstrap.tmpout) \ - || (echo "[NO]" ; cat bootstrap.tmpout ; rm -f bootstrap.tmpout ; not_a_command >& /dev/null) || DIE=1 -fi - -if test $DIE = 0 ; then - echo -n "* Running autoheader... " ; (autoheader >& bootstrap.tmpout) \ - && (echo "[OK]" ; cat bootstrap.tmpout ; rm -f bootstrap.tmpout) \ - || (echo "[NO]" ; cat bootstrap.tmpout ; rm -f bootstrap.tmpout ; not_a_command >& /dev/null) || DIE=1 -fi - -if test $DIE = 0 ; then - echo -n "* Running libtoolize... " ; ($LIBTOOLIZE --copy --force --automake >& bootstrap.tmpout) \ - && (echo "[OK]" ; cat bootstrap.tmpout ; rm -f bootstrap.tmpout) \ - || (echo "[NO]" ; cat bootstrap.tmpout ; rm -f bootstrap.tmpout ; not_a_command >& /dev/null) || DIE=1 -fi - -# Bug with automake 1.10? -touch autotools/config.rpath - -if test $DIE = 0 ; then - echo -n "* Running automake... " ; (automake --add-missing --copy >& bootstrap.tmpout) \ - && (echo "[OK]" ; cat bootstrap.tmpout ; rm -f bootstrap.tmpout) \ - || (echo "[NO]" ; cat bootstrap.tmpout ; rm -f bootstrap.tmpout ; not_a_command >& /dev/null) || DIE=1 -fi - -echo "" - |