missing-version-mismatch.sh 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #! /bin/sh
  2. # Copyright (C) 2003-2017 Free Software Foundation, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. # Test missing with version mismatches.
  17. am_create_testdir=empty
  18. . test-init.sh
  19. get_shell_script missing
  20. do_check ()
  21. {
  22. progname=$1; shift;
  23. ./missing "$@" 2>stderr && { cat stderr >&2; exit 1; }
  24. cat stderr >&2
  25. $FGREP "WARNING: '$progname' is probably too old." stderr
  26. }
  27. echo 'AC_INIT([x], [1.0]) AC_PREREQ([9999])' >> configure.ac
  28. do_check autoconf $AUTOCONF
  29. do_check autoheader $AUTOHEADER
  30. do_check aclocal-$APIVERSION $am_original_ACLOCAL
  31. cat > configure.ac << 'END'
  32. AC_INIT([x], [0])
  33. AM_INIT_AUTOMAKE
  34. AC_CONFIG_FILES([Makefile])
  35. END
  36. echo AUTOMAKE_OPTIONS = 9999.9999 > Makefile.am
  37. $ACLOCAL
  38. : > install-sh
  39. # FIXME: this doesn't work due to a bug in automake (not 'missing').
  40. #do_check automake-$APIVERSION $am_original_AUTOMAKE
  41. :