aclocal-scan-configure-ac-pr319.sh 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #! /bin/sh
  2. # Copyright (C) 2004-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 aclocal scans configure.ac for macro definitions.
  17. # PR/319.
  18. am_create_testdir=empty
  19. . test-init.sh
  20. # Start macros with AM_ because that causes aclocal to complain if it
  21. # cannot find them.
  22. cat > configure.ac << 'END'
  23. AC_INIT
  24. m4_include([somedef.m4])
  25. AC_DEFUN([AM_SOME_MACRO])
  26. AC_DEFUN([AM_SOME_OTHER_MACRO])
  27. AM_SOME_MACRO
  28. AM_SOME_OTHER_MACRO
  29. AM_MORE_MACRO
  30. END
  31. mkdir m4
  32. echo 'AC_DEFUN([AM_SOME_MACRO])' > m4/some.m4
  33. echo 'AC_DEFUN([AM_SOME_DEF])' > somedef.m4
  34. echo 'AC_DEFUN([AM_MORE_MACRO], [AC_REQUIRE([AM_SOME_DEF])])' > m4/more.m4
  35. $ACLOCAL -I m4
  36. $FGREP AM_SOME_MACRO aclocal.m4 && exit 1
  37. $FGREP AM_MORE_MACRO aclocal.m4 && exit 1
  38. $FGREP 'm4_include([m4/more.m4])' aclocal.m4
  39. test 1 = $(grep m4_include aclocal.m4 | wc -l)
  40. :