[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#32224: marked as done (xwpe: Fix for glibc2.1)



Your message dated Sat, 15 May 1999 16:39:47 +0200
with message-id <199905151439.QAA13266@zagreb.mioc.hr>
and subject line bug fixed
has caused the attached bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I'm
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Ian Jackson
(administrator, Debian bugs database)

Received: (at submit) by bugs.debian.org; 21 Jan 1999 16:24:16 +0000
Received: (qmail 23942 invoked from network); 21 Jan 1999 16:24:15 -0000
Received: from koenig.isr.uni-stuttgart.de (HELO koenig) (mail@129.69.33.94)
  by master.debian.org with SMTP; 21 Jan 1999 16:24:15 -0000
Received: from chris by koenig with local (Exim 2.05 #1 (Debian))
	id 103MrC-0006ft-00; Thu, 21 Jan 1999 17:21:22 +0100
From:  <meder@isr.uni-stuttgart.de>
Subject: xwpe: Fix for glibc2.1
To: submit@bugs.debian.org
X-Mailer: bug 3.1.7
Message-Id: <E103MrC-0006ft-00@koenig>
Date: Thu, 21 Jan 1999 17:21:22 +0100

Package: xwpe
Version: 1.4.2-2.1

In glibc2.1 some string functions are realised as macros. Declarations of
string functions are not necessary if you included <string.h> in your
sources and will fail with glibc2.1 because of the macro expansion.

Please check the appended patch and incorporate it in your next release.

Greetings,



				Christian

PS.: the parentheses disable string optimization with glibc2.1

-- System Information
Debian Release: 2.1
Kernel Version: Linux koenig 2.2.0-pre8 #1 Thu Jan 21 11:58:20 CET 1999 sparc unknown

diff -u -r -N xwpe-1.4.2-old/debian/changelog xwpe-1.4.2/debian/changelog
--- xwpe-1.4.2-old/debian/changelog	Thu Jan 21 17:18:53 1999
+++ xwpe-1.4.2/debian/changelog	Thu Jan 21 17:18:58 1999
@@ -1,3 +1,10 @@
+xwpe (1.4.2-2.1.1) frozen unstable; urgency=low
+
+  * non maintainer, sparc only upload
+  * disable a string optimization with glibc2.1
+
+ -- Christian Meder <meder@isr.uni-stuttgart.de>  Thu,  7 Jan 1999 00:14:50 +0100
+
 xwpe (1.4.2-2.1) unstable; urgency=low
 
   * Non-maintainer release.
diff -u -r -N xwpe-1.4.2-old/we_wind.c xwpe-1.4.2/we_wind.c
--- xwpe-1.4.2-old/we_wind.c	Fri Apr  7 14:32:19 1995
+++ xwpe-1.4.2/we_wind.c	Thu Jan 21 17:18:58 1999
@@ -1542,7 +1542,7 @@
 				&& e_mouse.x <= xa+n-1) ret = CDO;
 #endif
       if(ret == CDO && e_sv_window(xa+n, ya, &num, *df, f) == CR)
-      strcpy(str, (*df)->name[num]);
+      (strcpy)(str, (*df)->name[num]);
    }  while(ret == CDO);
    return(ret);
 }


Reply to: