Package: gdb Version: 6.8-3 Severity: important Tags: patch Hello,
gdb currently FTBFS on hurd-i386 because of an improper cast, here is a patch. Samuel -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (990, 'testing'), (500, 'oldstable'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.26 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Shell: /bin/sh linked to /bin/bash Versions of packages gdb depends on: ii libc6 2.7-13 GNU C Library: Shared libraries ii libexpat1 2.0.1-4 XML parsing C library - runtime li ii libncurses5 5.6+20080713-1 shared libraries for terminal hand ii libreadline5 5.2-3 GNU readline and history libraries gdb recommends no packages. Versions of packages gdb suggests: ii gdb-doc 6.8-1 The GNU Debugger Documentation -- no debconf information -- Samuel «Tiens, quand j'aurai un peu de temps et une partition libre, je crois que je vais essayer de remplacer mes scripts de démarrage par des programmes Windows lancés via Wine et binfmt_misc :-)» -+- AGV in Guide du linuxien pervers - "J'sais pas quoi faire... (air connu)"
--- gdb-6.8/gdb/gnu-nat.c.orig 2008-08-12 16:22:14.000000000 +0100 +++ gdb-6.8/gdb/gnu-nat.c 2008-08-12 16:20:42.000000000 +0100 @@ -797,7 +797,7 @@ inf_validate_procinfo (struct inf *inf) int info_flags = 0; error_t err = proc_getprocinfo (proc_server, inf->pid, &info_flags, - (procinfo_t *) &pi, &pi_len, &noise, &noise_len); + (void *) &pi, &pi_len, &noise, &noise_len); if (!err) {