chiark / gitweb /
+ 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 58f65bdf8c59ed18ec62b0a9841b1fa20c56fb97..fe1086ac645e6f73a37c5be1a79a45ed0dff39c2 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 74019aba26844742b8f1372cef3cbce0625997b4..3e72caddfba00b64c231acb34a0fea257dd0f22c 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])