+ Bugfixes:
authorian <ian>
Tue, 9 May 2006 19:31:03 +0000 (19:31 +0000)
committerian <ian>
Tue, 9 May 2006 19:31:03 +0000 (19:31 +0000)
@@ -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:

changelog
configure.in

index 58f65bd..fe1086a 100644 (file)
--- 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:
index 74019ab..3e72cad 100644 (file)
@@ -24,7 +24,7 @@ AC_INIT(src/adns.h)
 AC_CONFIG_HEADER(src/config.h)
 
 dnl DPKG_CACHED_TRY_COMPILE(<description>,<cachevar>,<include>,<program>,<ifyes>,<ifno>)
-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])