Bug#465592: couchdb doesn't start anymore after erlang update

2008-02-15 Thread Federico 'Derfel' Stella
Attached there is the bizzped erl_crash.dump file.



erl_crash.dump.bz2
Description: Binary data


Bug#465592: couchdb doesn't start anymore after erlang update

2008-02-15 Thread Federico 'Derfel' Stella
In the attachment there is the bzipped strace output for /usr/bin/couchdb.



strace.out.bz2
Description: Binary data


Bug#465592: couchdb doesn't start anymore after erlang update

2008-02-13 Thread Federico 'Derfel' Stella
Package: couchdb
Version: 0.7.2-2
Severity: grave

--- Please enter the report below this line. ---
Couchdb doesn't start anymore after erlang update.

The error message is:
{"init terminating in do_boot",{'cannot load',error_handler,get_file}}

Crash dump was written to: erl_crash.dump
init terminating in do_boot ()

Rebuilding the package solves the problem here.


--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.24

Debian Release: lenny/sid
  990 unstableftp.it.debian.org 
  990 unstableapt.cerkinfo.be 
  750 experimentalftp.it.debian.org 

--- Package information. ---
Depends(Version) | Installed
-+-===
adduser  | 3.105
erlang-abi-11.b.3| 
erlang-nox(>= 1:12.b.1-dfsg) | 1:12.b.1-dfsg-1
libc6 (>= 2.7-1) | 2.7-6
libicu36  (>> 3.6-7) | 3.6-10
lsb-base | 3.1-24
mime-support | 3.40-1




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



Bug#446946: patch for raw images from EOS 400D show as black

2007-10-27 Thread Federico 'Derfel' Stella
This bug is upstream bug #134 [1]. I've attached the patch that fixed it and
also tested it working.

[1] http://bugzilla.rawstudio.org/show_bug.cgi?id=134

Index: src/rawstudio.c
===
--- src/rawstudio.c	(revisione 1440)
+++ src/rawstudio.c	(revisione 1441)
@@ -648,13 +648,13 @@
 rs_photo_open_dcraw_apply_black_and_shift_mmx(dcraw_data *raw, RS_PHOTO *photo)
 {
 	char b[8];
-	gushort *sub = (gushort *) b;
+	volatile gushort *sub = (gushort *) b;
 	void *srcoffset;
 	void *destoffset;
 	guint x;
 	guint y;
 	gushort *src = (gushort*)raw->raw.image;
-	gint64 shift = (gint64) (16.0-log((gdouble) raw->rgbMax)/log(2.0)+0.5);
+	volatile gint64 shift = (gint64) (16.0-log((gdouble) raw->rgbMax)/log(2.0)+0.5);
 
 	sub[0] = raw->black;
 	sub[1] = raw->black;