Bug#623743: cups-pdf: does not properly set supplementary groups when dropping privileges

2011-04-22 Thread Christopher Zimmermann
Package: cups-pdf
Version: 2.5.0-16
Severity: normal
Tags: upstream patch

When dropping privileges to the user who sent the print job cups-pdf
does only set euid and egid, but NOT the supplementary groups. Therefore
a common "print dump" directory only accessible by a "print" group will
only work when all printing users have a primary group of "print", but
NOT when it is only a supplementary group.

Patch is attached.

Greetings,
Christopher


-- System Information:
Debian Release: 6.0.1
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages cups-pdf depends on:
ii  cups1.4.4-7  Common UNIX Printing System(tm) - 
ii  cups-client 1.4.4-7  Common UNIX Printing System(tm) - 
ii  ghostscript 8.71~dfsg2-9 The GPL Ghostscript PostScript/PDF
ii  libc6   2.11.2-10Embedded GNU C Library: Shared lib
ii  libpaper-utils  1.1.24   library for handling paper charact

cups-pdf recommends no packages.

Versions of packages cups-pdf suggests:
ii  system-config-printer 1.2.3-3graphical interface to configure t

-- Configuration Files:
/etc/cups/cups-pdf.conf changed [not included]

-- no debconf information

*** cups-pdf.c.diff
--- a/cups-pdf.c2009-01-26 12:56:20.0 +0100
+++ b/cups-pdf.c2011-04-22 18:12:41.0 +0200
@@ -521,6 +521,8 @@
   int size;
   mode_t mode;
   struct passwd *passwd;
+  gid_t *groups;
+  int ngroups;
   pid_t pid;
 
   if (setuid(0)) {
@@ -550,7 +552,24 @@
 return 5;
   }  
   snprintf(user, size, "%s%s", conf.userprefix, argv[2]);
+
+  /* Get user passwd entry */
   passwd=getpwnam(user);
+
+  /* Get user groups */
+  ngroups=32;
+  groups = malloc(ngroups * sizeof(gid_t));
+  size = getgrouplist(user, passwd->pw_gid, groups, &ngroups);
+  if (size == -1) {
+free(groups);
+groups = malloc(ngroups * sizeof(gid_t));
+size = getgrouplist(user, passwd->pw_gid, groups, &ngroups);
+  }
+  else if (size < 0) {
+log_event(CPERROR, "getgrouplist failed", NULL);
+return 5;
+  }
+
   if (passwd == NULL && conf.lowercase) {
 log_event(CPDEBUG, "unknown user", user);
 for (size=0;size<(int) strlen(argv[2]);size++) 
@@ -711,6 +730,10 @@
   log_event(CPERROR, "failed to set GID for current user", NULL);
 else 
   log_event(CPDEBUG, "GID set for current user", NULL);
+if (setgroups(ngroups, groups))
+  log_event(CPERROR, "failed to set supplementary groups for current 
user", NULL);
+else 
+  log_event(CPDEBUG, "supplementary groups set for current user", NULL);
 if (setuid(passwd->pw_uid))
   log_event(CPERROR, "failed to set UID for current user", 
passwd->pw_name);
 else 



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#614090: cupsaddsmb fails to add win98 drivers

2011-02-19 Thread Christopher Zimmermann
Package: cups
Version: 1.4.4-7
Severity: normal

Hello,

since upgrading to squeeze cupsaddsmb stopped working:

$ sudo cupsaddsmb -v pdf
Password for root required to access localhost via SAMBA: 
Running command: smbclient //localhost/print$ -N -A /tmp/06b6f4d623ea3 -c 
'mkdir W32X86;put /tmp/06b6f4d6b96ea W32X86/pdf.ppd;put 
/usr/share/cups/drivers/ps5ui.dll W32X86/ps5ui.dll;put 
/usr/share/cups/drivers/pscript.hlp W32X86/pscript.hlp;put 
/usr/share/cups/drivers/pscript.ntf W32X86/pscript.ntf;put 
/usr/share/cups/drivers/pscript5.dll W32X86/pscript5.dll'

[...]

Running command: rpcclient localhost -N -A /tmp/06b6f4d623ea3 -c 'adddriver 
"Windows 4.0" 
"pdf:ADOBEPS4.DRV:pdf.PPD:NULL:ADOBEPS4.HLP:PSMON.DLL:RAW:ADOBEPS4.DRV,pdf.PPD,ADOBEPS4.HLP,PSMON.DLL,ADFONTS.MFM,ICONLIB.DLL"'
result was WERR_INVALID_PARAM

tried to run this manually:

$ rpcclient localhost -U root%blub  -c 'adddriver "Windows 4.0" 
"pdf:ADOBEPS4.DRV:pdf.PPD:NULL:ADOBEPS4.HLP:PSMON.DLL:RAW:ADOBEPS4.DRV,pdf.PPD,ADOBEPS4.HLP,PSMON.DLL,ADFONTS.MFM,ICONLIB.DLL"'
 
lub  -c 'adddriver "Windows 4.0" 
"pdf:ADOBEPS4.DRV:pdf.PPD:NULL:ADOBEPS4.HLP:PSMON.DLL:RAW:ADOBEPS4.DRV,pdf.PPD,ADOBEPS4.HLP,PSMON.DLL,ADFONTS.MFM,ICONLIB.DLL"'result
 was WERR_INVALID_PARAM

I don't know why, but removing the "NULL" config file parameter seems to help.

$ rpcclient localhost -U root%blub  -c 'adddriver "Windows 4.0" 
"pdf:ADOBEPS4.DRV:pdf.PPD::ADOBEPS4.HLP:PSMON.DLL:RAW:ADOBEPS4.DRV,pdf.PPD,ADOBEPS4.HLP,PSMON.DLL,ADFONTS.MFM,ICONLIB.DLL"'
 
lub  -c 'adddriver "Windows 4.0" 
"pdf:ADOBEPS4.DRV:pdf.PPD:NULL:ADOBEPS4.HLP:PSMON.DLL:RAW:ADOBEPS4.DRV,pdf.PPD,ADOBEPS4.HLP,PSMON.DLL,ADFONTS.MFM,ICONLIB.DLL"'

I just worked around this by removing my win98 drivers (the uppercase 
ADOBEPS4.DRV ). cupsaddsmbd will then only add the NT drivers, which works.


I'm not sure whether this is a cups or a samba bug, but I believe most
people will come looking here, because the use cupsaddsmb and may find
this workaround usefull.



Cheers,

Christopher



-- System Information:
Debian Release: 6.0
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'squeeze-updates')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages cups depends on:
ii  adduser 3.112+nmu2   add and remove users and groups
ii  bc  1.06.95-2The GNU bc arbitrary precision cal
ii  cups-client 1.4.4-7  Common UNIX Printing System(tm) - 
ii  cups-common 1.4.4-7  Common UNIX Printing System(tm) - 
ii  cups-ppdc   1.4.4-7  Common UNIX Printing System(tm) - 
ii  debconf [debconf-2.0]   1.5.36.1 Debian configuration management sy
ii  ghostscript 8.71~dfsg2-9 The GPL Ghostscript PostScript/PDF
ii  libavahi-client30.6.27-2 Avahi client library
ii  libavahi-common30.6.27-2 Avahi common library
ii  libc6   2.11.2-10Embedded GNU C Library: Shared lib
ii  libcups21.4.4-7  Common UNIX Printing System(tm) - 
ii  libcupscgi1 1.4.4-7  Common UNIX Printing System(tm) - 
ii  libcupsdriver1  1.4.4-7  Common UNIX Printing System(tm) - 
ii  libcupsimage2   1.4.4-7  Common UNIX Printing System(tm) - 
ii  libcupsmime11.4.4-7  Common UNIX Printing System(tm) - 
ii  libcupsppdc11.4.4-7  Common UNIX Printing System(tm) - 
ii  libdbus-1-3 1.2.24-4 simple interprocess messaging syst
ii  libgcc1 1:4.4.5-8GCC support library
ii  libgnutls26 2.8.6-1  the GNU TLS library - runtime libr
ii  libgssapi-krb5-21.8.3+dfsg-4 MIT Kerberos runtime libraries - k
ii  libijs-0.35 0.35-7   IJS raster image transport protoco
ii  libkrb5-3   1.8.3+dfsg-4 MIT Kerberos runtime libraries
ii  libldap-2.4-2   2.4.23-7 OpenLDAP libraries
ii  libpam0g1.1.1-6.1Pluggable Authentication Modules l
ii  libpaper1   1.1.24   library for handling paper charact
ii  libpoppler5 0.12.4-1.2   PDF rendering library
ii  libslp1 1.2.1-7.8OpenSLP libraries
ii  libstdc++6  4.4.5-8  The GNU Standard C++ Library v3
ii  libusb-0.1-42:0.1.12-16  userspace USB programming library
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip
ii  poppler-utils   0.12.4-1.2   PDF utilitites (based on libpopple
ii  procps  1:3.2.8-9/proc file system utilities
ii  ssl-cert1.0.28   simple debconf wrapper for OpenSSL
ii  ttf-freefont20090104-7   Freefont Serif, Sans and Mono True
ii  zlib1g  1:1.2.3.4.dfs

Bug#613704: storebackup: "Use of unitialized value" because of wrong variable prefix

2011-02-16 Thread Christopher Zimmermann
Package: storebackup
Version: 3.2-1
Severity: normal
Tags: upstream patch

Hi,

I got the following message

PROGRESS  2011.02.16 01:30:16 12887   read 212500 lines ...
PROGRESS  2011.02.16 01:30:Not a HASH reference at /usr/bin/storeBackup line 
3600.
Use of uninitialized value $size in addition (+) at /usr/bin/storeBackup line 
7089.
Use of uninitialized value in addition (+) at /usr/bin/storeBackup line 7131.
Use of uninitialized value $statNoBlocks in addition (+) at 
/usr/bin/storeBackup line 6671.
Not a HASH reference at /usr/bin/storeBackup line 3600.
Use of uninitialized value $size in addition (+) at /usr/bin/storeBackup line 
7089.
Use of uninitialized value in addition (+) at /usr/bin/storeBackup line 7131.
Use of uninitialized value $statNoBlocks in addition (+) at 
/usr/bin/storeBackup line 6671.
16 12887   read 215000 lines ...
PROGRESS  2011.02.16 01:30:17 12887   read 217500 lines ...


and could fix it. Patch is attached




-- System Information:
Debian Release: 6.0
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'squeeze-updates')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages storebackup depends on:
ii  bzip2 1.0.5-6high-quality block-sorting file co
ii  debianutils   3.4Miscellaneous utilities specific t
ii  perl  5.10.1-17  Larry Wall's Practical Extraction 

Versions of packages storebackup recommends:
ii  libio-compress-bzip2-perl 2.024-1Transitional dummy package for IO:
ii  libio-compress-perl [libio-co 2.024-1bundle of IO::Compress modules
ii  perl [libio-compress-bzip2-pe 5.10.1-17  Larry Wall's Practical Extraction 

storebackup suggests no packages.

-- no debconf information
--- storeBackup 2010-12-23 07:58:05.0 +0100
+++ storeBackup 2011-02-08 09:21:30.0 +0100
@@ -3589,7 +3589,7 @@
{
$prLog->print('-kind' => 'E',
  '-str' => ["<$sourceDir> deleted during backup"])
-   unless exists $$suppressWarning{'fileChange'};
+   unless exists $suppressWarning{'fileChange'};
++$noErrors;
}
else
@@ -3599,7 +3599,7 @@
{
$prLog->print('-kind' => 'W',
  '-str' => ["<$sourceDir> changed during backup"])
-   unless exists $$suppressWarning{'fileChange'};
+   unless exists $suppressWarning{'fileChange'};
++$noWarnings;
}
}
@@ -6157,7 +6157,7 @@
$prLog->print('-kind' => 'W',
  '-str' =>
  ["file <$dir/$file> deleted during backup"])
-   unless exists $$suppressWarning{'fileChange'};
+   unless exists $suppressWarning{'fileChange'};
next;
}
if ($lastMD5 ne $md5 or $lastSize != $size)
@@ -6165,7 +6165,7 @@
$prLog->print('-kind' => 'W',
  '-str' =>
  ["file <$dir/$file> changed during backup"])
-   unless exists $$suppressWarning{'fileChange'};
+   unless exists $suppressWarning{'fileChange'};
$md5 = $lastMD5;
$size = $lastSize;
}
@@ -6355,7 +6355,7 @@
$prLog->print('-kind' => 'W',
  '-str' =>
  ["file <$dir/$file> deleted during backup"])
-   unless exists $$suppressWarning{'fileChange'};
+   unless exists $suppressWarning{'fileChange'};
 
next;
}
@@ -6364,7 +6364,7 @@
$prLog->print('-kind' => 'W',
  '-str' =>
  ["file <$dir/$file> changed during backup"])
-   unless exists $$suppressWarning{'fileChange'};
+   unless exists $suppressWarning{'fileChange'};
 
$md5 = 'g' x 32;
}
@@ -6486,7 +6486,7 @@
$prLog->print('-kind' => 'W',
  '-str' =>
  ["file <$dir/$file> deleted during backup"])
-   unless exists $$suppressWarning{'fileChange'};
+   unless exists $suppressWarning{'fileChange'};
 
next;
}
@@ -6495,7 +6495,7 @@
$prLog->print('-kind' => 'W',
  '-str' =>
  ["file <$dir/$file> changed during backup"])
-   unless exists $$suppressWarning{'fileChange'};
+   unless exists $suppressWarning{'fileChange'};
$md5 = $lastMD5;
$size = $lastSize;
}


Bug#500732: cups: bug also persists in experimental

2009-02-12 Thread Christopher Zimmermann
Package: cups
Version: 1.3.9-12
Followup-For: Bug #500732

hi!

I just verified that his bus still persists in experimental.
After some research I tried fixing it by using the current ghostscript 8.64 from
ubuntu. This still didn't help.
How could this be debugged?


Christopher Zimmermann


-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable'), (50, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-vserver-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages cups depends on:
ii  adduser 3.110add and remove users and groups
ii  bc  1.06.94-3The GNU bc arbitrary precision cal
ii  cups-common 1.3.9-12 Common UNIX Printing System(tm) - 
ii  debconf [debconf-2. 1.5.24   Debian configuration management sy
ii  ghostscript 8.64.dfsg.1-0ubuntu1 The GPL Ghostscript PostScript/PDF
ii  libavahi-compat-lib 0.6.23-3lenny1   Avahi Apple Bonjour compatibility 
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libcups21.3.9-12 Common UNIX Printing System(tm) - 
ii  libcupsimage2   1.3.9-12 Common UNIX Printing System(tm) - 
ii  libdbus-1-3 1.2.1-5  simple interprocess messaging syst
ii  libgcc1 1:4.3.2-1.1  GCC support library
ii  libgnutls26 2.4.2-5  the GNU TLS library - runtime libr
ii  libijs-0.35 0.35-3   IJS raster image transport protoco
ii  libkrb531.6.dfsg.4~beta1-5   MIT Kerberos runtime libraries
ii  libldap-2.4-2   2.4.11-1 OpenLDAP libraries
ii  libpam0g1.0.1-5  Pluggable Authentication Modules l
ii  libpaper1   1.1.23+nmu1  library for handling paper charact
ii  libpoppler3 0.8.7-1  PDF rendering library
ii  libslp1 1.2.1-7.5OpenSLP libraries
ii  libstdc++6  4.3.2-1.1The GNU Standard C++ Library v3
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
ii  perl-modules5.10.0-19Core Perl modules
ii  procps  1:3.2.7-11   /proc file system utilities
ii  ssl-cert1.0.23   simple debconf wrapper for OpenSSL
ii  xpdf-utils [poppler 3.02-1.4 Portable Document Format (PDF) sui
ii  zlib1g  1:1.2.3.3.dfsg-12compression library - runtime

Versions of packages cups recommends:
pn  avahi-utils(no description available)
ii  cups-client   1.3.9-12   Common UNIX Printing System(tm) - 
ii  foomatic-filters  3.0.2-20080211-3.2 OpenPrinting printer support - fil
ii  gsfonts-x11   0.21   Make Ghostscript fonts available t
ii  smbclient 2:3.2.5-4  a LanManager-like simple client fo

Versions of packages cups suggests:
ii  cups-bsd1.3.9-12 Common UNIX Printing System(tm) - 
pn  cups-driver-gutenprint (no description available)
ii  cups-pdf2.5.0-1  PDF printer for CUPS
ii  foomatic-db 20080211-2+nmu1  OpenPrinting printer support - dat
ii  foomatic-db-engine  3.0.2-20080211-1 OpenPrinting printer support - pro
ii  hplip   2.8.6.b-4HP Linux Printing and Imaging Syst
pn  xpdf-korean | xpdf-japa(no description available)

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#500732: cups: same bug for kyocera FS-1020D. Is this a double of #497671?

2009-02-12 Thread Christopher Zimmermann
Package: cups
Version: 1.3.8-1lenny4.1
Followup-For: Bug #500732

Hi!

I just upgraded a etch printserver to lenny. Everythings fine,
but printing duplex from win2k doesn't work anymore.

Furthermore this seems to be the same problem as in #497671.
Maybe merge the bugs?


Regards,

Christopher


-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable'), (50, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-vserver-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages cups depends on:
ii  adduser3.110 add and remove users and groups
ii  cups-common1.3.8-1lenny4.1   Common UNIX Printing System(tm) - 
ii  debconf [debconf-2 1.5.24Debian configuration management sy
ii  ghostscript8.62.dfsg.1-3.2lenny0 The GPL Ghostscript PostScript/PDF
ii  libavahi-compat-li 0.6.23-3lenny1Avahi Apple Bonjour compatibility 
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcups2   1.3.8-1lenny4.1   Common UNIX Printing System(tm) - 
ii  libcupsimage2  1.3.8-1lenny4.1   Common UNIX Printing System(tm) - 
ii  libdbus-1-31.2.1-5   simple interprocess messaging syst
ii  libgnutls262.4.2-5   the GNU TLS library - runtime libr
ii  libkrb53   1.6.dfsg.4~beta1-5MIT Kerberos runtime libraries
ii  libldap-2.4-2  2.4.11-1  OpenLDAP libraries
ii  libpam0g   1.0.1-5   Pluggable Authentication Modules l
ii  libpaper1  1.1.23+nmu1   library for handling paper charact
ii  libslp11.2.1-7.5 OpenSLP libraries
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  perl-modules   5.10.0-19 Core Perl modules
ii  procps 1:3.2.7-11/proc file system utilities
ii  ssl-cert   1.0.23simple debconf wrapper for OpenSSL
ii  xpdf-utils [popple 3.02-1.4  Portable Document Format (PDF) sui

Versions of packages cups recommends:
pn  avahi-utils(no description available)
ii  cups-client   1.3.8-1lenny4.1Common UNIX Printing System(tm) - 
ii  foomatic-filters  3.0.2-20080211-3.2 OpenPrinting printer support - fil
ii  smbclient 3.0.24-6etch10 a LanManager-like simple client fo

Versions of packages cups suggests:
ii  cups-bsd1.3.8-1lenny4.1  Common UNIX Printing System(tm) - 
pn  cups-driver-gutenprint (no description available)
ii  cups-pdf2.4.8-3  PDF printer for CUPS
ii  foomatic-db 20080211-2+nmu1  OpenPrinting printer support - dat
ii  foomatic-db-engine  3.0.2-20080211-1 OpenPrinting printer support - pro
ii  hplip   2.8.6.b-4HP Linux Printing and Imaging Syst
pn  xpdf-korean | xpdf-japa(no description available)

-- debconf information:
* cupsys/raw-print: true
* cupsys/backend: usb



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#503220: claws-mail: segfaults when selecting mail folder

2008-10-23 Thread Christopher Zimmermann
Package: claws-mail
Version: 3.6.1-1
Severity: normal

Hi!

Here's the backtrace of a segfault I experience every second day or so
when selecting my inbox. This segfault also happens with the version in
testing.
I hope this will be of some help. I know some C, but I have no clue how
to debug such bugs. Maybe I could fix it by myself if you give me some
hints.

Christopher


Starting program: /usr/bin/claws-mail 
[Thread debugging using libthread_db enabled]
[New Thread 0x2ab7b6c4f7c0 (LWP 2383)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x2ab7b6c4f7c0 (LWP 2383)]
0x005cb96b in gtk_cmctree_is_viewable (ctree=0x9f42d0, node=0x1dd5020) 
at gtkcmctree.c:4188
4188gtkcmctree.c: No such file or directory.
in gtkcmctree.c
#0  0x005cb96b in gtk_cmctree_is_viewable (ctree=0x9f42d0, 
node=0x1dd5020) at gtkcmctree.c:4188
#1  0x005cbe97 in gtk_cmctree_node_moveto (ctree=0x9f42d0, 
node=0x1dd5020, column=-1, row_align=0.5, col_align=0) at gtkcmctree.c:5325
#2  0x004b2443 in folderview_selected (ctree=0x9f42d0, row=0x1dd5020, 
column=-1, folderview=0xb1de00) at folderview.c:2294
#3  0x2ab7af82de9d in IA__g_closure_invoke (closure=0xb9c130, 
return_value=0x0, n_param_values=3, param_values=0x7e0aa630, 
invocation_hint=0x7e0aa530) at 
/build/buildd/glib2.0-2.16.6/gobject/gclosure.c:490
#4  0x2ab7af840bfd in signal_emit_unlocked_R (node=0x9c6ed0, detail=0, 
instance=0x9f42d0, emission_return=0x0, instance_and_params=0x7e0aa630) at 
/build/buildd/glib2.0-2.16.6/gobject/gsignal.c:2440
#5  0x2ab7af8420ee in IA__g_signal_emit_valist (instance=0x9f42d0, 
signal_id=, detail=0, var_args=0x7e0aa890) at 
/build/buildd/glib2.0-2.16.6/gobject/gsignal.c:2199
#6  0x2ab7af8425f3 in IA__g_signal_emit (instance=0x9f42d0, 
signal_id=10399328, detail=1) at 
/build/buildd/glib2.0-2.16.6/gobject/gsignal.c:2243
#7  0x005ee7c3 in gtk_sctree_real_unselect_all (clist=0x9f42d0) at 
gtksctree.c:1933
#8  0x005ec299 in select_row (sctree=0x9f42d0, row=1, col=1, 
state=, _node=0x0) at gtksctree.c:1520
#9  0x005edc23 in gtk_sctree_button_press (widget=, event=0x5a81de0) at gtksctree.c:1695
#10 0x2ab7ad61c688 in _gtk_marshal_BOOLEAN__BOXED (closure=0x9dbfb0, 
return_value=0x7e0aabd0, n_param_values=, 
param_values=0x7e0aac90, invocation_hint=, 
marshal_data=0x5ed7f0) at 
/scratch/build-area/gtk+2.0-2.12.11/gtk/gtkmarshalers.c:84
#11 0x2ab7af82de9d in IA__g_closure_invoke (closure=0x9dbfb0, 
return_value=0x7e0aabd0, n_param_values=2, param_values=0x7e0aac90, 
invocation_hint=0x7e0aab90) at 
/build/buildd/glib2.0-2.16.6/gobject/gclosure.c:490
#12 0x2ab7af8408dc in signal_emit_unlocked_R (node=0x9dc380, detail=0, 
instance=0x9f42d0, emission_return=0x7e0aae90, 
instance_and_params=0x7e0aac90) at 
/build/buildd/glib2.0-2.16.6/gobject/gsignal.c:2478
#13 0x2ab7af841f71 in IA__g_signal_emit_valist (instance=0x9f42d0, 
signal_id=, detail=0, var_args=0x7e0aaef0) at 
/build/buildd/glib2.0-2.16.6/gobject/gsignal.c:2209
#14 0x2ab7af8425f3 in IA__g_signal_emit (instance=0x9f42d0, 
signal_id=10399328, detail=1) at 
/build/buildd/glib2.0-2.16.6/gobject/gsignal.c:2243
#15 0x2ab7ad73119e in gtk_widget_event_internal (widget=0x9f42d0, 
event=0x5a81de0) at /scratch/build-area/gtk+2.0-2.12.11/gtk/gtkwidget.c:4678
#16 0x2ab7ad615203 in IA__gtk_propagate_event (widget=0x9f42d0, 
event=0x5a81de0) at /scratch/build-area/gtk+2.0-2.12.11/gtk/gtkmain.c:2336
#17 0x2ab7ad61624b in IA__gtk_main_do_event (event=0x5a81de0) at 
/scratch/build-area/gtk+2.0-2.12.11/gtk/gtkmain.c:1556
#18 0x2ab7adae5f8c in gdk_event_dispatch (source=, 
callback=, user_data=) at 
/scratch/build-area/gtk+2.0-2.12.11/gdk/x11/gdkevents-x11.c:2351
#19 0x2ab7afa9e78b in IA__g_main_context_dispatch (context=0x9b6930) at 
/build/buildd/glib2.0-2.16.6/glib/gmain.c:2012
#20 0x2ab7afaa1f5d in g_main_context_iterate (context=0x9b6930, block=1, 
dispatch=1, self=) at 
/build/buildd/glib2.0-2.16.6/glib/gmain.c:2645
#21 0x2ab7afaa248d in IA__g_main_loop_run (loop=0x968fe0) at 
/build/buildd/glib2.0-2.16.6/glib/gmain.c:2853
#22 0x2ab7ad616667 in IA__gtk_main () at 
/scratch/build-area/gtk+2.0-2.12.11/gtk/gtkmain.c:1163
#23 0x004df30d in main (argc=1, argv=0x7e0ab738) at main.c:1667
The program is running.  Exit anyway? (y or n) 


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable'), (30, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-4-vserver-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages claws-mail depends on:
ii  libc6 2.7-14 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libcompfaceg1 1:1.5.2-4  Compress/deco

Bug#500551: pidgin: crashes when opening IM window for buddy for which logging is disabled.

2008-10-20 Thread Christopher Zimmermann

> Don't run /usr/lib/debug/usr/bin/pidgin, just run pidgin as you normally
> would.
> 
> Christopher Zimmermann wrote:
> > Hi!
> > 
> > I tried this procedure, but executing the binary in 
> > /usr/lib/debug/usr/bin/pidgin (which I chmodded a+x) fails with
> > "exec format error". I also tried recompiling the package with
> > apt-get source pidgin-dbg and debuild -uc -us. Same error.
> > What's wrong? Is this because of amd64? Any idea?
> > 
> > Christopher
> > 
> > 
> > On Mon, 13 Oct 2008 20:38:40 -0400
> > Ari Pollak <[EMAIL PROTECTED]> wrote:
> > 
> >> Please get a backtrace as described here:
> >> http://wiki.debian.org/HowToGetABacktrace
> >> You can just install pidgin-dbg, libglib2.0-0-dbg, and libgtk2.0-0-dbg,
> >> and skip to the "Running gdb" section.
> >>
> 
> 


signature.asc
Description: PGP signature


Bug#502130: previously known as #379746

2008-10-13 Thread Christopher Zimmermann
this bug was previously filed as #379746 for sylpheed-claws. I don't
know if it was fixed since then and broke again.


signature.asc
Description: PGP signature


Bug#502130: claws-mail: dialog windows are not marked transient

2008-10-13 Thread Christopher Zimmermann
Package: claws-mail
Version: 3.5.0-2
Severity: minor

Hi,

the dialog windows of claws-mail are not marked transient, which makes
them appear as new full-size windows in tiled windowmanagers like ion3.
Claws-mail has a manage_window_set_transient function in
gtk/manage_window.c; but this one never works, since the focus_window
pointer never gets initialized. Try grepping for focus_windows or
uncomment the debug_print statement.
It would be quite easy to fix if there was only the main window. But
some dialogs should have the message window as parent. I'm not sure how
to fix this... could be tricky.


Best regards,

Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-4-vserver-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages claws-mail depends on:
ii  libaspell15   0.60.6-1   GNU Aspell spell-checker runtime l
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libcompfaceg1 1:1.5.2-4  Compress/decompress images for mai
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libetpan130.54-3 mail handling library
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libldap-2.4-2 2.4.10-3   OpenLDAP libraries
ii  libpango1.0-0 1.20.5-2   Layout and rendering of internatio
ii  libpisock90.12.3-5   library for communicating with a P
ii  libsm62:1.0.3-2  X11 Session Management library
ii  libssl0.9.8   0.9.8g-13  SSL shared libraries
ii  libstartup-notification0  0.9-1  library for program launch feedbac

Versions of packages claws-mail recommends:
ii  aspell-en [aspell-dictionary] 6.0-0-5.1  English dictionary for GNU Aspell
ii  claws-mail-i18n   3.5.0-2Locale data for Claws Mail (i18n s
ii  xfonts-100dpi 1:1.0.0-4  100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.0-4  75 dpi fonts for X

Versions of packages claws-mail suggests:
ii  claws-mail-doc3.5.0-2User documentation for Claws Mail 
ii  claws-mail-tools  3.5.0-2Helper and utility scripts for Cla
ii  dillo [www-browser]   0.8.6-3Small and fast web browser
pn  gedit | kedit | mousepad | ne  (no description available)
ii  iceweasel [www-browser]   3.0.1-1lightweight web browser based on M
ii  w3m [www-browser] 0.5.2-2+b1 WWW browsable pager with excellent

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#500551: pidgin: crashes when opening IM window for buddy for which logging is disabled.

2008-09-29 Thread Christopher Zimmermann
Package: pidgin
Version: 2.4.3-2
Severity: normal

Hi!

My pidgin crashes when I try to open the IM window for buddys for which
the logging option has been disabled in a previous session.
Workaround: delete the enable_logging options from the blist.xml.

I could provide coredumps etc. if told how to produce them.


Regards,

Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-4-vserver-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages pidgin depends on:
ii  gconf22.22.0-1   GNOME configuration database syste
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.1-3simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgstreamer0.10-00.10.19-3  Core GStreamer libraries and eleme
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libgtkspell0  2.0.13-1   a spell-checking addon for GTK's T
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libpango1.0-0 1.20.5-2   Layout and rendering of internatio
ii  libpurple02.4.3-2multi-protocol instant messaging l
ii  libsm62:1.0.3-2  X11 Session Management library
ii  libstartup-notification0  0.9-1  library for program launch feedbac
ii  libx11-6  2:1.1.5-1  X11 client-side library
ii  libxss1   1:1.1.3-1  X11 Screen Saver extension library
ii  perl  5.10.0-14  Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.10.0]5.10.0-14  minimal Perl system
ii  pidgin-data   2.4.3-2multi-protocol instant messaging c

Versions of packages pidgin recommends:
pn  gstreamer0.10-plugins-base (no description available)
pn  gstreamer0.10-plugins-good (no description available)

Versions of packages pidgin suggests:
ii  docker1.4-4  System tray for KDE3/GNOME2 dockle
pn  evolution-data-server  (no description available)
ii  libsqlite3-0  3.5.9-3SQLite 3 shared library

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#479264: claws-mail-html2-viewer: version conflict between plugins and claws-mail

2008-05-03 Thread Christopher Zimmermann
Package: claws-mail-html2-viewer
Version: 3.3.1-1
Severity: normal
Tags: patch

Hi!

In testing the current claws 3.4 cannot work with the plugins (3.3):

Your version of Claws Mail is newer than the version the 'GtkHtml2 HTML
Viewer' plugin was built with.

Therefore the plugins should depend on exactly the same version of
claws-mail; not 'same or newer'.

Regards,
Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.24-1-amd64 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages claws-mail-html2-viewer depends on:
ii  claws-mail3.4.0-1Fast, lightweight and user-friendl
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libcairo2 1.4.14-1   The Cairo 2D vector graphics libra
ii  libcurl3-gnutls   7.18.1-1   Multi-protocol file transfer libra
ii  libglib2.0-0  2.16.1-2   The GLib library of C routines
ii  libgtk2.0-0   2.12.9-2   The GTK+ graphical user interface 
ii  libgtkhtml2-0 2.11.1-2   HTML rendering/editing library - r
ii  libkrb53  1.6.dfsg.3~beta1-4 MIT Kerberos runtime libraries
ii  libpango1.0-0 1.20.2-2   Layout and rendering of internatio
ii  libxml2   2.6.32.dfsg-2  GNOME XML library

claws-mail-html2-viewer recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#470910: hylafax-server: init.d/hylafax complains when hfaxd ist started from inetd

2008-03-14 Thread Christopher Zimmermann
Package: hylafax-server
Version: 2:4.3.1-7
Severity: minor
Tags: patch

The startup script knows that hfaxd may be started from inetd, but
doesn't start faxq in this case. Here's a patch:

Regards,
Christopher



-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-6-vserver-amd64
Locale: LANG=C, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages hylafax-server depends on:
ii  adduser  3.102   Add and remove users and groups
ii  debconf [debconf 1.5.11etch1 Debian configuration management sy
ii  gs-esp [gs]  8.15.3.dfsg.1-1etch1The Ghostscript PostScript interpr
ii  hylafax-client   2:4.3.1-7   Flexible client/server fax softwar
ii  libc62.3.6.ds1-13etch5   GNU C Library: Shared libraries
ii  libgcc1  1:4.1.1-21  GCC support library
ii  libpam0g 0.79-5  Pluggable Authentication Modules l
ii  libstdc++6   4.1.1-21The GNU Standard C++ Library v3
ii  libtiff-tools3.8.2-7 TIFF manipulation and conversion t
ii  libtiff4 3.8.2-7 Tag Image File Format (TIFF) libra
ii  lsb-base 3.1-23.2etch1   Linux Standard Base 3.1 init scrip
ii  mailx1:8.1.2-0.20050715cvs-1 A simple mail user agent
ii  metamail 2.7-52  implementation of MIME
ii  psmisc   22.3-1  Utilities that use the proc filesy
ii  sed  4.1.5-1 The GNU sed stream editor
ii  sharutils1:4.2.1-15  shar, unshar, uuencode, uudecode
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages hylafax-server recommends:
ii  metamail  2.7-52 implementation of MIME

-- debconf information excluded
--- old/hylafax.old 2008-03-14 13:50:43.0 +0100
+++ init.d/hylafax  2008-03-14 14:12:41.0 +0100
@@ -57,12 +57,18 @@
   exit 1
 fi
 
-if [ -z "$OLDPROT$NEWPROT$SNPP" ]
+if [ -z "$OLDPROT$NEWPROT$SNPP" -a "$1" != "stop" ]
 then
-  echo "You must specify at least one protocol OLD, NEW or SNPP in"
-  echo "/etc/hylafax/setup.cache using the command faxsetup,"
-  echo "otherwise you might only run hylafax via inetd."
-  exit 1
+  if grep hylafax /etc/inetd.conf >/dev/null || grep hylafax /etc/xinetd.d/* 
>/dev/null
+  then
+#echo "hfaxd runs from inetd"
+true
+  else
+echo "You must specify at least one protocol OLD, NEW or SNPP in"
+echo "/etc/hylafax/setup.cache using the command faxsetup,"
+echo "otherwise you might only run hylafax via inetd."
+exit 1
+  fi
 fi
 
 if [ -r /etc/default/hylafax ]; then
@@ -237,8 +243,11 @@
   log_daemon_msg "Starting HylaFAX" faxq
   start-stop-daemon --start --exec /usr/sbin/faxq
 
-  log_progress_msg "hfaxd"
-  start-stop-daemon --start --exec /usr/sbin/hfaxd -- $BINDTO $NEWPROT 
$OLDPROT $SNPP
+  if [ -n "$OLDPROT$NEWPROT$SNPP" ]
+  then
+log_progress_msg "hfaxd"
+start-stop-daemon --start --exec /usr/sbin/hfaxd -- $BINDTO $NEWPROT 
$OLDPROT $SNPP
+  fi
 
   cd ${HYLAFAX_HOME}/etc
   devices="`echo_fax_devices`"


Bug#470727: capi4hylafaxconfig needs bash as interpreter, not simply sh.

2008-03-13 Thread Christopher Zimmermann
Package: capi4hylafax
Version: 01.03.00.99.svn.300
Severity: normal

Hi!

the /usr/sbin/capi4hylafaxconfig should use bash as interpreter. Further
it needs dialog installed. Therefore the package should at least
suggest dialog.

Regards, 
Christopher


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-3-amd64 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages capi4hylafax depends on:
pn  capiutils  (no description available)
ii  libc6  2.7-6 GNU C Library: Shared libraries
pn  libcapi20-3(no description available)
ii  libgcc11:4.3-20080202-1  GCC support library
ii  libstdc++6 4.3-20080202-1The GNU Standard C++ Library v3
ii  libtiff4   3.8.2-7   Tag Image File Format (TIFF) libra
ii  zlib1g 1:1.2.3.3.dfsg-11 compression library - runtime

Versions of packages capi4hylafax recommends:
pn  hylafax-server (no description available)
pn  isdnactivecards(no description available)



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#418148: The 2nd Debian Openoffice.org bug triage - bug #418148

2008-02-19 Thread Christopher Zimmermann
Now for me the bug is fixed. No hangs or lockups anymore. Thanks!


pgpXREpCfdFIx.pgp
Description: PGP signature


Bug#452284: xaos: Only applies to fixed-size windows managers

2007-11-21 Thread Christopher Zimmermann
Package: xaos
Version: 3.2-6
Followup-For: Bug #452284


Hello,

sorry for the precipitant bug report. I just found out that the reason
was not the amd64 architecture, but my window manager. I use
ion3/particleman. xaos seems to be offended by the size restrictions it
gets from my wm. It works if I start xaos in detached mode and then
attach it to a fixed-size frame.

Christopher



-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable'), (30, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-2-amd64 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xaos depends on:
ii  libaa1  1.4p5-32 ascii art library
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libgpmg11.19.6-25General Purpose Mouse - shared lib
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxxf86dga12:1.0.2-1X11 Direct Graphics Access extensi
ii  libxxf86vm1 1:1.0.1-2X11 XFree86 video mode extension l
ii  zlib1g  1:1.2.3.3.dfsg-6 compression library - runtime

xaos recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#452284: xaos segfaults on amd64

2007-11-21 Thread Christopher Zimmermann
Package: xaos
Version: 3.2-6
Severity: important


Hi!

on my amd64 box xaos immediately segfaults at startup:

[EMAIL PROTECTED]:~% xaos
zsh: segmentation fault  xaos
[EMAIL PROTECTED]:~% 

Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable'), (30, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-2-amd64 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xaos depends on:
ii  libaa1  1.4p5-32 ascii art library
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libgpmg11.19.6-25General Purpose Mouse - shared lib
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxxf86dga12:1.0.2-1X11 Direct Graphics Access extensi
ii  libxxf86vm1 1:1.0.1-2X11 XFree86 video mode extension l
ii  zlib1g  1:1.2.3.3.dfsg-6 compression library - runtime

xaos recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#450499: texmacs segfaults on amd64

2007-11-07 Thread Christopher Zimmermann
On Wed, 7 Nov 2007 15:36:10 -0500
"Kamaraju Kusumanchi" <[EMAIL PROTECTED]> wrote:

> On Nov 7, 2007 12:06 PM, Christopher Zimmermann <[EMAIL PROTECTED]> wrote:
> > Package: texmacs
> > Version: 1:1.0.6.11-1
> > Severity: important
> >
> > This is what I got when I tried to start texmacs
> >
> > % source/texmacs% texmacs
> > texmacs.bin: Symbol `scm_i_freelist' has different size in shared object, 
> > consider re-linking
> > TeXmacs] With linked TrueType support
> > zsh: segmentation fault  texmacs
> > % source/texmacs%
> >
> 
> Please install the guile 1.8.2+1-2 packages to get rid of the
> segmentation fault.
> The issue is like this. Guile's latest version in unstable has reenabled 
> threads
> and the threaded guile libs are binary incompatible with the non threaded
> libraries. So please install guile 1.8.2+1-2 from unstable and let us know if
> the problem goes away.
> 
> For more info please see 
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=439923
> 
> hth
> raju
> 

Yeah, thanks. This helped. I had to upgrade guile-libs and it works
again.

Thanks, Christopher Zimmermann


pgp9233u4pGTM.pgp
Description: PGP signature


Bug#450499: texmacs segfaults on amd64

2007-11-07 Thread Christopher Zimmermann
Package: texmacs
Version: 1:1.0.6.11-1
Severity: important

This is what I got when I tried to start texmacs

% source/texmacs% texmacs
texmacs.bin: Symbol `scm_i_freelist' has different size in shared object, 
consider re-linking
TeXmacs] With linked TrueType support
zsh: segmentation fault  texmacs
% source/texmacs%

A simple
apt-get source texmacs
debuild -us -us -rfakeroot
dpkg -i texmacs_1.0.deb

solved the issue

Thanks, 
Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable'), (30, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-2-amd64 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages texmacs depends on:
ii  groff   1.18.1.1-13  GNU troff text-formatting system
ii  gs-gpl  8.56.dfsg.1-1.1  The GPL Ghostscript PostScript int
ii  guile-1.8-libs  1.8.1+1-5Main Guile libraries
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.2-3GCC support library
ii  libgmp3c2   2:4.2.2+dfsg-1   Multiprecision arithmetic library
ii  libltdl31.5.22-4 A system independent dlopen wrappe
ii  libstdc++6  4.2.2-3  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  texlive-base2007-12  TeX Live: Essential programs and f
ii  texlive-base-bin2007-14  TeX Live: Essential binaries
ii  texlive-extra-utils 2007-14  TeX Live: TeX auxiliary programs
ii  texmacs-common  1:1.0.6.11-1 WYSIWYG mathematical text editor u
ii  xbase-clients   1:7.2.ds2-2  miscellaneous X clients
ii  zlib1g  1:1.2.3.3.dfsg-6 compression library - runtime

Versions of packages texmacs recommends:
ii  imagemagick7:6.2.4.5.dfsg1-2 Image manipulation programs
ii  ispell 3.1.20.0-4.4  International Ispell (an interacti
ii  libjpeg-progs  6b-14 Programs for manipulating JPEG fil
ii  librsvg2-bin   2.18.2-1  command-line and graphical viewers
ii  libtiff-tools  3.8.2-7   TIFF manipulation and conversion t
ii  netpbm 2:10.0-11 Graphics conversion tools
pn  texmacs-extra-fonts(no description available)
ii  xfig   1:3.2.5-rel-2 Facility for Interactive Generatio

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#446213: vorbis-tools: ogginfo coredumps on strange tags

2007-10-11 Thread Christopher Zimmermann
Package: vorbis-tools
Version: 1.1.1-14
Severity: minor

I get the following coredump on certain ogg files.
I'll put the offending ogg file on 
ftp://madroach.dyndns.org/kaktus.ogg
and leave it there for some weeks.

Thanks!


=== Backtrace: =
/lib/libc.so.6[0x2b1f2d3a]
/lib/libc.so.6(cfree+0x8c)[0x2b1f2d39d58c]
ogginfo[0x401c84]
ogginfo[0x402082]
ogginfo[0x402bc7]
/lib/libc.so.6(__libc_start_main+0xf4)[0x2b1f2d345b44]
ogginfo[0x401639]
=== Memory map: 
0040-00406000 r-xp  08:02 2150098
/usr/bin/ogginfo
00605000-00606000 rw-p 5000 08:02 2150098
/usr/bin/ogginfo
00606000-0064a000 rw-p 00606000 00:00 0  [heap]
2b1f2cb59000-2b1f2cb76000 r-xp  08:02 1060684
/lib/ld-2.6.1.so
2b1f2cb76000-2b1f2cb79000 rw-p 2b1f2cb76000 00:00 0 
2b1f2cb79000-2b1f2ccb1000 r--p  08:02 65164  
/usr/lib/locale/locale-archive
2b1f2ccb1000-2b1f2ccb3000 rw-p 2b1f2ccb1000 00:00 0 
2b1f2ccb3000-2b1f2ccba000 r--s  08:02 69568  
/usr/lib/gconv/gconv-modules.cache
2b1f2cd75000-2b1f2cd77000 rw-p 0001c000 08:02 1060684
/lib/ld-2.6.1.so
2b1f2cd77000-2b1f2cd94000 r-xp  08:02 2410985
/usr/lib/libvorbis.so.0.4.0
2b1f2cd94000-2b1f2cf93000 ---p 0001d000 08:02 2410985
/usr/lib/libvorbis.so.0.4.0
2b1f2cf93000-2b1f2cfa2000 rw-p 0001c000 08:02 2410985
/usr/lib/libvorbis.so.0.4.0
2b1f2cfa2000-2b1f2d022000 r-xp  08:02 1060697
/lib/libm-2.6.1.so
2b1f2d022000-2b1f2d221000 ---p 0008 08:02 1060697
/lib/libm-2.6.1.so
2b1f2d221000-2b1f2d223000 rw-p 0007f000 08:02 1060697
/lib/libm-2.6.1.so
2b1f2d223000-2b1f2d228000 r-xp  08:02 2413386
/usr/lib/libogg.so.0.5.3
2b1f2d228000-2b1f2d327000 ---p 5000 08:02 2413386
/usr/lib/libogg.so.0.5.3
2b1f2d327000-2b1f2d328000 rw-p 4000 08:02 2413386
/usr/lib/libogg.so.0.5.3
2b1f2d328000-2b1f2d475000 r-xp  08:02 1060689
/lib/libc-2.6.1.so
2b1f2d475000-2b1f2d675000 ---p 0014d000 08:02 1060689
/lib/libc-2.6.1.so
2b1f2d675000-2b1f2d678000 r--p 0014d000 08:02 1060689
/lib/libc-2.6.1.so
2b1f2d678000-2b1f2d67a000 rw-p 0015 08:02 1060689
/lib/libc-2.6.1.so
2b1f2d67a000-2b1f2d681000 rw-p 2b1f2d67a000 00:00 0 
2b1f2d681000-2b1f2d68e000 r-xp  08:02 1060652
/lib/libgcc_s.so.1
2b1f2d68e000-2b1f2d88e000 ---p d000 08:02 1060652
/lib/libgcc_s.so.1
2b1f2d88e000-2b1f2d88f000 rw-p d000 08:02 1060652
/lib/libgcc_s.so.1
2b1f3000-2b1f30021000 rw-p 2b1f3000 00:00 0 
2b1f30021000-2b1f3400 ---p 2b1f30021000 00:00 0 
7fff7df3c000-7fff7df51000 rw-p 7fff7df3c000 00:00 0  [stack]
ff60-ff601000 r-xp  00:00 0  [vdso]


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable'), (30, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-2-amd64 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages vorbis-tools depends on:
ii  libao2  0.8.8-3  Cross Platform Audio Output Librar
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libcurl3-gnutls 7.17.0-1 Multi-protocol file transfer libra
ii  libflac81.2.1-1  Free Lossless Audio Codec - runtim
ii  libogg0 1.1.3-2  Ogg Bitstream Library
ii  libspeex1   1.1.12-3 The Speex Speech Codec
ii  libvorbis0a 1.2.0.dfsg-2 The Vorbis General Audio Compressi
ii  libvorbisenc2   1.2.0.dfsg-2 The Vorbis General Audio Compressi
ii  libvorbisfile3  1.2.0.dfsg-2 The Vorbis General Audio Compressi

vorbis-tools recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#445356: wireless-tools: post-down script should check if interface still exists

2007-10-05 Thread Christopher Zimmermann
Package: wireless-tools
Version: 29~pre22-1
Severity: minor

The post-down script should check if the interface still exists. For
example the madwifi script could already have deleted the VAP.


--- /etc/network/if-post-down.d/wireless-tools.old 2007-10-05 
10:35:16.0 +0200
+++ /etc/network/if-post-down.d/wireless-tools  2007-10-05 10:34:58.0 
+0200
@@ -6,6 +6,9 @@
   exit 0
 fi
 
+# madwifi-tools could have taken down the VAP already.
+/sbin/iwconfig $IFACE 2>&1 |grep 'No such device' && exit 0
+
 if [ -n "$IF_WIRELESS_MODE" ]; then
   $IWCONFIG "$IFACE" mode auto
 fi

 kind regards,
 Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21-2-amd64 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages wireless-tools depends on:
ii  libc6 2.6.1-1GNU C Library: Shared libraries
ii  libiw29   29~pre22-1 Wireless tools - library

wireless-tools recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#434695: bozohttpd: doesn't support .xhtml mimetype

2007-07-25 Thread Christopher Zimmermann
Package: bozohttpd
Severity: wishlist

Hi!

There is no entry for xhtml documents in the content-bozo.c source file.
I'm not sure, but I think this line would be sufficient:

 { ".xhtml",  "application/xhtml+xml","",     
"", NULL },

Regards, 
Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21-2-amd64 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#432590: libcf-ocaml: The function nearest_incr in functer Cf_rbtree.Map doesn't work.

2007-07-10 Thread Christopher Zimmermann
Package: libcf-ocaml
Version: 0.8-1
Severity: normal

Hi!

nearest_incr in Cf_rbtree.Map produces wrong results. Here is a sample
script:


module Oint = struct type t = int  let compare = compare end (*Normal ordering 
for red-black-tree*)
module Rbtree = Cf_rbtree.Map (Oint)
open Rbtree

let tree = of_list (List.map (fun a -> (a,())) [9;1;8;3;7;5;4])

let l = Cf_seq.to_list (nearest_incr 5 tree)

let p (i,()) = print_int i; print_newline()

let () =
  List.iter p l


The output looks like this:

1
3
4
5
7
8
9

But it should be 5 7 8 9.

Maybe I will have some time to look into this in some weeks...

Christopher

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.18-4-amd64 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libcf-ocaml depends on:
ii  libc6 2.5-9  GNU C Library: Shared libraries
ii  ocaml-base-nox [ocaml-base-no 3.09.2-9   Runtime system for ocaml bytecode 

libcf-ocaml recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#421868: cups-pdf: gs hangs eating all memory when printing certain files

2007-05-02 Thread Christopher Zimmermann
Package: cups-pdf
Version: 2.4.2-3
Severity: critical
Tags: patch
Justification: breaks the whole system

Hi!

When printing certain files via cups-pdf, gs runs forever using all cpu
and slowly eating all memory. In consequence the system becomes
unresponsive after a few seconds and therefore unusable.
If you think this bug is not critical, please tell me, so I know better
next time.
A typical example in our environment would be a MS Excel user printing
to the cups-pdf printer using dim borderlines. If you'd like an example
.ps file I can provide one.
Actually this seems to be a bug in gs-esp, but since I managed to fix it
in cups-pdf, I file it against cups-pdf.

I could fix it by adding -c .setpdfwrite in the config:
GSCall %s -q -dCompatibilityLevel=%s -dNOPAUSE -dBATCH -dSAFER 
-sDEVICE=pdfwrite -sOutputFile="%s" -dAutoRotatePages=/PageByPage 
-dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode 
-dPDFSETTINGS=/prepress -c .setpdfwrite -f %s

I removed the -c save pop, since /usr/share/doc/gs-esp/Use.htm
[Improving Performance] suggests that it is not needed.

I don't really understand why this fix works and probably this has to be
fixed in gs, too. But the default of gs should be changed anyway as far
as I understand the -c .setpdfwrite option.
I don't think it is the same bug as #267423 since for me gs never
finishes.


Kind Regards, 

Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.20.5
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#418148: openoffice.org: openoffice hangs when selecting the "Macro" tab in any frame menu

2007-05-01 Thread Christopher Zimmermann
ok, I use gij (Free software foundation).


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#319069: console-data: Fixed by kernel 2.6

2007-05-01 Thread Christopher Zimmermann
Package: console-data
Followup-For: Bug #319069

Hi, 

I don't use the sun any more. But I remember that upgradeing to the 2.6
kernels fixed the issue. As far as I know the 2.6 kernels abstract all
keyboard mappings to the pc keycodes.
Since it seems like this will not be fixed for 2.4 kernels you could as
well close the bug.

Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.20.5
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#221359: emacsen-common: Please close bug

2007-05-01 Thread Christopher Zimmermann
Package: emacsen-common
Followup-For: Bug #221359

Hi

I believe this report can be closed.

Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.20.5
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#421586: libconfig-general-perl: Undefined subroutine

2007-04-30 Thread Christopher Zimmermann
Package: libconfig-general-perl
Version: 2.33-1
Severity: grave
Justification: renders package unusable

Hi!

I hope reporting a grave bug is appropriate. Maybe I missed an important 
point. Anyway here is what I experienced when upgrading:

[EMAIL PROTECTED]:~/downloads% sudo dpkg -i 
libconfig-general-perl_2.31-3_all.deb 
dpkg - warning: downgrading libconfig-general-perl from 2.33-1 to 2.31-3.
(Reading database ... 104591 files and directories currently installed.)
Preparing to replace libconfig-general-perl 2.33-1 (using 
libconfig-general-perl_2.31-3_all.deb) ...
Unpacking replacement libconfig-general-perl ...
Setting up libconfig-general-perl (2.31-3) ...
[EMAIL PROTECTED]:~/downloads% perl -w -e 'use Config::General; my $conf = 
ParseConfig("/dev/null");'
[EMAIL PROTECTED]:~/downloads% sudo dpkg -i 
libconfig-general-perl_2.33-1_all.deb
(Reading database ... 104593 files and directories currently installed.)
Preparing to replace libconfig-general-perl 2.31-3 (using 
libconfig-general-perl_2.33-1_all.deb) ...
Unpacking replacement libconfig-general-perl ...
Setting up libconfig-general-perl (2.33-1) ...
[EMAIL PROTECTED]:~/downloads% perl -w -e 'use Config::General; my $conf = 
ParseConfig("/dev/null");'
Undefined subroutine &main::ParseConfig called at -e line 1.
[EMAIL PROTECTED]:~/downloads%

I can reproduce this with 2.32-1 or 2.33-1 on amd64 testing and i386 etch.
Using the 'OOP way' described in `perldoc Config::General` the behavior 
is similar.
As you can see I could easily work around this bug by downgrading.


Kind Regards, 

Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.20.5
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libconfig-general-perl depends on:
ii  perl  5.8.8-7Larry Wall's Practical Extraction 

libconfig-general-perl recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#136398: fetchmail: but please migrate the old uidl file

2007-04-11 Thread Christopher Zimmermann
Package: fetchmail
Version: 6.3.7-1
Followup-For: Bug #136398

Hi! after upgrading fetchmail today. Fetchmail started and received
thousands of old emails. In /var/lib/fetchmail/ I found the old
.fetchmail-UIDL-cache together with a smaller .fetchids file. I could
fix it by

$cat .fetchmail-UIDL-cache >.fetchids

Still my inbox has been a really BIG MESS. Maybe you could take care
that the old uidl cache file gets migrated?


Best Regards, 

Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.20.5
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages fetchmail depends on:
ii  adduser 3.102Add and remove users and groups
ii  debianutils 2.18 Miscellaneous utilities specific t
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libssl0.9.8 0.9.8c-4 SSL shared libraries
ii  lsb-base3.1-23.1 Linux Standard Base 3.1 init scrip

Versions of packages fetchmail recommends:
ii  ca-certificates   20070303   Common CA Certificates PEM files

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#418640: hylafax-server: missing newline in /var/spool/hylafax/bin/common-functions line 388

2007-04-10 Thread Christopher Zimmermann
Package: hylafax-server
Version: 4.3.1-7
Severity: normal
Tags: patch


Hi, 

In /var/spool/hylafax/bin/common-functions this:

TIFF|tiff|TIF|tif)
   TraceLog "Using tiff2pdf"
   name="`basename $1 .tif`" $TIFF2PDF  -o $TMPDIR/$name.pdf $1 echo 
"$TMPDIR/$name.pdf"
   esac

should be changed to

TIFF|tiff|TIF|tif)
   TraceLog "Using tiff2pdf"
   name="`basename $1 .tif`" $TIFF2PDF  -o $TMPDIR/$name.pdf $1
   echo "$TMPDIR/$name.pdf"
   esac


Regards, 

Christopher Zimmermann


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.20.5
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#418148: openoffice.org: openoffice hangs when selecting the "Macro" tab in any frame menu

2007-04-07 Thread Christopher Zimmermann
I tried again and waited for several minutes, but it didn't wake up. I
use the current testing version 2.0.4.dfsg.2-5etch1. Should I maybe try
if I can reproduce it with debian's 2.2.0-1 experimental version?

Jim Watson <[EMAIL PROTECTED]> wrote:
> Tested on upstream (PPC 2.1 maho and 2.2.0 GNU/Linux SPARC my own build)
> In each case there is a brief "hang" for about 8 seconds after the
> Macro pane first displays (OOo is not responsive to user input), then
> it wakes up and all is OK. This happens on the first access to Insert-
>  >Frame->Macro each time after restarting OOo.
>
> jim
>
>


pgpo0GPd8baGk.pgp
Description: PGP signature


Bug#418148: openoffice.org: openoffice hangs when selecting the "Macro" tab in any frame menu

2007-04-07 Thread Christopher Zimmermann
I have openoffice.org-gcj installed. Not other JREs like blackhawk or
whatever name they have. Are you able to reproduce this bug?

Rene Engelhard <[EMAIL PROTECTED]> wrote:
> tag 418148 + moreinfo
> thanks
>
> Hi,
>
> Christopher Zimmermann wrote:
> > Steps to reproduce in oowriter:
> > Insert->Frame->Makro
>
> Which JRE?
> (Yee, that thing nonsesically apparently requires a JRE)
>
> The only one which really works on amd64 is gij (due to bugs in Suns
> Java)
>
> Gr??e/Regards,
>
> Ren?
> --
>  .''`.  Ren? Engelhard -- Debian GNU/Linux Developer
>  : :' : http://www.debian.org | http://people.debian.org/~rene/
>  `. `'  [EMAIL PROTECTED] | GnuPG-Key ID: 248AEB73
>`-   Fingerprint: 41FA F208 28D4 7CA5 19BB  7AD9 F859 90B0 248A EB73
>
>


pgpWy3rj1jykU.pgp
Description: PGP signature


Bug#418148: openoffice.org: openoffice hangs when selecting the "Macro" tab in any frame menu

2007-04-07 Thread Christopher Zimmermann
Package: openoffice.org
Severity: normal

Hello, 

Steps to reproduce in oowriter:
Insert->Frame->Makro


Christopher Zimmermann
-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.20.5
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#418146: openoffice.org: help system hangs using all cpu when searching

2007-04-07 Thread Christopher Zimmermann
Package: openoffice.org
Severity: normal


Hello, 

when I search for two words (like "foo bar") in the help system and
"Find in headings only" is checked. openoffice hangs and uses all cpu.
This should be easily reproducible:
Help->Openoffice.org Help->Find->Find in headings only->Search for "foo
bar"

with best regards, 

Christopher Zimmermann



-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.20.5
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#418037: xmms2: does not play mms:// streams

2007-04-06 Thread Christopher Zimmermann
Package: xmms2
Version: 0.2DrHouse-3.1
Severity: normal

Hi!

I can't play mms:// wma streams using xmms2. xmms2 manages to fetch the
metadata but just skips over the stream items in the playlist. This ist
the log output of xmms2-launcher -v:


--- Starting new xmms2d ---
 INFO: src/xmms/log.c:35: Initialized logging system :)
 INFO: src/xmms/ipc.c:868: IPC listening on 'unix:///tmp/xmms-ipc'.
DEBUG: src/xmms/ipc.c:884: IPC setup done.
DEBUG: src/xmms/plugin.c:418: Scanning directory for plugins 
(/usr/lib/xmms2/lib*.so)
DEBUG: src/xmms/plugin.c:441: Trying to load file: 
/usr/lib/xmms2/libxmms_equalizer.so
DEBUG: src/xmms/xform.c:712: Registering xform 'equalizer'
DEBUG: src/xmms/plugin.c:441: Trying to load file: 
/usr/lib/xmms2/libxmms_file.so
DEBUG: src/xmms/xform.c:712: Registering xform 'file'
DEBUG: src/xmms/plugin.c:441: Trying to load file: 
/usr/lib/xmms2/libxmms_wave.so
DEBUG: src/xmms/xform.c:712: Registering xform 'wave'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'wave header'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'wave header'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'wave header'
DEBUG: src/xmms/plugin.c:441: Trying to load file: 
/usr/lib/xmms2/libxmms_replaygain.so
DEBUG: src/xmms/xform.c:712: Registering xform 'replaygain'
DEBUG: src/xmms/plugin.c:441: Trying to load file: 
/usr/lib/xmms2/libxmms_diskwrite.so
DEBUG: src/xmms/outputplugin.c:73: Registering output 'diskwrite'
DEBUG: src/xmms/plugin.c:441: Trying to load file: 
/usr/lib/xmms2/libxmms_null.so
DEBUG: src/xmms/outputplugin.c:73: Registering output 'null'
DEBUG: src/xmms/plugin.c:441: Trying to load file: 
/usr/lib/xmms2/libxmms_nulstripper.so
DEBUG: src/xmms/xform.c:712: Registering xform 'nulstripper'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'NUL padded'
DEBUG: src/xmms/plugin.c:441: Trying to load file: 
/usr/lib/xmms2/libxmms_vorbisfile.so
DEBUG: src/xmms/xform.c:712: Registering xform 'vorbis'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'ogg/vorbis header'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'ogg/vorbis header'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'ogg/vorbis header'
DEBUG: src/xmms/plugin.c:441: Trying to load file: /usr/lib/xmms2/libxmms_mad.so
DEBUG: src/xmms/xform.c:712: Registering xform 'mad'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'mpeg header'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'mpeg header'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'mpeg header'
DEBUG: src/xmms/plugin.c:441: Trying to load file: 
/usr/lib/xmms2/libxmms_id3v2.so
DEBUG: src/xmms/xform.c:712: Registering xform 'id3v2'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'id3 header'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'id3 header'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'id3 header'
DEBUG: src/xmms/plugin.c:441: Trying to load file: 
/usr/lib/xmms2/libxmms_alsa.so
DEBUG: src/xmms/outputplugin.c:73: Registering output 'alsa'
DEBUG: src/xmms/plugin.c:441: Trying to load file: /usr/lib/xmms2/libxmms_mms.so
DEBUG: src/xmms/xform.c:712: Registering xform 'mms'
DEBUG: src/xmms/plugin.c:441: Trying to load file: /usr/lib/xmms2/libxmms_wma.so
DEBUG: src/xmms/xform.c:712: Registering xform 'wma'
DEBUG: src/xmms/magic.c:292: adding magic spec to tree 'asf header'
DEBUG: src/xmms/xform.c:712: Registering xform 'ringbuf'
DEBUG: src/xmms/xform.c:712: Registering xform 'magic'
DEBUG: src/xmms/xform.c:712: Registering xform 'converter'
DEBUG: src/xmms/sqlite.c:135: Upgrade v29->v30
DEBUG: src/xmms/sqlite.c:137: done
DEBUG: src/xmms/playlist.c:716: newpos! 0
 INFO: src/xmms/main.c:491: Using output plugin: alsa
DEBUG: src/xmms/output.c:877: Trying to open output
DEBUG: src/xmms/output.c:888: Using buffersize 32768
DEBUG: src/plugins/alsa/alsa.c:214: Probing device: default
DEBUG: src/xmms/main.c:136: Running scripts in 
/home/madroach/.config/xmms2/startup.d
exec: 3: /usr/bin/xmms2-medialib-updater: not found
DEBUG: src/xmms/ipc.c:552: Client connected
DEBUG: src/xmms/main.c:258: Client xmms2-cli with protocol version 1 sent hello!
DEBUG: src/xmms/ipc.c:363: disconnect was true!
DEBUG: src/xmms/ipc.c:466: Destroying client!
DEBUG: src/xmms/ipc.c:552: Client connected
DEBUG: src/xmms/main.c:258: Client xmms2-cli with protocol version 1 sent hello!
DEBUG: src/xmms/xform.c:774: Trying plugin 'converter'
DEBUG: src/xmms/xform.c:774: Trying plugin 'magic'
DEBUG: src/xmms/xform.c:770: Skipping plugin 'ringbuf'
DEBUG: src/xmms/xform.c:774: Trying plugin 'wma'
DEBUG: src/xmms/xform.c:774: Trying plugin 'mms'
DEBUG: src/xmms/xform.c:776: Plugin 'mms' matched
DEBUG: src/xmms/outputplugin.c:223: Running status changed... 1
DEBUG: src/plugins/alsa/alsa.c:346: Opening device: default
DEBUG: src/xmms/ipc.c:363: disconnect was true!
DEBUG: src/xmms/ipc.c:466: Destroying client!
DEBUG: src/xmms/xform.c:837: Not in one of 112 goal-types
DEBUG: src/xmms/xform.c:774: Trying plugin 'converter'
DEBUG: 

Bug#417344: capi4hylafaxconfig works only using bash

2007-04-02 Thread Christopher Zimmermann
Package: capi4hylafax
Version: 01.03.00.99.svn.300-4
Severity: minor
Tags: patch

Hi!

The capi4hylafaxconfig works not using dash. bash works well. Therefore
the easiest fix would maybe be to change the shebang to /bin/bash ?

This is the error:
server:/usr/share/doc/capi4hylafax# dash /usr/sbin/capi4hylafaxconfig 
/usr/sbin/capi4hylafaxconfig: 30: function: not found
server:/usr/share/doc/capi4hylafax# 

This script also uses dialog. Maybe the package should recommend dialog?


Have a nice day!

Christopher Zimmermann


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.20.4
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#319752: xserver-xfree86: [sunffb] Blanking does not blank X, but the console

2007-01-18 Thread Christopher Zimmermann
Sorry, but I gave my sparc away some months ago, so I can't help you
with this question. But as far as I am concerned you may close the
bug :)

Christopher

On Wed, 17 Jan 2007 22:39:40 +0100
Brice Goglin <[EMAIL PROTECTED]> wrote:

> Hi,
>
> About 2 years ago, you reported a bug to the Debian BTS regarding blank
> blanking the console instead of X with the sunffb driver. Did you
> reproduce this problem recently? If not, I will close this bug in the
> next weeks.
>
> Thanks,
> Brice
>
>


pgp2yoD05BzFF.pgp
Description: PGP signature


Bug#326975: shouldn't xinetd provide inet-superserver?

2006-11-16 Thread Christopher Zimmermann
Package: xinetd
Version: 2.3.14-1
Followup-For: Bug #326975

Hi!

For the people who like to use only xinetd it should be possible to
remove openbsd-inetd and the like.
Therefore xinetd should probably provide inet-superserver?

Christopher


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.17.13
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#376731: Fix did break "Status: 302" replies

2006-08-27 Thread Christopher Zimmermann
Tags: fixed patch

Hi!

The fix you used for this bug did break something else. Bozohttpd now
returns this:

Status: 302
X-Powered-By: PHP/5.1.4-0.1
...20060517-3

instead of this:

HTTP/1.0 302
X-Powered-By: PHP/5.1.4-0.1
...

The former confuses browsers which will try to download the document
instead of parsing the HTTP header and following the Redirection.

I could fix it by just using the old code from 20060517-1 and deleteing
the \r\n there:

if (strcasecmp(val, "status") == 0) {
debug((DEBUG_OBESE, "process_cgi:  writing HTTP header "
"from status %s ..", str));
bozoprintf("%s %s\r\n", request->hr_proto, str);
 - I just removed these.
bozoflush(stdout);
write_header = 0;
break;
}

I'm not sure if this will break something else, but for me it works out
well.

Thanks, 
Christopher


pgpt29Ple7W9E.pgp
Description: PGP signature


Bug#374144: xpp: waiting...

2006-08-05 Thread Christopher Zimmermann
So please do this upload. I still have to do
apt-get build-dep xpp
apt-get -b source xpp
to install xpp :(

Thanks, 
Christopher Zimmermann


pgpCX5fqrBgSP.pgp
Description: PGP signature


Bug#379757: perl: require 'sys/ioctl.ph' causes warnings

2006-07-25 Thread Christopher Zimmermann
Package: perl
Version: 5.8.8-4
Severity: minor
Tags: patch

Hi, 

running

perl -w -e 'require  "sys/ioctl.ph"'

causes these warnings:

Constant subroutine __USE_POSIX undefined at /usr/lib/perl/5.8/features.ph line 
8.
Constant subroutine __USE_POSIX2 undefined at /usr/lib/perl/5.8/features.ph 
line 9.
Constant subroutine __USE_POSIX199309 undefined at 
/usr/lib/perl/5.8/features.ph line 10.
Constant subroutine __USE_POSIX199506 undefined at 
/usr/lib/perl/5.8/features.ph line 11.
Constant subroutine __USE_XOPEN undefined at /usr/lib/perl/5.8/features.ph line 
12.
Constant subroutine __USE_XOPEN_EXTENDED undefined at 
/usr/lib/perl/5.8/features.ph line 13.
Constant subroutine __USE_UNIX98 undefined at /usr/lib/perl/5.8/features.ph 
line 14.
Constant subroutine __USE_LARGEFILE undefined at /usr/lib/perl/5.8/features.ph 
line 16.
Constant subroutine __USE_LARGEFILE64 undefined at 
/usr/lib/perl/5.8/features.ph line 17.
Constant subroutine __USE_FILE_OFFSET64 undefined at 
/usr/lib/perl/5.8/features.ph line 18.
Constant subroutine __USE_BSD undefined at /usr/lib/perl/5.8/features.ph line 
19.
Constant subroutine __USE_SVID undefined at /usr/lib/perl/5.8/features.ph line 
20.
Constant subroutine __USE_MISC undefined at /usr/lib/perl/5.8/features.ph line 
21.
Constant subroutine __USE_GNU undefined at /usr/lib/perl/5.8/features.ph line 
22.
Constant subroutine __USE_REENTRANT undefined at /usr/lib/perl/5.8/features.ph 
line 23.
Constant subroutine _POSIX_SOURCE undefined at /usr/lib/perl/5.8/features.ph 
line 48.
Constant subroutine _POSIX_C_SOURCE undefined at /usr/lib/perl/5.8/features.ph 
line 50.
Constant subroutine _XOPEN_SOURCE undefined at /usr/lib/perl/5.8/features.ph 
line 52.
Constant subroutine _XOPEN_SOURCE_EXTENDED undefined at 
/usr/lib/perl/5.8/features.ph line 54.
Constant subroutine _LARGEFILE64_SOURCE undefined at 
/usr/lib/perl/5.8/features.ph line 56.
Constant subroutine _LARGEFILE_SOURCE undefined at 
/usr/lib/perl/5.8/features.ph line 98.
Constant subroutine __USE_ISOC99 undefined at /usr/lib/perl/5.8/features.ph 
line 102.
Constant subroutine __GNU_LIBRARY__ undefined at /usr/lib/perl/5.8/features.ph 
line 146.

changing line 3 in /usr/lib/perl/5.8.8/features.ph from

no warnings 'redefine';

to

no warnings qw(redefine misc);

suppressed the warnings.

Kind Regards, 
Christopher Zimmermann


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.17.6
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages perl depends on:
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libdb4.4  4.4.20-3   Berkeley v4.4 Database Libraries [
ii  libgdbm3  1.8.3-3GNU dbm database routines (runtime
ii  perl-base 5.8.8-4The Pathologically Eclectic Rubbis
ii  perl-modules  5.8.8-4Core Perl modules

Versions of packages perl recommends:
ii  perl-doc  5.8.8-4Perl documentation

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#376731: Reproducing this bug

2006-07-18 Thread Christopher Zimmermann
Hi, here's a way to reproduce this bug:

Start bozohttpd with cgi support for perl:
bozohttpd -C .pl /usr/bin/perl
Host the following perl script:
__/foo.pl_
#!/usr/bin/perl -w

use strict;

print <<"EOF";
Content-type: text/plain

Hello, World!
EOF
^^
Notice the empty line between the 'Content-type: text/plain' and the
'Hello, World!'.
Now access the script using telnet or netcat:

$ echo "GET /blub.pl HTTP/1.0\n" |nc madroach.dyndns.org 80

As result you will get:

__
HTTP/1.0 200 OK
Content-type: text/plain
Hallo, Welt!
^^

Notice that the empty line is gone.
A browser will falsely interpret the content of a generated page up to
the first empty line as part of the HTTP header.

Regards, 
Christopher


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#377967: bozohttpd: special characters in URLs don't work anymore since 20060517-1

2006-07-12 Thread Christopher Zimmermann
Package: bozohttpd
Severity: normal

Hi, 

since 20060517-1 bozohttpd cannot handle URLs with special characters
like umlauts (èéäöüß) anymore. For example
http://abi.madroach.dyndns.org/gallery/Ausflüge/index.html
did work in 20050410-4 and stopped working in 20060517-1.

Thanks, 
Christopher Zimmermann


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.17.4
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#377481: gnucash-docs: shouldn't this package at least recommend or suggest yelp?

2006-07-09 Thread Christopher Zimmermann
Package: gnucash-docs
Version: 1.9.0-1
Severity: minor

Hi, I just installed gnucash and gnucash-docs. It took me quiet a while
to figure out that you need yelp to display gnome help files. Maybe
gnucash-docs should give you a hint in such situations by
suggesting/recommending yelp?

Thanks, 
Christopher


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.17.3
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages gnucash-docs depends on:
ii  docbook-xml   4.4-5  standard XML documentation system,

gnucash-docs recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#376731: phpbb2: overall_header.tpl is not completely included in generated html

2006-07-04 Thread Christopher Zimmermann
Package: phpbb2
Severity: normal

Hi!
When I look at the html code I get from phpbb, then the first part of
the headers is missing.
I inserted some comments in the headers at
/etc/phpbb2/templates/subSilver/overall_header.tpl:




{META}

{NAV_LINKS}

{SITENAME} :: {PAGE_TITLE}


The generated html looks like this:



TestForum :: Index


So somehow the first part of the template is lost. Still the forum looks
nice. The browser seems to get along with those broken htmls. Therefore
this bug is not very urgend, but still it is not very nice.

Regards, 
Christopher

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.17.3
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#374142: cupsys: applies only to jobs via samba

2006-06-17 Thread Christopher Zimmermann
Package: cupsys
Version: 1.2.1-2
Followup-For: Bug #374142

I just discovered that this problem only applies to jobs delivered via
samba. Still, jobs dispatched by windows machines can set the option to
print more then one page on a single page, while they connot enable (or
disable) duplex printing.
Could this be related to #259774?? If yes, I could not get the described
debugging output. How do get these debugging messages?

Regards, 
Christopher


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16.20
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages cupsys depends on:
ii  adduser  3.87Add and remove users and groups
ii  debconf [debconf-2.0]1.5.1   Debian configuration management sy
ii  gs-esp   8.15.1.dfsg.1-2 The Ghostscript PostScript interpr
ii  libc62.3.6-13GNU C Library: Shared libraries
ii  libcupsimage21.2.1-2 Common UNIX Printing System(tm) - 
ii  libcupsys2   1.2.1-2 Common UNIX Printing System(tm) - 
ii  libdbus-1-2  0.61-6  simple interprocess messaging syst
ii  libgnutls13  1.3.5-1.1   the GNU TLS library - runtime libr
ii  libldap2 2.1.30-13   OpenLDAP libraries
ii  libpam0g 0.79-3.1Pluggable Authentication Modules l
ii  libpaper11.1.17  Library for handling paper charact
ii  libslp1  1.2.1-5 OpenSLP libraries
ii  lsb-base 3.1-10  Linux Standard Base 3.1 init scrip
ii  patch2.5.9-4 Apply a diff file to an original
ii  perl-modules 5.8.8-4 Core Perl modules
ii  poppler-utils [xpdf-util 0.4.5-4 PDF utilitites (based on libpopple
ii  procps   1:3.2.6-2.2 /proc file system utilities
ii  zlib1g   1:1.2.3-11  compression library - runtime

Versions of packages cupsys recommends:
ii  cupsys-client 1.2.1-2Common UNIX Printing System(tm) - 
pn  foomatic-filters   (no description available)
ii  smbclient 3.0.22-1   a LanManager-like simple client fo

-- debconf information excluded


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#374144: xpp: drop-down menus are broken on amd64

2006-06-17 Thread Christopher Zimmermann
Package: xpp
Version: 1.5-4.1
Severity: normal

Hi, 

on amd64 the drop-down menus in xpp display no text. They are completely
white. Only the selection is displayed as a black horizontal bar. xpp in
an ia32 chroot works well. Maybe you could give me some hints where to
start looking for the problem?

Regards, 
Christopher


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16.20
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages xpp depends on:
ii  libc6 2.3.6-13   GNU C Library: Shared libraries
ii  libcupsys21.2.1-2Common UNIX Printing System(tm) - 
ii  libfltk1.11.1.7-2Fast Light Toolkit shared librarie
ii  libgcc1   1:4.1.0-4  GCC support library
ii  libstdc++64.1.0-4The GNU Standard C++ Library v3

xpp recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#374142: cupsys: duplex printing is broken since 1.2

2006-06-17 Thread Christopher Zimmermann
Package: cupsys
Severity: important

Hi, 

Since I upgraded to cups 1.2 (testing) duplexing no longer works. I have
no clue why. Printing two pages on one still works. I already tried to
make duplexing the default behavior instead of printing with
lp -o Duplex=DuplexTumble
How can I try to debug this problem? I have no clue were to look for the
problem.

Regards, 
Christopher


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16.20
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#372114: Pressing CTRL+ALT+Backspace causes xdm to delete pidfile

2006-06-08 Thread Christopher Zimmermann
Package: xdm
Version: 1:1.0.4-2
Severity: normal

Hi,
I observed the following behavior of xdm: Pressing CTRL+ALT+Backspace 
kills the xserver in which xdm spawned. xdm will respawn it. That's ok. 
But to that it deletes it's pidfile although it keeps its pid.
After this invoke-rc.d xdm stop won't work anymore.
I think this looks like an upstream bug.

Regards, 
Christopher Zimmermann


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16.20
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages xdm depends on:
ii  cpp4:4.0.3-4 The GNU C preprocessor (cpp)
ii  debconf [debconf-2.0]  1.5.1 Debian configuration management sy
ii  libc6  2.3.6-7   GNU C Library: Shared libraries
ii  libice66.9.0.dfsg.1-6+b1 Inter-Client Exchange library
ii  libpam0g   0.79-3.1  Pluggable Authentication Modules l
ii  libselinux11.30-1SELinux shared libraries
ii  libsm6 1:1.0.0-4 X11 Session Management library
ii  libx11-6   2:1.0.0-6 X11 client-side library
ii  libxau61:1.0.0-3 X11 authorisation library
ii  libxaw71:1.0.1-5 X11 Athena Widget library
ii  libxdmcp6  1:1.0.0-4 X11 Display Manager Control Protoc
ii  libxext6   1:1.0.0-4 X11 miscellaneous extension librar
ii  libxinerama1   1:1.0.1-4 X11 Xinerama extension library
ii  libxmu61:1.0.1-3 X11 miscellaneous utility library
ii  libxpm41:3.5.4.2-3   X11 pixmap library
ii  libxt6 1:1.0.0-5 X11 toolkit intrinsics library
ii  x11-common 1:7.0.20  X Window System (X.Org) infrastruc
ii  xbase-clients  1:7.0.1-2 miscellaneous X clients

xdm recommends no packages.

-- debconf information:
  xdm/stop_running_server_with_children: false
  xdm/daemon_name: /usr/bin/X11/xdm
* shared/default-x-display-manager: xdm


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#370644: grub: workaround

2006-06-07 Thread Christopher Zimmermann
Package: grub
Version: 0.97-10
Followup-For: Bug #370644

Hi!

This patch fixes the issue for instant. But there is still work to be 
done till this lockold feature does it's job right. What if the default 
entry is not the first one like with "default = 2"?
line 935-936:
  # do not lockold for the first entry
  [ $counter -eq 1 ] && do_lockold=false

Should memtest be locked by lockold? BSD kernels lack the lockold 
feature at all.

Here is the (paranoic) workaround enabling lockold for memtest and bsd 
even if they might be the default:
--- update-grub 2006-06-07 11:52:19.0 +0200
+++ update-grub 2006-06-07 12:04:24.0 +0200
@@ -884,7 +884,7 @@
 else
   kernel=/boot/loader
 fi
-write_kernel_entry "" "" "" "$grub_root_device" "$kernel" "" "" "" "true"
+write_kernel_entry "" "" "" "$grub_root_device" "$kernel" "" "" "" "true" 
"$lockold"
   ;;
 esac
 
@@ -967,7 +967,7 @@
echo "Found kernel: $kernel" >&2
 
write_kernel_entry "$kernelVersion" "" "" 
"$grub_root_device" \
-   "$kernel" "$currentOpt" "" "$initrd" "false"
+   "$kernel" "$currentOpt" "" "$initrd" "false" "$lockold"
fi
done
 fi

Hope this helps.

Regards, 
Christopher

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16.20
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#369868: grub: possible fix?

2006-06-07 Thread Christopher Zimmermann
Package: grub
Version: 0.97-10
Followup-For: Bug #369868

Hi, 
I had the same problem and could fix it by doing a simple

echo >/boot/grub/default

It seems like grub doesn't manage to create this file on its own. It's 
neither able change it's size. A simple touch /boot/grub/default did not 
do the job. Now the question would be what happens if the default number 
connot be represented in a single byte. Then do a

echo blub >/boot/grub/default

But I don't have more than 10 
boot menu entries.
Now after all this looks like an upstream bug, doesn't it?
Is this related to #350398??

Regards, 
Christopher Zimmermann


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16.20
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#360330: crimson: new upstream release 0.4.9

2006-04-01 Thread Christopher Zimmermann
Package: crimson
Version: 0.4.8-1+b1
Severity: wishlist

Hi, 
there is a new upstream release. Is there anything difficult upgrading
it in debian?

Regards, 
Christopher Zimmermann


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: sparc (sparc64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages crimson depends on:
ii  libc6   2.3.6-3  GNU C Library: Shared libraries an
ii  libgcc1 1:4.0.3-1GCC support library
ii  libsdl-mixer1.2 1.2.6-1.1+b1 mixer library for Simple DirectMed
ii  libsdl-ttf1.2   1.2.2-6  TrueType font library for Simple D
ii  libsdl1.2debian 1.2.9-4  Simple DirectMedia Layer
ii  libstdc++6  4.0.3-1  The GNU Standard C++ Library v3
ii  zlib1g  1:1.2.3-9compression library - runtime

crimson recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#359306: liballegro4.2: Broken on sparc: Bus error

2006-03-27 Thread Christopher Zimmermann
Package: liballegro4.2
Version: 2:4.2.0-1
Severity: important

Hi, 
on my sparc programs using allegro fail with a "Bus error".
In the allegro-demo this happens just after fading out from the
introduction animation. I know that such a "Bus error" can be caused by
access to a not correctly aligned integer like so:

int main() {
char test[8];

*(int *)(test+1) = 0;

return 0;
}

If I can assist in debugging this thing, let me know.

Regards, 
Christopher Zimmermann


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: sparc (sparc64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages liballegro4.2 depends on:
ii  libasound21.0.10-2   ALSA library
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li
ii  libxext6  6.9.0.dfsg.1-4 X Window System miscellaneous exte
ii  libxpm4   6.9.0.dfsg.1-4 X pixmap library
ii  libxxf86dga1  6.9.0.dfsg.1-4 X Direct Graphics Access extension
ii  libxxf86vm1   6.9.0.dfsg.1-4 X Video Mode selection library
ii  xlibs 6.9.0.dfsg.1-4 X Window System client libraries m

Versions of packages liballegro4.2 recommends:
pn  liballegro4.2-plugin-jack  (no description available)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#358965: bash: please include a PROMPT_COMMAND for screen

2006-03-25 Thread Christopher Zimmermann
Package: bash
Version: 3.1-2
Severity: wishlist
Tags: patch

Hi, 
it would be nice to be able to use the feature of screen described in
info screen Window Naming Dynamic.
Bash could easily support this feature by adding three lines to
/etc/skel/.bashrc:

 # If this is an xterm set the title to [EMAIL PROTECTED]:dir
 case "$TERM" in
 xterm*|rxvt*)
 PROMPT_COMMAND='echo -ne "\033]0;[EMAIL PROTECTED]: ${PWD/$HOME/~}\007"'
 ;;
+screen*)
+PROMPT_COMMAND='echo -ne "\033k\033\134"'
+;;
 *)
 ;;
 esac

Regards,
Christopher

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: sparc (sparc64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages bash depends on:
ii  base-files3.1.11 Debian base system miscellaneous f
ii  debianutils   2.15.3 Miscellaneous utilities specific t
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libncurses5   5.5-1  Shared libraries for terminal hand

bash recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#214083: screen: still applies at least to mc and w3m

2006-03-25 Thread Christopher Zimmermann
Package: screen
Version: 4.0.2-4.1
Followup-For: Bug #214083

Hi,
I just tried it for w3m and mc on console and xterm.
Both work without screen and don't work in screen.
You should be able to reproduce this quiet easily. Just try to run
w3m/mc from plain console/xterm and click on directory/link. Then try it
within screen.

Regards, 
Christopher


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: sparc (sparc64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages screen depends on:
ii  base-passwd   3.5.11 Debian base system master password
ii  debconf   1.4.71 Debian configuration management sy
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libncursesw5  5.5-1  Shared libraries for terminal hand
ii  libpam0g  0.79-3.1   Pluggable Authentication Modules l
ii  passwd1:4.0.14-9 change and administer password and

screen recommends no packages.

-- debconf information:
  screen/old_upgrade_prompt: false


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#358647: console-tools: openvt -u leaves stale utmp entries behind.

2006-03-23 Thread Christopher Zimmermann
Package: console-tools
Version: 1:0.2.3dbs-60
Severity: minor

Hi, 
When exitting a login session spawned using openvt -u, the utmp entry
does not get removed. Therefore who will still display this session
although it does no longer exist.

Regards, 
Christopher


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: sparc (sparc64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages console-tools depends on:
ii  console-common 0.7.55.1  Basic infrastructure for text cons
ii  debconf [debconf-2.0]  1.4.71Debian configuration management sy
ii  libc6  2.3.5-13  GNU C Library: Shared libraries an
ii  libconsole 1:0.2.3dbs-60 Shared libraries for Linux console
ii  sysvinit   2.86.ds1-12   System-V-like init utilities

Versions of packages console-tools recommends:
ii  console-data  2002.12.04dbs-52.2 Keymaps, fonts, charset maps, fall

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#354484: ocaml: Big_int libraries are missing

2006-02-26 Thread Christopher Zimmermann
Package: ocaml
Version: 3.09.1-3
Severity: normal

Hi, 

I just tried to run an ocaml program using Big_int. It failed.
big_int.mli, big_int.cmi and big_int.cmx are present. big_int.cma and
big_int.cmxa are missing. A snippet from the toplevel:

# Big_int.unit_big_int;;
Reference to undefined global `Big_int'

I'm not sure what this means.

Christopher


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: sparc (sparc64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15.4
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages ocaml depends on:
ii  ocaml-base [ocaml-base-3.09.1 3.09.1-3   Runtime system for ocaml bytecode 
ii  ocaml-nox [ocaml-nox-3.09.1]  3.09.1-3   ML language implementation with a 

ocaml recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352869: xserver-xorg: sunffb undefined symbol cfbCopyPlane8to1

2006-02-14 Thread Christopher Zimmermann
Package: xserver-xorg
Version: 6.9.0.dfsg.1-4
Severity: normal

Hi, 

as said in the subject, on my Sun Ultra2 the xserver fails to start:

(II) LoadModule: "sunffb"
(II) Loading /usr/X11R6/lib/modules/drivers/sunffb_drv.so
dlopen: /usr/X11R6/lib/modules/drivers/sunffb_drv.so: undefined symbol:
cfbCopyPlane8to1
(EE) Failed to load /usr/X11R6/lib/modules/drivers/sunffb_drv.so
(II) UnloadModule: "sunffb"
(EE) Failed to load module "sunffb" (loader failed, 7)

[...]

(EE) No drivers available.

I could fix it on my machine by loading the "cfb" and "cfb32" modules
manually in the xorg.conf

Load"cfb"
Load"cfb32"

Christopher


-- Package-specific info:
Contents of /var/lib/xfree86/X.roster:
xserver-xfree86
xserver-xorg

/etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum.

X server symlink status:
lrwxrwxrwx  1 root root 17 Oct 15 20:02 /etc/X11/X -> /usr/bin/X11/Xorg
-rwxr-xr-x  1 root root 1913456 Jan 18 16:34 /usr/bin/X11/Xorg

Contents of /var/lib/xfree86/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:

/etc/X11/xorg.conf does not match checksum in /var/lib/xfree86/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r--  1 root root 2466 Feb 14 20:53 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4 >/var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86

Section "Files"
FontPath"unix/:7100"# local font server
# if the local font server has problems, we can fall back on these
FontPath"/usr/lib/X11/fonts/misc"
FontPath"/usr/lib/X11/fonts/cyrillic"
FontPath"/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/Type1"
FontPath"/usr/lib/X11/fonts/CID"
FontPath"/usr/lib/X11/fonts/Speedo"
FontPath"/usr/lib/X11/fonts/100dpi"
FontPath"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
Load"cfb"
Load"cfb32"
#Load   "GLcore"
Load"bitmap"
Load"dbe"
Load"ddc"
Load"extmod"
Load"freetype"
Load"int10"
Load"record"
Load"speedo"
Load"type1"
Load"vbe"
EndSection

Section "ServerFlags"
Option  "BlankTime" "0"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules"  "xfree86"
Option  "XkbModel"  "pc105"
#Option "XkbRules"  "sun"
#Option "XkbModel"  "type5"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/gpmdata"
Option  "Protocol"  "Mousesystems"
#Option "ZAxisMapping"  "4 5"
EndSection

Section "Device"
Identifier  "Generic Video Card"
Driver  "sunffb"
EndSection

Section "Monitor"
Identifier  "Generic Monitor"
HorizSync   28-50
VertRefresh 43-75
EndSection

Section "Screen"
Identifier  "Default Screen"
Device  "Generic Video Card"
Monitor "Generic Monitor"
DefaultDepth24
SubSection "Display"
Depth   24
Modes   "1280x1024"
EndSubSection
EndSection

Section "ServerLayout"
Identifier  "Default Layout"
Screen  "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

#Section "DRI"
#   Mode0666
#EndSection


Xorg X server log files on system:
-rw-r--r--  1 root root 13634 Feb 14 20:54 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X Window System Version 6.9.0 (Debian 6.9.0.dfsg.1-4 20060118120907 [EMAIL 
PROTECTED])
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 6.9
Build Operating System: Linux 2.6.8-2-sparc64-smp sparc [ELF] 
Current Operating System: Linux sparc 2.6.15.1 #1 SMP Fri Feb 1

Bug#318004: xserver-xorg: same problem on sparc64

2006-02-14 Thread Christopher Zimmermann
Package: xserver-xorg
Version: 6.9.0.dfsg.1-4
Followup-For: Bug #318004

Hi, 

I got the same problem on sparc64.

Christopher


-- Package-specific info:
Contents of /var/lib/xfree86/X.roster:
xserver-xfree86
xserver-xorg

/etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum.

X server symlink status:
lrwxrwxrwx  1 root root 17 Oct 15 20:02 /etc/X11/X -> /usr/bin/X11/Xorg
-rwxr-xr-x  1 root root 1913456 Jan 18 16:34 /usr/bin/X11/Xorg

Contents of /var/lib/xfree86/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:

/etc/X11/xorg.conf does not match checksum in /var/lib/xfree86/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r--  1 root root 2466 Feb 14 20:53 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4 >/var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86

Section "Files"
FontPath"unix/:7100"# local font server
# if the local font server has problems, we can fall back on these
FontPath"/usr/lib/X11/fonts/misc"
FontPath"/usr/lib/X11/fonts/cyrillic"
FontPath"/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/Type1"
FontPath"/usr/lib/X11/fonts/CID"
FontPath"/usr/lib/X11/fonts/Speedo"
FontPath"/usr/lib/X11/fonts/100dpi"
FontPath"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
Load"cfb"
Load"cfb32"
#Load   "GLcore"
Load"bitmap"
Load"dbe"
Load"ddc"
Load"extmod"
Load"freetype"
Load"int10"
Load"record"
Load"speedo"
Load"type1"
Load"vbe"
EndSection

Section "ServerFlags"
Option  "BlankTime" "0"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules"  "xfree86"
Option  "XkbModel"  "pc105"
#Option "XkbRules"  "sun"
#Option "XkbModel"  "type5"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/gpmdata"
Option  "Protocol"  "Mousesystems"
#Option "ZAxisMapping"  "4 5"
EndSection

Section "Device"
Identifier  "Generic Video Card"
Driver  "sunffb"
EndSection

Section "Monitor"
Identifier  "Generic Monitor"
HorizSync   28-50
VertRefresh 43-75
EndSection

Section "Screen"
Identifier  "Default Screen"
Device  "Generic Video Card"
Monitor "Generic Monitor"
DefaultDepth24
SubSection "Display"
Depth   24
Modes   "1280x1024"
EndSubSection
EndSection

Section "ServerLayout"
Identifier  "Default Layout"
Screen  "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

#Section "DRI"
#   Mode0666
#EndSection


Xorg X server log files on system:
-rw-r--r--  1 root root 13634 Feb 14 20:54 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X Window System Version 6.9.0 (Debian 6.9.0.dfsg.1-4 20060118120907 [EMAIL 
PROTECTED])
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 6.9
Build Operating System: Linux 2.6.8-2-sparc64-smp sparc [ELF] 
Current Operating System: Linux sparc 2.6.15.1 #1 SMP Fri Feb 10 21:36:07 CET 
2006 sparc64
Build Date: 18 January 2006
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.6.15.1 ([EMAIL PROTECTED]) (gcc version 4.0.3 
20051201 (prerelease) (Debian 4.0.2-5)) #1 SMP Fri Feb 10 21:36:07 CET 2006 
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not impleme

Bug#347968: acknowledged by developer (iptables: ipp2p match doesn't work)

2006-01-17 Thread Christopher Zimmermann
Thanks.

Maybe you could stress it a bit more that one has to patch and recompile
his kernel to be able to use certain matches or targets. I read the
README.Debian and just thought ok, I got a packet filtering enabled
kernel, now why doesn't it work.
Maybe you could also include some information where to get the patches
and how to patch the kernel. I just used the ones available via
apt-source iptables.

Christopher

On Mon, Jan 16, 2006 at 04:48:32PM -0800, Debian Bug Tracking System wrote:
> This is an automatic notification regarding your Bug report
> #347968: [rejected] iptables: ipp2p match doesn't work,
> which was filed against the iptables package.
> 
> It has been closed by one of the developers, namely
> "Laurence J. Lane" <[EMAIL PROTECTED]>.
> 
> Their explanation is attached below.  If this explanation is
> unsatisfactory and you have not received a better one in a separate
> message then please contact the developer, by replying to this email.
> 
> Debian bug tracking system administrator
> (administrator, Debian Bugs database)
> 
> Received: (at 347968-done) by bugs.debian.org; 17 Jan 2006 00:21:12 +
> >From [EMAIL PROTECTED] Mon Jan 16 16:21:12 2006
> Return-path: <[EMAIL PROTECTED]>
> Received: from master.debian.org ([146.82.138.7])
>   by spohr.debian.org with esmtp (Exim 4.50)
>   id 1Eyeb1-0002mx-VD; Mon, 16 Jan 2006 16:21:12 -0800
> Received: from ljlane by master.debian.org with local (Exim 4.50)
>   id 1Eyeb1-X7-89; Mon, 16 Jan 2006 18:21:11 -0600
> Date: Mon, 16 Jan 2006 18:21:11 -0600
> From: "Laurence J. Lane" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: iptables: ipp2p match doesn't work
> Message-ID: <[EMAIL PROTECTED]>
> Mime-Version: 1.0
> Content-Type: text/plain; charset=us-ascii
> Content-Disposition: inline
> X-Linux-Distro: Debian GNU/Linux http://www.debian.org
> User-Agent: Mutt/1.5.9i
> Sender: Laurence Lane <[EMAIL PROTECTED]>
> X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
>   (1.212-2003-09-23-exp) on spohr.debian.org
> X-Spam-Level: 
> X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00,OUR_MTA_MSGID,
>   VALID_BTS_CONTROL autolearn=no version=2.60-bugs.debian.org_2005_01_02
> X-CrossAssassin-Score: 2
> 
> retitle 347968 [rejected] iptables: ipp2p match doesn't work
> thanks, control
> 
> Dear User,
> 
> Forgive me if this is in error, but I receive a lot of
> don't-work bug reports from people who do not realize
> they need kernel support for specific iptables extensions.
> 
> There are some generic (as in, not extension specific) notes 
> in:
> 
>   /usr/share/doc/README.Debian.gz
> 
> 
> Thanks.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#347968: iptables: ipp2p match doesn't work

2006-01-13 Thread Christopher Zimmermann
Package: iptables
Version: 1.3.3-2
Severity: normal

Hi, 

the ipp2p match extension seems to be broken:

$ iptables -A OUTPUT -m ipp2p --ipp2p -j DROP
iptables: No chain/target/match by that name

Christopher


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: sparc (sparc64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages iptables depends on:
ii  libc6 2.3.5-9GNU C Library: Shared libraries an

iptables recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#335592: randomplay: fails to skip tracks played by play (sox)

2005-10-25 Thread Christopher Zimmermann
Now after thinking about it again, I found that doing it the way I did
it would call kill once for every single line ps returns. Here's a fixed
version:

--- /usr/bin/randomplay 2005-09-04 13:57:39.0 +0200
+++ randomplay  2005-10-25 12:47:11.0 +0200
@@ -67,7 +67,7 @@
   eval $regexp_if_statement;
 }
 
-# KillAll kills the request process ID and all of its children
+# KillAll recursively kills the request process ID and all of its children, 
grandchildren...
 # This is a bit of a hack--there should be a better way to do this, but I 
haven't found one.
 # Normally, kill HUP => -$$ should do the job, except this doesn't work when 
randomplay itself
 # is called from a shell script and all output from child processes is 
redirected to null.
@@ -78,8 +78,10 @@
   my $pid = shift;
   local $SIG{HUP} = 'IGNORE';   # don't want to kill ourselves here--shouldn't 
happen, but just in case.
   if (open PS, "ps -o pid,ppid |") {
+ eof PS; # Force ps to run now. Otherwise it would run at the first read 
operation.
+ kill HUP => $pid;
  foreach my $line () {
-   kill HUP => $1 if ($line =~ /^\s*(\d+)\s*(\d+)\s*$/ and ($1 eq $pid or 
$2 eq $pid));
+   KillAll($1) if ($line =~ /^\s*(\d+)\s*(\d+)\s*$/ and ($2 eq $pid));
  }
  close PS;
   } else {  # if we can't read the process table, just try 
killing the child process group


On Mon, Oct 24, 2005 at 04:50:00PM -0400, Adam Kessel wrote:
> Thanks. Looks like a good patch. I'll test it out and upload a new version
> soon. I hadn't tested randomplay with 'play' before.
> 
> Christopher Zimmermann wrote:
> > Package: randomplay
> > Version: 0.47
> > Severity: normal
> > Tags: patch
> > 
> > Hi, 
> > randomplay failes to skip tracks played by the play command, which in
> > turn runs sox. That's because the KillAll sub is limited to kill only
> > the children of a process and not it's grandchildren. I modified it to
> > recursively kill all descendants.
> > 
> > Christopher
> > 
> > 
> > *** patch
> > --- /usr/bin/randomplay 2005-09-04 13:57:39.0 +0200
> > +++ randomplay  2005-10-24 22:28:43.0 +0200
> > @@ -67,7 +67,7 @@
> >eval $regexp_if_statement;
> >  }
> >  
> > -# KillAll kills the request process ID and all of its children
> > +# KillAll recursively kills the request process ID and all of its 
> > children, grandchildren...
> >  # This is a bit of a hack--there should be a better way to do this, but I 
> > haven't found one.
> >  # Normally, kill HUP => -$$ should do the job, except this doesn't work 
> > when randomplay itself
> >  # is called from a shell script and all output from child processes is 
> > redirected to null.
> > @@ -79,7 +79,8 @@
> >local $SIG{HUP} = 'IGNORE';   # don't want to kill ourselves 
> > here--shouldn't happen, but just in case.
> >if (open PS, "ps -o pid,ppid |") {
> >   foreach my $line () {
> > -   kill HUP => $1 if ($line =~ /^\s*(\d+)\s*(\d+)\s*$/ and ($1 eq $pid 
> > or $2 eq $pid));
> > +   kill HUP => $pid;
> > +   KillAll($1) if ($line =~ /^\s*(\d+)\s*(\d+)\s*$/ and ($2 eq $pid));
> >   }
> >   close PS;
> >} else {  # if we can't read the process table, just 
> > try killing the child process group
> > 
> > 
> > -- System Information:
> > Debian Release: testing/unstable
> >   APT prefers testing
> >   APT policy: (500, 'testing')
> > Architecture: sparc (sparc64)
> > Shell:  /bin/sh linked to /bin/dash
> > Kernel: Linux 2.6.14-rc4-sparc
> > Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)
> > 
> > Versions of packages randomplay depends on:
> > ii  libdate-calc-perl 5.4-4  Perl library for accessing 
> > dates
> > ii  libmp3-info-perl  1.13-1 Perl MP3::Info - Manipulate / 
> > fetc
> > ii  libogg-vorbis-header-perl 0.03-1 perl interface to Ogg Vorbis 
> > infor
> > ii  libterm-readkey-perl  2.30-2 A perl module for simple 
> > terminal 
> > ii  perl  5.8.7-6Larry Wall's Practical 
> > Extraction 
> > 
> > Versions of packages randomplay recommends:
> > ii  mpg3210.2.10.3   A Free command-line mp3 
> > player, co
> > ii  vorbis-tools  1.0.1-1.4  Several Ogg Vorbis Tools
> > 
> > -- no debconf information
> > 
> > 
> > -

Bug#335592: randomplay: fails to skip tracks played by play (sox)

2005-10-24 Thread Christopher Zimmermann
Package: randomplay
Version: 0.47
Severity: normal
Tags: patch

Hi, 
randomplay failes to skip tracks played by the play command, which in
turn runs sox. That's because the KillAll sub is limited to kill only
the children of a process and not it's grandchildren. I modified it to
recursively kill all descendants.

Christopher


*** patch
--- /usr/bin/randomplay 2005-09-04 13:57:39.0 +0200
+++ randomplay  2005-10-24 22:28:43.0 +0200
@@ -67,7 +67,7 @@
   eval $regexp_if_statement;
 }
 
-# KillAll kills the request process ID and all of its children
+# KillAll recursively kills the request process ID and all of its children, 
grandchildren...
 # This is a bit of a hack--there should be a better way to do this, but I 
haven't found one.
 # Normally, kill HUP => -$$ should do the job, except this doesn't work when 
randomplay itself
 # is called from a shell script and all output from child processes is 
redirected to null.
@@ -79,7 +79,8 @@
   local $SIG{HUP} = 'IGNORE';   # don't want to kill ourselves here--shouldn't 
happen, but just in case.
   if (open PS, "ps -o pid,ppid |") {
  foreach my $line () {
-   kill HUP => $1 if ($line =~ /^\s*(\d+)\s*(\d+)\s*$/ and ($1 eq $pid or 
$2 eq $pid));
+   kill HUP => $pid;
+   KillAll($1) if ($line =~ /^\s*(\d+)\s*(\d+)\s*$/ and ($2 eq $pid));
  }
  close PS;
   } else {  # if we can't read the process table, just try 
killing the child process group


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: sparc (sparc64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.14-rc4-sparc
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages randomplay depends on:
ii  libdate-calc-perl 5.4-4  Perl library for accessing dates
ii  libmp3-info-perl  1.13-1 Perl MP3::Info - Manipulate / fetc
ii  libogg-vorbis-header-perl 0.03-1 perl interface to Ogg Vorbis infor
ii  libterm-readkey-perl  2.30-2 A perl module for simple terminal 
ii  perl  5.8.7-6Larry Wall's Practical Extraction 

Versions of packages randomplay recommends:
ii  mpg3210.2.10.3   A Free command-line mp3 player, co
ii  vorbis-tools  1.0.1-1.4  Several Ogg Vorbis Tools

-- no debconf information
--- /usr/bin/randomplay 2005-09-04 13:57:39.0 +0200
+++ randomplay  2005-10-24 22:28:43.0 +0200
@@ -67,7 +67,7 @@
   eval $regexp_if_statement;
 }
 
-# KillAll kills the request process ID and all of its children
+# KillAll recursively kills the request process ID and all of its children, 
grandchildren...
 # This is a bit of a hack--there should be a better way to do this, but I 
haven't found one.
 # Normally, kill HUP => -$$ should do the job, except this doesn't work when 
randomplay itself
 # is called from a shell script and all output from child processes is 
redirected to null.
@@ -79,7 +79,8 @@
   local $SIG{HUP} = 'IGNORE';   # don't want to kill ourselves here--shouldn't 
happen, but just in case.
   if (open PS, "ps -o pid,ppid |") {
  foreach my $line () {
-   kill HUP => $1 if ($line =~ /^\s*(\d+)\s*(\d+)\s*$/ and ($1 eq $pid or 
$2 eq $pid));
+   kill HUP => $pid;
+   KillAll($1) if ($line =~ /^\s*(\d+)\s*(\d+)\s*$/ and ($2 eq $pid));
  }
  close PS;
   } else {  # if we can't read the process table, just try 
killing the child process group


Bug#334776: wpp should depend on libio-stringy-perl

2005-10-19 Thread Christopher Zimmermann
Package: wpp
Version: 2.13.1.35-1
Severity: normal


Hi, 

wpp needs the libio-stringy-perl to provide IO::Scalar
which is used by wpp.

Christopher


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: sparc (sparc64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.14-rc4-sparc
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages wpp depends on:
ii  perl  5.8.7-3Larry Wall's Practical Extraction 

wpp recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#319752: xserver-xfree86: [sunffb] Blanking does not blank X, but the console

2005-07-24 Thread Christopher Zimmermann
Package: xserver-xfree86
Version: 4.3.0.dfsg.1-14
Severity: normal

Hello, 

I experienced random blanks when working on the console while X was
running. Now I can reproduce this behavior by typing the following on
the console:
DISPLAY=:0.0 xset s blank
DISPLAY=:0.0 xset s activate
After executing these two commands, the console is black. X does still
work. Switching to X and back to the console doesn't solve the problem.
Sometimes it is possible to recover by:
DISPLAY=:0.0 xset s reset
Adding the line "xset s noblank" to my .xsession solved the problem for
me.

Thanks for your work,
Christopher Zimmermann


-- Package-specific info:
Contents of /var/lib/xfree86/X.roster:
xserver-xfree86

/etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum.

X server symlink status:
lrwxr-xr-x  1 root root 20 Jul  6 16:13 /etc/X11/X -> /usr/bin/X11/XFree86
-rwxr-xr-x  1 root root 1782872 Jun  1 16:09 /usr/bin/X11/XFree86

Contents of /var/lib/xfree86/XF86Config-4.roster:
xserver-xfree86

The lspci command was not found; not including PCI data.

/etc/X11/XF86Config-4 does not match checksum in 
/var/lib/xfree86/XF86Config-4.md5sum.

XFree86 X server configuration file status:
-rw-r--r--  1 root root 2411 Jul 21 17:31 /etc/X11/XF86Config-4

Contents of /etc/X11/XF86Config-4:
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4 >/var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86

Section "Files"
FontPath"unix/:7100"# local font server
# if the local font server has problems, we can fall back on these
FontPath"/usr/lib/X11/fonts/misc"
FontPath"/usr/lib/X11/fonts/cyrillic"
FontPath"/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/Type1"
FontPath"/usr/lib/X11/fonts/CID"
FontPath"/usr/lib/X11/fonts/Speedo"
FontPath"/usr/lib/X11/fonts/100dpi"
FontPath"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
Load"GLcore"
Load"bitmap"
Load"dbe"
Load"ddc"
Load"extmod"
Load"freetype"
Load"glx"
Load"int10"
Load"record"
Load"speedo"
Load"type1"
Load"vbe"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules"  "xfree86"
Option  "XkbModel"  "ps105"
Option  "XkbLayout" "de"
Option  "XkbVariant""nodeadkeys"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/gpmdata"
Option  "Protocol"  "Mousesystems"
#Option "ZAxisMapping"  "4 5"
EndSection

Section "Device"
Identifier  "Generic Video Card"
Driver  "sunffb"
EndSection

Section "Monitor"
Identifier  "Generic Monitor"
HorizSync   28-50
VertRefresh 43-75
Option  "DPMS"
EndSection

Section "Screen"
Identifier  "Default Screen"
Device  "Generic Video Card"
Monitor "Generic Monitor"
DefaultDepth24
SubSection "Display"
Depth   24
Modes   "1280x1024"
EndSubSection
EndSection

Section "ServerLayout"
Identifier  "Default Layout"
Screen  "Default Screen"
InputDevice

Bug#319069: console-data: Sun Type5 mapping of keynumber 66

2005-07-19 Thread Christopher Zimmermann
Package: console-data
Version: 2002.12.04dbs-49
Severity: normal
Tags: patch

Hello, 

The keymaps for sun type5 keyboards map keynumber 66 to "Delete". On my
sun type6 keyboard keynumber 66 corresponds to the "Remove" key.
Unfortunally I never saw any type5 keyboard, but I don't believe that
the "Remove" key is missing on real type5 keyboards. Therefore I suggest
to change the sun type5 keymaps in the following way:
Replace every

keycode  66 = Delete   Delete
   control keycode  66 = BackSpace

by

keycode  66 = Remove
   control alt keycode  66 = Boot

Christopher


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: sparc (sparc64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.4.27-sparc
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages console-data depends on:
ii  console-common0.7.51 Basic infrastructure for text cons
ii  debconf   1.4.51 Debian configuration management sy

Versions of packages console-data recommends:
ii  console-tools  1:0.2.3dbs-56 Linux console and font utilities

-- debconf information excluded


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#294918: Clicking on the "License" button crashs widelands

2005-02-12 Thread Christopher Zimmermann
Package: widelands
Version: build9-3
Severity: minor

Hello, 

After clicking on the "License" button in the main menu, widelands says
"Unhandled exception: Couldn't find file COPYING" and crashes.

Christopher

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i586)
Kernel: Linux 2.4.27-libretto
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages widelands depends on:
ii  libc6 2.3.2.ds1-20   GNU C Library: Shared libraries an
ii  libgcc1   1:3.4.3-6  GCC support library
ii  libsdl-image1 1.2.3-6image loading library for Simple D
ii  libsdl-net1.2 1.2.5-3network library for Simple DirectM
ii  libsdl-ttf2.0 2.0.6-5ttf library for Simple DirectMedia
ii  libsdl1.2debi 1.2.7+1.2.8cvs20041007-4.1 Simple DirectMedia Layer
ii  libstdc++51:3.3.5-8  The GNU Standard C++ Library v3
ii  widelands-dat build9-3   fantasy real-time strategy game (d

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]