From 5f3dc8dd67617495edb976ea9a3c9662390b34a9 Mon Sep 17 00:00:00 2001 From: Michael Elkins Date: Thu, 27 Dec 2012 18:56:02 -0800 Subject: [PATCH] avoid using m4_esyscmd_s() since it is not available in older versions of autoconf. use m4_esyscmd() and m4_translit() to whack the newline instead. see #3613 --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3a679ba0..34d0dccc 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,8 @@ dnl Process this file with autoconf to produce a configure script. dnl !!! WHEN ADDING NEW CONFIGURE TESTS, PLEASE ADD CODE TO MAIN.C !!! dnl !!! TO DUMP THEIR RESULTS WHEN MUTT -V IS CALLED !!! -AC_INIT([mutt],[m4_esyscmd_s(cat VERSION)]) +AC_INIT([mutt],[m4_translit(m4_esyscmd(cat VERSION),` +')]) AC_CONFIG_SRCDIR(mutt.h) AM_INIT_AUTOMAKE AC_CONFIG_HEADERS([config.h]) -- 2.49.0