aboutsummaryrefslogtreecommitdiff
path: root/m4/ax_require_defined.m4
diff options
context:
space:
mode:
authorMike Frysinger <vapier@chromium.org>2017-02-06 15:10:13 -0500
committerMike Frysinger <vapier@chromium.org>2017-02-16 22:48:56 +0000
commit6cc037526e0ce59d63fd772e7af99258becab3a1 (patch)
tree6f0a57263862db45bf1fe0398ea89aaadaa13d38 /m4/ax_require_defined.m4
parentlibdisasm: add upstream/license details (diff)
downloadbreakpad-6cc037526e0ce59d63fd772e7af99258becab3a1.tar.xz
autotools: move -W flags to configure detection
This lets us use the flags with clang, and to add more flags easily. Change-Id: I51bb53ffd5ab6da769cdfb422a2c88442f1ff9ad Reviewed-on: https://chromium-review.googlesource.com/441864 Reviewed-by: Ivan Penkov <ivanpe@chromium.org>
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 00000000..cae11112
--- /dev/null
+++ b/m4/ax_require_defined.m4
@@ -0,0 +1,37 @@
+# ===========================================================================
+# http://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 1
+
+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