Blame m4/m4.m4

Packit Service 9646c7
# m4.m4 serial 12
Packit Service 9646c7
Packit Service 9646c7
# Copyright (C) 2000, 2006-2012 Free Software Foundation, Inc.
Packit Service 9646c7
Packit Service 9646c7
# Copying and distribution of this file, with or without modification,
Packit Service 9646c7
# are permitted in any medium without royalty provided the copyright
Packit Service 9646c7
# notice and this notice are preserved.  This file is offered as-is,
Packit Service 9646c7
# without warranty of any kind.
Packit Service 9646c7
Packit Service 9646c7
# AC_PROG_GNU_M4
Packit Service 9646c7
# --------------
Packit Service 9646c7
# Check for GNU M4, at least 1.4.6 (all earlier versions had bugs in
Packit Service 9646c7
# trace support and regexp support):
Packit Service 9646c7
# http://lists.gnu.org/archive/html/bug-gnu-utils/2006-11/msg00096.html
Packit Service 9646c7
# http://lists.gnu.org/archive/html/bug-autoconf/2009-07/msg00023.html
Packit Service 9646c7
# Also, check whether --error-output (through 1.4.x) or --debugfile (2.0)
Packit Service 9646c7
# is supported, and AC_SUBST M4_DEBUGFILE accordingly.
Packit Service 9646c7
# Also avoid versions of m4 that trigger strstr bugs.
Packit Service 9646c7
AC_DEFUN([AC_PROG_GNU_M4],
Packit Service 9646c7
  [AC_ARG_VAR([M4], [Location of GNU M4 1.4.6 or later.  Defaults to the first
Packit Service 9646c7
    program of `m4', `gm4', or `gnum4' on PATH that meets Autoconf needs.])
Packit Service 9646c7
  AC_CACHE_CHECK([for GNU M4 that supports accurate traces], [ac_cv_path_M4],
Packit Service 9646c7
    [rm -f conftest.m4f
Packit Service 9646c7
ac_had_posixly_correct=${POSIXLY_CORRECT:+yes}
Packit Service 9646c7
AS_UNSET([POSIXLY_CORRECT])
Packit Service 9646c7
AC_PATH_PROGS_FEATURE_CHECK([M4], [m4 gm4 gnum4],
Packit Service 9646c7
      [dnl Creative quoting here to avoid raw dnl and ifdef in configure.
Packit Service 9646c7
      # Root out GNU M4 1.4.5, as well as non-GNU m4 that ignore -t, -F.
Packit Service 9646c7
      # Root out GNU M4 1.4.15 with buggy false negative replacement strstr.
Packit Service 9646c7
      # Root out Glibc 2.9 - 2.12 and GNU M4 1.4.11 - 1.4.15 with buggy
Packit Service 9646c7
      # false positive strstr.
Packit Service 9646c7
      ac_snippet=change'quote(<,>)in''dir(<if''def>,mac,bug)'
Packit Service 9646c7
      ac_snippet=${ac_snippet}pat'subst(a,\(b\)\|\(a\),\1)d'nl
Packit Service 9646c7
      ac_snippet=${ac_snippet}${as_nl}if'else(in''dex(..wi.d.,.d.),-1,bug)'
Packit Service 9646c7
      ac_snippet=${ac_snippet}${as_nl}if'else(in''dex(dnl
Packit Service 9646c7
;:11-:12-:12-:12-:12-:12-:12-:12-:12.:12.:12.:12.:12.:12.:12.:12.:12-,dnl
Packit Service 9646c7
:12-:12-:12-:12-:12-:12-:12-:12-),-1,,strstr-bug2)'
Packit Service 9646c7
      test -z "`$ac_path_M4 -F conftest.m4f </dev/null 2>&1`" \
Packit Service 9646c7
      && test -z "`AS_ECHO([$ac_snippet]) | $ac_path_M4 --trace=mac 2>&1`" \
Packit Service 9646c7
      && test -f conftest.m4f \
Packit Service 9646c7
      && ac_cv_path_M4=$ac_path_M4 ac_path_M4_found=:
Packit Service 9646c7
      rm -f conftest.m4f],
Packit Service 9646c7
      [AC_MSG_ERROR([no acceptable m4 could be found in \$PATH.
Packit Service 9646c7
GNU M4 1.4.6 or later is required; 1.4.16 or newer is recommended.
Packit Service 9646c7
GNU M4 1.4.15 uses a buggy replacement strstr on some systems.
Packit Service 9646c7
Glibc 2.9 - 2.12 and GNU M4 1.4.11 - 1.4.15 have another strstr bug.])])])
Packit Service 9646c7
  M4=$ac_cv_path_M4
Packit Service 9646c7
  AC_CACHE_CHECK([whether $ac_cv_path_M4 accepts --gnu],
Packit Service 9646c7
    [ac_cv_prog_gnu_m4_gnu],
Packit Service 9646c7
    [case `$M4 --help < /dev/null 2>&1` in
Packit Service 9646c7
      *--gnu*) ac_cv_prog_gnu_m4_gnu=yes ;;
Packit Service 9646c7
      *) ac_cv_prog_gnu_m4_gnu=no ;;
Packit Service 9646c7
    esac])
Packit Service 9646c7
  if test "$ac_cv_prog_gnu_m4_gnu" = yes; then
Packit Service 9646c7
    M4_GNU=--gnu
Packit Service 9646c7
  else
Packit Service 9646c7
    M4_GNU=
Packit Service 9646c7
  fi
Packit Service 9646c7
  AC_SUBST([M4_GNU])
Packit Service 9646c7
  if test x$ac_had_posixly_correct = xyes; then
Packit Service 9646c7
    POSIXLY_CORRECT=:
Packit Service 9646c7
    if test $ac_cv_prog_gnu_m4_gnu = no; then
Packit Service 9646c7
      AC_MSG_WARN([the version of M4 that was found does not support -g])
Packit Service 9646c7
      AC_MSG_WARN([using it with POSIXLY_CORRECT set may cause problems])
Packit Service 9646c7
    fi
Packit Service 9646c7
  fi
Packit Service 9646c7
  AC_CACHE_CHECK([how m4 supports trace files], [ac_cv_prog_gnu_m4_debugfile],
Packit Service 9646c7
    [case `$M4 --help < /dev/null 2>&1` in
Packit Service 9646c7
      *debugfile*) ac_cv_prog_gnu_m4_debugfile=--debugfile ;;
Packit Service 9646c7
      *) ac_cv_prog_gnu_m4_debugfile=--error-output ;;
Packit Service 9646c7
    esac])
Packit Service 9646c7
  AC_SUBST([M4_DEBUGFILE], [$ac_cv_prog_gnu_m4_debugfile])
Packit Service 9646c7
])
Packit Service 9646c7
Packit Service 9646c7
# Compatibility for bootstrapping with Autoconf 2.61.
Packit Service 9646c7
dnl FIXME - replace this with AC_PREREQ([2.62]) after the release.
Packit Service 9646c7
# AC_PATH_PROGS_FEATURE_CHECK was added the same time the slightly broken,
Packit Service 9646c7
# undocumented _AC_PATH_PROG_FEATURE_CHECK was deleted.
Packit Service 9646c7
m4_ifndef([AC_PATH_PROGS_FEATURE_CHECK],
Packit Service 9646c7
  [m4_define([AC_PATH_PROGS_FEATURE_CHECK],
Packit Service 9646c7
    [_AC_PATH_PROG_FEATURE_CHECK([$1], [$2], [$3], [$5])
Packit Service 9646c7
])])