summaryrefslogtreecommitdiffstats
path: root/m4/ax_require_defined.m4
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2023-02-24 08:52:32 (EST)
committer P. J. McDermott <pj@pehjota.net>2023-02-24 08:52:32 (EST)
commit0b360f0c7de63ddb9bb20d2fead9e077d9fef735 (patch)
treea9c4e232ec16948407df94b94d8bac968de92330 /m4/ax_require_defined.m4
parent50e8259639936c867c486917aba8d9f748a35d2c (diff)
downloadoverworld-rpg-0b360f0c7de63ddb9bb20d2fead9e077d9fef735.zip
overworld-rpg-0b360f0c7de63ddb9bb20d2fead9e077d9fef735.tar.gz
overworld-rpg-0b360f0c7de63ddb9bb20d2fead9e077d9fef735.tar.bz2
build: Use ASAN and GCC warnings from Gnulib
Diffstat (limited to 'm4/ax_require_defined.m4')
-rw-r--r--m4/ax_require_defined.m437
1 files changed, 37 insertions, 0 deletions
diff --git a/m4/ax_require_defined.m4 b/m4/ax_require_defined.m4
new file mode 100644
index 0000000..17c3eab
--- /dev/null
+++ b/m4/ax_require_defined.m4
@@ -0,0 +1,37 @@
+# ===========================================================================
+# https://www.gnu.org/software/autoconf-archive/ax_require_defined.html
+# ===========================================================================
+#
+# SYNOPSIS
+#
+# AX_REQUIRE_DEFINED(MACRO)
+#
+# DESCRIPTION
+#
+# AX_REQUIRE_DEFINED is a simple helper for making sure other macros have
+# been defined and thus are available for use. This avoids random issues
+# where a macro isn't expanded. Instead the configure script emits a
+# non-fatal:
+#
+# ./configure: line 1673: AX_CFLAGS_WARN_ALL: command not found
+#
+# It's like AC_REQUIRE except it doesn't expand the required macro.
+#
+# Here's an example:
+#
+# AX_REQUIRE_DEFINED([AX_CHECK_LINK_FLAG])
+#
+# LICENSE
+#
+# Copyright (c) 2014 Mike Frysinger <vapier@gentoo.org>
+#
+# Copying and distribution of this file, with or without modification, are
+# permitted in any medium without royalty provided the copyright notice
+# and this notice are preserved. This file is offered as-is, without any
+# warranty.
+
+#serial 2
+
+AC_DEFUN([AX_REQUIRE_DEFINED], [dnl
+ m4_ifndef([$1], [m4_fatal([macro ]$1[ is not defined; is a m4 file missing?])])
+])dnl AX_REQUIRE_DEFINED