version7.sh 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #! /bin/sh
  2. # Copyright (C) 2002-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 for a special setup where the package's version isn't defined
  17. # in configure.ac. We want GNU Make for this test (part of the test
  18. # is to make sure Makefile.ins get rebuilt when a m4_included file
  19. # changes -- we don't support this feature on non-GNU Makes).
  20. required='makeinfo tex texi2dvi'
  21. . test-init.sh
  22. cat >configure.ac <<END
  23. m4_include([version.m4])
  24. AC_INIT([$me], [THE_VERSION])
  25. AM_INIT_AUTOMAKE
  26. AC_CONFIG_FILES([Makefile])
  27. AC_OUTPUT
  28. END
  29. echo 'm4_define([THE_VERSION], [2.718])' > version.m4
  30. cat > Makefile.am << 'END'
  31. info_TEXINFOS = zardoz.texi
  32. check:
  33. test -f $(srcdir)/version.m4
  34. END
  35. cat > zardoz.texi << 'END'
  36. \input texinfo
  37. @setfilename zardoz.info
  38. @settitle Zardoz
  39. @node Top
  40. Hello walls.
  41. @include version.texi
  42. @bye
  43. END
  44. $ACLOCAL
  45. $AUTOCONF
  46. $AUTOMAKE --add-missing
  47. ./configure --version | grep '2\.718'
  48. ./configure
  49. $MAKE
  50. grep '2\.718' version.texi
  51. $sleep
  52. echo 'm4_define([THE_VERSION], [3.141])' > version.m4
  53. using_gmake || $MAKE Makefile
  54. $MAKE distcheck
  55. ./configure --version | grep '3\.141'
  56. grep '3\.141' version.texi
  57. :