Package: ctn
Version: 3.0.6-8
Severity: normal
Tags: patch
Hi,
Attached is the diff for my ctn 3.0.6-8.1 NMU.
--
Homepage: http://www.sesse.net/
diff -Nru /tmp/uVsySE4ir1/ctn-3.0.6/debian/changelog
/tmp/f1wg54H2Vq/ctn-3.0.6/debian/changelog
--- /tmp/uVsySE4ir1/ctn-3.0.6/debian/changelog 2006-09-21 15:53:52.000000000
+0200
+++ /tmp/f1wg54H2Vq/ctn-3.0.6/debian/changelog 2006-09-21 15:53:58.000000000
+0200
@@ -1,3 +1,15 @@
+ctn (3.0.6-8.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * In the LONG_WORD structure, always use unsigned int since we want a 32-bit
+ variable, and int is 32 bits on all platforms supported by Debian (it used
+ to be unsigned long for all platforms except alpha, which broke on
+ platforms such as ppc64 and amd64). (Closes: #387183)
+ * Build-depend on lesstif2-dev instead of lesstif-dev, since the latter is
+ obsolete.
+
+ -- Steinar H. Gunderson <[EMAIL PROTECTED]> Thu, 21 Sep 2006 15:40:02 +0200
+
ctn (3.0.6-8) unstable; urgency=low
* Add Steve M. Robbins as a co-maintainer.
diff -Nru /tmp/uVsySE4ir1/ctn-3.0.6/debian/control
/tmp/f1wg54H2Vq/ctn-3.0.6/debian/control
--- /tmp/uVsySE4ir1/ctn-3.0.6/debian/control 2006-09-21 15:53:52.000000000
+0200
+++ /tmp/f1wg54H2Vq/ctn-3.0.6/debian/control 2006-09-21 15:53:58.000000000
+0200
@@ -3,7 +3,7 @@
Priority: extra
Maintainer: Thijs Kinkhorst <[EMAIL PROTECTED]>
Uploaders: Steve M. Robbins <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 5), lesstif-dev, libxaw7-dev, flex, bison,
zlib1g-dev, libmysqlclient15-dev, libx11-dev, libxt-dev, x-dev, csh | c-shell
+Build-Depends: debhelper (>= 5), lesstif2-dev, libxaw7-dev, flex, bison,
zlib1g-dev, libmysqlclient15-dev, libx11-dev, libxt-dev, x-dev, csh | c-shell
Standards-Version: 3.7.2
Package: ctn
diff -Nru /tmp/uVsySE4ir1/ctn-3.0.6/facilities/objects/dcmprivate.h
/tmp/f1wg54H2Vq/ctn-3.0.6/facilities/objects/dcmprivate.h
--- /tmp/uVsySE4ir1/ctn-3.0.6/facilities/objects/dcmprivate.h 2002-02-26
22:04:15.000000000 +0100
+++ /tmp/f1wg54H2Vq/ctn-3.0.6/facilities/objects/dcmprivate.h 2006-09-21
15:53:58.000000000 +0200
@@ -117,11 +117,7 @@
} SHORT_WORD;
typedef union {
-#ifdef __alpha
unsigned int l;
-#else
- unsigned long l;
-#endif
unsigned char u[4];
} LONG_WORD;