This RC bug has been fixed in a non-maintainer upload. The changes in
the upload are detailed in the following diff. Please apply the diff
and acknowledge it in your next maintainer upload.
CDBS also made some changes, but these are excluded from the diff.
Regards,
Roger
diff -urN eterm-0.9.2.original/debian/changelog eterm-0.9.2/debian/changelog
--- eterm-0.9.2.original/debian/changelog 2005-07-19 22:41:39.000000000
+0100
+++ eterm-0.9.2/debian/changelog 2005-07-19 22:51:57.733941872 +0100
@@ -1,3 +1,14 @@
+eterm (0.9.2-8.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Apply patch from Andreas Jochens to fix GCC 4.0 build failure,
+ by not casting lvalues (Closes: #297917).
+ * debian/control:
+ - Remove duplicate Depends lines.
+ - Update to Standards-Version 3.6.2.
+
+ -- Roger Leigh <[EMAIL PROTECTED]> Tue, 19 Jul 2005 22:51:21 +0100
+
eterm (0.9.2-8) unstable; urgency=low
* src/startup.c: disable use of ~/user.cfg, patch provdided by Michael
diff -urN eterm-0.9.2.original/debian/control eterm-0.9.2/debian/control
--- eterm-0.9.2.original/debian/control 2005-07-19 22:41:39.000000000 +0100
+++ eterm-0.9.2/debian/control 2005-07-19 22:51:17.798013056 +0100
@@ -2,7 +2,7 @@
Section: x11
Priority: optional
Maintainer: Laurence J. Lane <[EMAIL PROTECTED]>
-Standards-Version: 3.6.1.0
+Standards-Version: 3.6.2
Build-Depends: libxmu-dev,libsm-dev, libice-dev, libxext-dev, libx11-dev,
libxt-dev, libimlib2-dev, libast2-dev (>= 0.6-0pre2003010606), libpcre3-dev,
cdbs, debhelper (>> 4.1.0)
Package: eterm
@@ -11,7 +11,6 @@
Provides: x-terminal-emulator, eterm-backgrounds
Conflicts: eterm-backgrounds, eterm-ml
Replaces: eterm-ml, eterm-backgrounds
-Depends: ${shlibs:Depends}
Description: Enlightened Terminal Emulator
A terminal emulator in the spirit of xterm or rxvt, eterm uses an
Enlightenment style config file, as well as themes. The Imlib2 graphics
diff -urN eterm-0.9.2.original/src/command.c eterm-0.9.2/src/command.c
--- eterm-0.9.2.original/src/command.c 2005-07-19 22:41:39.000000000 +0100
+++ eterm-0.9.2/src/command.c 2005-07-19 22:42:53.464683376 +0100
@@ -2995,9 +2995,9 @@
Xfd = XConnectionNumber(Xdisplay);
D_CMD(("Xfd = %d\n", Xfd));
cmdbuf_ptr = cmdbuf_endp = cmdbuf_base;
- AT_LEAST((int) num_fds, Xfd + 1);
+ AT_LEAST(num_fds, Xfd + 1);
if (pipe_fd >= 0) {
- AT_LEAST((int) num_fds, pipe_fd + 1);
+ AT_LEAST(num_fds, pipe_fd + 1);
}
if ((cmd_fd = command_func(argv)) < 0) {
print_error("Unable to run sub-command.\n");
--
Roger Leigh
Printing on GNU/Linux? http://gimp-print.sourceforge.net/
Debian GNU/Linux http://www.debian.org/
GPG Public Key: 0x25BFB848. Please sign and encrypt your mail.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]