build: Bail out when 'PKG_CHECK_MODULES' is missing.
authorLudovic Courtès <ludo@gnu.org>
Thu, 20 Feb 2014 21:56:17 +0000 (22:56 +0100)
committerLudovic Courtès <ludo@gnu.org>
Thu, 20 Feb 2014 21:56:17 +0000 (22:56 +0100)
* configure.ac: Add 'm4_pattern_forbid' invocation.

configure.ac

index d0d9851..e99b272 100644 (file)
@@ -5,7 +5,7 @@ dnl
 define(GUILE_CONFIGURE_COPYRIGHT,[[
 
 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
-  2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
+  2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc.
 
 This file is part of GUILE
 
@@ -51,6 +51,10 @@ GUILE_VERSION="$PACKAGE_VERSION"
 AC_CONFIG_HEADERS([config.h])
 AH_TOP(/*GUILE_CONFIGURE_COPYRIGHT*/)
 
+dnl We require the pkg.m4 set of macros from pkg-config.
+dnl Make sure it's available.
+m4_pattern_forbid([PKG_CHECK_MODULES])
+
 #--------------------------------------------------------------------
 
 AC_LANG([C])