summaryrefslogtreecommitdiff
path: root/m4/ax_require_defined.m4
diff options
context:
space:
mode:
authorSimeon Simeonov2023-03-14 23:30:32 +0100
committerSimeon Simeonov2023-03-18 13:37:27 +0100
commit66bd7af3e59e509000b8a55a9429e7a8e133fd81 (patch)
tree9eca5fe6eb76bb639fde682131c654eef17212df /m4/ax_require_defined.m4
parentffc15cad8238b101203147d4c9da64ee8e5a05b8 (diff)
Sync with upstream 2.14.1 and update the documentation2.2.14
Diffstat (limited to 'm4/ax_require_defined.m4')
-rw-r--r--m4/ax_require_defined.m437
1 files changed, 0 insertions, 37 deletions
diff --git a/m4/ax_require_defined.m4 b/m4/ax_require_defined.m4
deleted file mode 100644
index cae1111..0000000
--- a/m4/ax_require_defined.m4
+++ /dev/null
@@ -1,37 +0,0 @@
1# ===========================================================================
2# http://www.gnu.org/software/autoconf-archive/ax_require_defined.html
3# ===========================================================================
4#
5# SYNOPSIS
6#
7# AX_REQUIRE_DEFINED(MACRO)
8#
9# DESCRIPTION
10#
11# AX_REQUIRE_DEFINED is a simple helper for making sure other macros have
12# been defined and thus are available for use. This avoids random issues
13# where a macro isn't expanded. Instead the configure script emits a
14# non-fatal:
15#
16# ./configure: line 1673: AX_CFLAGS_WARN_ALL: command not found
17#
18# It's like AC_REQUIRE except it doesn't expand the required macro.
19#
20# Here's an example:
21#
22# AX_REQUIRE_DEFINED([AX_CHECK_LINK_FLAG])
23#
24# LICENSE
25#
26# Copyright (c) 2014 Mike Frysinger <vapier@gentoo.org>
27#
28# Copying and distribution of this file, with or without modification, are
29# permitted in any medium without royalty provided the copyright notice
30# and this notice are preserved. This file is offered as-is, without any
31# warranty.
32
33#serial 1
34
35AC_DEFUN([AX_REQUIRE_DEFINED], [dnl
36 m4_ifndef([$1], [m4_fatal([macro ]$1[ is not defined; is a m4 file missing?])])
37])dnl AX_REQUIRE_DEFINED