]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
* Fix Makefile for U in environment, since wrong U is more common than
authorWouter Wijngaards <wouter@NLnetLabs.nl>
Mon, 30 May 2011 11:56:41 +0000 (11:56 +0000)
committerWouter Wijngaards <wouter@NLnetLabs.nl>
Mon, 30 May 2011 11:56:41 +0000 (11:56 +0000)
        deansification necessity.

Changelog
Makefile.in

index fd01becc3bf6c85183a1dddb02db094524a85661..aced6b3b4a78caba79b62a3db8d51bb87671e913 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -27,6 +27,8 @@
        * Added function ldns_dnssec_mark_and_get_glue as an real fast
          alternative for ldns_zone_glue_rr_list.
        * Fix parse buffer overflow for max length domain names.
+       * Fix Makefile for U in environment, since wrong U is more common than
+         deansification necessity.
 
 1.6.9  2011-03-16
        * Fix creating NSEC(3) bitmaps: make array size 65536,
index a25f24b930f706476326fbddad5bbbdaa5b13940..596bef18579fe29688422299f4a3deaed6b1b4bf 100644 (file)
@@ -32,6 +32,10 @@ ifdef glibtool
 libtool                = $(glibtool)
 endif
 
+# override $U variable which is used by autotools for deansification (for
+# K&R C compilers), but causes problems if $U is defined in the env).
+U=
+
 CC             = @CC@
 ifeq "$(srcdir)" "."
   CPPFLAGS     = $(strip -I. @CPPFLAGS@ @DEFS@)