Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #! /bin/sh
  2. ## bootstrap file for Elk -- Sam Hocevar <sam@zoy.org>
  3. ## $Id: bootstrap 253 2004-08-09 20:08:52Z sam $
  4. set -x
  5. set -e
  6. # Get a sane environment, just in case
  7. LANG=C
  8. export LANG
  9. CYGWIN=binmode
  10. export CYGWIN
  11. # Check for automake
  12. amvers="no"
  13. if automake-1.9 --version >/dev/null 2>&1; then
  14. amvers="-1.9"
  15. elif automake-1.8 --version >/dev/null 2>&1; then
  16. amvers="-1.8"
  17. elif automake-1.7 --version >/dev/null 2>&1; then
  18. amvers="-1.7"
  19. elif automake-1.6 --version >/dev/null 2>&1; then
  20. amvers="-1.6"
  21. elif automake-1.5 --version >/dev/null 2>&1; then
  22. amvers="-1.5"
  23. elif automake --version > /dev/null 2>&1; then
  24. amvers="`automake --version | sed -e '1s/[^0-9]*//' -e q`"
  25. if expr "$amvers" "<" "1.5" > /dev/null 2>&1; then
  26. amvers="no"
  27. else
  28. amvers=""
  29. fi
  30. fi
  31. if test "$amvers" = "no"; then
  32. set +x
  33. echo "$0: you need automake version 1.5 or later"
  34. exit 1
  35. fi
  36. # Remove old cruft
  37. 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
  38. rm -Rf autom4te.cache autotools
  39. mkdir autotools
  40. aclocal${amvers}
  41. autoconf
  42. autoheader
  43. automake${amvers} --add-missing --copy