Hello,
I'm doing an NMU of aca to fix #323160; diff attached.
Thanks,
Matej
diff -Nru /tmp/1vKpDd0LuC/aca-0.1.10/debian/changelog
/tmp/mr4yFVpDSl/aca-0.1.10/debian/changelog
--- /tmp/1vKpDd0LuC/aca-0.1.10/debian/changelog 2005-03-25 00:47:56.000000000
+0100
+++ /tmp/mr4yFVpDSl/aca-0.1.10/debian/changelog 2006-02-21 11:16:24.000000000
+0100
@@ -1,3 +1,13 @@
+aca (0.1.10-0.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * dialogs/simple.c: Let <errno.h> declare errno. Thanks to
+ Andreas Jochens for the patch. Closes: #323160.
+ * Prevent cdbs from altering build dependencies (disallowed by
+ the release policy for etch).
+
+ -- Matej Vela <[EMAIL PROTECTED]> Tue, 21 Feb 2006 11:16:23 +0100
+
aca (0.1.10) unstable; urgency=low
* cdbsized package
diff -Nru /tmp/1vKpDd0LuC/aca-0.1.10/debian/control.in
/tmp/mr4yFVpDSl/aca-0.1.10/debian/control.in
--- /tmp/1vKpDd0LuC/aca-0.1.10/debian/control.in 2005-03-25
00:50:24.000000000 +0100
+++ /tmp/mr4yFVpDSl/aca-0.1.10/debian/control.in 1970-01-01
01:00:00.000000000 +0100
@@ -1,23 +0,0 @@
-Source: aca
-Section: libs
-Priority: optional
-Maintainer: RISKO Gergely <[EMAIL PROTECTED]>
-Build-Depends: @cdbs@, libgpmg1-dev [!hurd-i386], libncurses5-dev, gettext
-Standards-Version: 3.6.1.1
-
-Package: libaca-dev
-Section: devel
-Architecture: any
-Depends: libaca0 (= ${Source-Version}), libc6-dev, libncurses5-dev
-Description: The Advanced nCurses API
- ACA is a very ease to programming ncurses API, you can simply make
- buttons, menus, choices, file selection, etc. This is the package
- which contains runtime libraries. If you want to see a great ACA
- application, then please install KIM.
-
-Package: libaca0
-Architecture: any
-Depends: ${shlibs:Depends}
-Description: The Advanced nCurses API -- development files
- This is the files for ACA which are needed to compile binaries
- from sources. There aren't any documentations, only examples yet.
diff -Nru /tmp/1vKpDd0LuC/aca-0.1.10/debian/rules
/tmp/mr4yFVpDSl/aca-0.1.10/debian/rules
--- /tmp/1vKpDd0LuC/aca-0.1.10/debian/rules 2005-03-25 00:46:28.000000000
+0100
+++ /tmp/mr4yFVpDSl/aca-0.1.10/debian/rules 2006-02-21 11:11:53.000000000
+0100
@@ -1,6 +1,5 @@
#!/usr/bin/make -f
-DEB_AUTO_UPDATE_DEBIAN_CONTROL := yes
include /usr/share/cdbs/1/class/autotools.mk
include /usr/share/cdbs/1/rules/debhelper.mk
DEB_MAKE_INSTALL_TARGET := prefix=$(CURDIR)/debian/libaca-dev/usr install
diff -Nru /tmp/1vKpDd0LuC/aca-0.1.10/dialogs/simple.c
/tmp/mr4yFVpDSl/aca-0.1.10/dialogs/simple.c
--- /tmp/1vKpDd0LuC/aca-0.1.10/dialogs/simple.c 2001-03-01 21:44:38.000000000
+0100
+++ /tmp/mr4yFVpDSl/aca-0.1.10/dialogs/simple.c 2006-02-21 11:11:53.000000000
+0100
@@ -15,6 +15,7 @@
#include "aca_widget.h"
#include <error.h>
+#include <errno.h>
#include <string.h>
#define Y(a) (a+y)
@@ -76,7 +77,6 @@
W_NULL
};
SessW s;
- extern int errno;
init_sessw(&s, 0, FALSE, w, NULL, Sf_NOT_BGR);
yn = lines_instr(query) + 4;