confh5.sh 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. # Make sure we do not distribute header sources when they are built.
  17. . test-init.sh
  18. cat >> configure.ac << 'END'
  19. AC_SUBST([FOO], [NameToBeGrepped])
  20. AC_CONFIG_FILES([include/config.h.in])
  21. AC_CONFIG_HEADERS([config.h])
  22. AC_CONFIG_HEADERS([include/config.h])
  23. AC_OUTPUT
  24. END
  25. cat > Makefile.am << 'END'
  26. .PHONY: test
  27. test: distdir
  28. test -f $(distdir)/config.h.in
  29. test -f $(distdir)/include/config.h.in.in
  30. test ! -f $(distdir)/include/config.h.in
  31. test ! -r $(distdir)/include/config.h.in
  32. END
  33. mkdir include
  34. : > include/config.h.in.in
  35. $ACLOCAL
  36. $AUTOCONF
  37. $AUTOHEADER
  38. $AUTOMAKE
  39. ./configure
  40. $MAKE
  41. $sleep
  42. echo '#undef @FOO@' > include/config.h.in.in
  43. $MAKE include/config.h
  44. # Don't try to be too strict in this grepping, since the substitution
  45. # is done by config.status, and we don't have too much control on it.
  46. grep '/\*.*#undef.*NameToBeGrepped' include/config.h
  47. $MAKE test
  48. $MAKE distcheck
  49. :