Source: tinydyndns
Version: 0.4.2.debian1-1
Control: block 798955 by -1

The packaging of tinydyndns unnecessarily hard codes the location of
errno.h. That makes it incompatible with non-glibc glibcs and a glibc
that fixes #798955. tinydyndns will FTBFS. The attached patch removes
the assumption. Please consider applying it.

Helmut
diff -u tinydyndns-0.4.2.debian1/debian/changelog 
tinydyndns-0.4.2.debian1/debian/changelog
--- tinydyndns-0.4.2.debian1/debian/changelog
+++ tinydyndns-0.4.2.debian1/debian/changelog
@@ -1,3 +1,10 @@
+tinydyndns (0.4.2.debian1-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Don't hard code location of errno.h. (Closes: #-1)
+
+ -- Helmut Grohne <hel...@subdivi.de>  Fri, 19 Oct 2018 17:07:52 +0200
+
 tinydyndns (0.4.2.debian1-1) unstable; urgency=low
 
   * new upstream debian version.
diff -u tinydyndns-0.4.2.debian1/debian/rules 
tinydyndns-0.4.2.debian1/debian/rules
--- tinydyndns-0.4.2.debian1/debian/rules
+++ tinydyndns-0.4.2.debian1/debian/rules
@@ -19,7 +19,7 @@
        test -r conf-home'{orig}' || cp -f conf-home conf-home'{orig}'
        echo /usr >conf-home
        test -r conf-cc'{orig}' || cp conf-cc conf-cc'{orig}'
-       echo 'gcc -O2 -g -include /usr/include/errno.h' >conf-cc
+       echo 'gcc -O2 -g -include errno.h' >conf-cc
        $(MAKE)
        touch build-stamp
 

Reply via email to