-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi
Attached the patch for the version I intend to upload. Please respond if
you don't want this NMU to happen, if you are working yourself on a
patch or if you think that the attached patch won't work.
Cheers
Luk
- --
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint: D5AF 25FB 316B 53BB 08E7 F999 E544 DE07 9B7C 328D
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
iD8DBQFDsrie5UTeB5t8Mo0RAiEZAJ9OrWeoV+Pecm/0XqwCGNmUS0OiGACgwPi7
bKDrlybav20v0Pj9S/BC+z8=
=cR99
-----END PGP SIGNATURE-----
diff -Nru /tmp/cV1dLW4hhJ/fte-0.50.0/debian/changelog
/tmp/d8PuywtS7z/fte-0.50.0/debian/changelog
--- /tmp/cV1dLW4hhJ/fte-0.50.0/debian/changelog 2004-01-29 19:15:01.000000000
+0100
+++ /tmp/d8PuywtS7z/fte-0.50.0/debian/changelog 2005-12-28 17:02:57.000000000
+0100
@@ -1,3 +1,12 @@
+fte (0.50.0-1.2) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Update slang build-dep (Closes: #315648).
+ * Removed -Wmissing-prototypes as not supported (anymore)
+ * src/con_slang.cpp: Explicit conversions to make sure it builds.
+
+ -- Luk Claes <[EMAIL PROTECTED]> Wed, 28 Dec 2005 17:02:20 +0100
+
fte (0.50.0-1.1) unstable; urgency=high
* Remove setuid privileges from vfte due to a number of confirmed
diff -Nru /tmp/cV1dLW4hhJ/fte-0.50.0/debian/control
/tmp/d8PuywtS7z/fte-0.50.0/debian/control
--- /tmp/cV1dLW4hhJ/fte-0.50.0/debian/control 2003-07-10 19:07:59.000000000
+0200
+++ /tmp/d8PuywtS7z/fte-0.50.0/debian/control 2005-12-28 16:25:48.000000000
+0100
@@ -3,7 +3,7 @@
Priority: optional
Maintainer: Zdenek Kabelac <[EMAIL PROTECTED]>
Standards-Version: 3.1.1.1
-Build-Depends: debhelper, perl5, xlibs-dev, libgpmg1-dev, libncurses5-dev,
slang1-dev, patch,
+Build-Depends: debhelper, perl5, xlibs-dev, libgpmg1-dev, libncurses5-dev,
libslang2-dev, patch,
Package: fte
Architecture: any
diff -Nru /tmp/cV1dLW4hhJ/fte-0.50.0/src/con_slang.cpp
/tmp/d8PuywtS7z/fte-0.50.0/src/con_slang.cpp
--- /tmp/cV1dLW4hhJ/fte-0.50.0/src/con_slang.cpp 2003-01-10
11:29:42.000000000 +0100
+++ /tmp/d8PuywtS7z/fte-0.50.0/src/con_slang.cpp 2005-12-28
16:53:24.000000000 +0100
@@ -246,7 +246,7 @@
SLsmg_write_nchars(slang_dchs, sizeof(slang_dchs));
SLsmg_gotorc(0, 0);
- SLsmg_read_raw(linebuf, sizeof(slang_dchs));
+ SLsmg_read_raw((SLsmg_Char_Type*)linebuf, sizeof(slang_dchs));
for (i = 0; i < sizeof(slang_dchs); i++)
raw_dchs[i] = (linebuf[i]) & 0xff;
@@ -368,7 +368,7 @@
ConQueryCursorPos(&CurX, &CurY);
while (H > 0) {
SLsmg_gotorc(Y++, X);
- SLsmg_write_raw(box, W);
+ SLsmg_write_raw((SLsmg_Char_Type*)box, W);
box += W;
H--;
}
@@ -386,7 +386,7 @@
ConQueryCursorPos(&CurX, &CurY);
while (H > 0) {
SLsmg_gotorc(Y++, X);
- SLsmg_read_raw(Cell, W);
+ SLsmg_read_raw((SLsmg_Char_Type*)Cell, W);
for (i = 0; i < W; i++)
if (Cell[i] & 0x8000) {
ch = Cell[i] & 0xff;
@@ -409,7 +409,7 @@
ConQueryCursorPos(&CurX, &CurY);
while (H > 0) {
SLsmg_gotorc(Y++, X);
- SLsmg_read_raw(box, W);
+ SLsmg_read_raw((SLsmg_Char_Type*)box, W);
box += W;
H--;
}
diff -Nru /tmp/cV1dLW4hhJ/fte-0.50.0/src/fte-unix.mak
/tmp/d8PuywtS7z/fte-0.50.0/src/fte-unix.mak
--- /tmp/cV1dLW4hhJ/fte-0.50.0/src/fte-unix.mak 2003-03-28 11:59:32.000000000
+0100
+++ /tmp/d8PuywtS7z/fte-0.50.0/src/fte-unix.mak 2005-12-28 16:40:50.000000000
+0100
@@ -35,7 +35,7 @@
#gcc/g++
COPTIONS = -Wall -Wpointer-arith -Wconversion -Wwrite-strings \
- -Wmissing-prototypes -Winline
+ -Winline
#CC = g++
#LD = g++