>From ab0fda2d1fb4e7810b658869f9316a6dfe8c5c09 Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Sun, 20 Jul 2008 15:09:21 -0700 Subject: [PATCH] Use `echo' when AS_ECHO isn't available Since the AS_ECHO macro is only available on autoconf-2.61a and newer releases, just use `echo' when it's not available. --- xorg-path.m4 | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/xorg-path.m4 b/xorg-path.m4 index 87476ba..e26b149 100644 --- a/xorg-path.m4 +++ b/xorg-path.m4 @@ -54,6 +54,9 @@ # history, see the file lib/autoconf/libs.m4 in the autoconf repo: # http://git.sv.gnu.org/gitweb/?p=autoconf.git +# Compatibility with earlier autoconf +m4_ifndef([AS_ECHO], m4_define([AS_ECHO], [echo])]) + # --------------------- # # Checks for X window. # # --------------------- # -- 1.5.6.2