mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
52baaca152
This incorporates: 2020-01-18 Rename ~~gnulib.m4 to zzgnulib.m4 2020-01-18 Fix "m4_require: circular dependency of AC_LANG_COMPILER(C)" 2020-01-18 Ensure Automake does not drop ~~gnulib.m4 2020-01-18 Fix major regression from 2020-01-10 * m4/00gnulib.m4, m4/gnulib-common.m4: Copy from Gnulib. * m4/gnulib-comp.m4: Regenerate. * m4/zzgnulib.m4: New file, from Gnulib.
24 lines
845 B
Plaintext
24 lines
845 B
Plaintext
# zzgnulib.m4 serial 1
|
|
dnl Copyright (C) 2020 Free Software Foundation, Inc.
|
|
dnl This file is free software; the Free Software Foundation
|
|
dnl gives unlimited permission to copy and/or distribute it,
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
|
|
dnl This file must be named something that sorts after all other
|
|
dnl package- or gnulib-provided .m4 files - at least for those packages
|
|
dnl that redefine AC_PROG_CC.
|
|
|
|
dnl Redefine AC_PROG_CC so that it ends with invocations of gl_COMPILER_CLANG
|
|
dnl and gl_COMPILER_PREPARE_CHECK_DECL.
|
|
m4_define([AC_PROG_CC],
|
|
m4_defn([AC_PROG_CC])[
|
|
gl_COMPILER_CLANG
|
|
gl_COMPILER_PREPARE_CHECK_DECL
|
|
])
|
|
|
|
# gl_ZZGNULIB
|
|
# -----------
|
|
# Witness macro that this file has been included. Needed to force
|
|
# Automake to include this file after all other gnulib .m4 files.
|
|
AC_DEFUN([gl_ZZGNULIB])
|