From: ian Date: Tue, 9 May 2006 19:31:03 +0000 (+0000) Subject: + Bugfixes: X-Git-Tag: rel-adns-1-3~8 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=adns.git;a=commitdiff_plain;h=2448bf5993be92387636ae47a8e7e24ac1896c0c + Bugfixes: @@ -1,3 +1,11 @@ +adns (1.3); urgency=low + + Bugfixes: + * In configure.in, quote macro name argument to define() to + suppress spurious autoconf error. (Report from Mihai Ibanescu.) + + -- + adns (1.2); urgency=medium New features: --- diff --git a/changelog b/changelog index 58f65bd..fe1086a 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,11 @@ +adns (1.3); urgency=low + + Bugfixes: + * In configure.in, quote macro name argument to define() to + suppress spurious autoconf error. (Report from Mihai Ibanescu.) + + -- + adns (1.2); urgency=medium New features: diff --git a/configure.in b/configure.in index 74019ab..3e72cad 100644 --- a/configure.in +++ b/configure.in @@ -24,7 +24,7 @@ AC_INIT(src/adns.h) AC_CONFIG_HEADER(src/config.h) dnl DPKG_CACHED_TRY_COMPILE(,,,,,) -define(DPKG_CACHED_TRY_COMPILE,[ +define([DPKG_CACHED_TRY_COMPILE],[ AC_MSG_CHECKING($1) AC_CACHE_VAL($2,[ AC_TRY_COMPILE([$3],[$4],[$2=yes],[$2=no])