[sane-devel] MacOS X SCSI support and other changes in SANE CVS

2003-04-30 Thread Dave Huang
opt in section (__DATA,__data) make[1]: *** [scanimage] Error 1 make: *** [all-recursive] Error 1 This is on a machine running MacOS X 10.2.5 Darwin greyfox.azeotrope.org 6.5 Darwin Kernel Version 6.5: Mon Apr 7 17:05:38 PDT 2003; root:xnu/xnu-344.32.obj~1/RELEASE_PPC Power Macintosh

[sane-devel] MacOS X SCSI support and other changes in SANE CVS

2003-05-03 Thread Dave Huang
animage and the net backend; I don't have a scanner physically hooked up to that computer.) -- Name: Dave Huang | Mammal, mammal / their names are called / INet: k...@azeotrope.org | they raise a paw / the bat, the cat / FurryMUCK: Dahan | dolphin and dog / koala bear and h

[sane-devel] DLL backend doesn't work on 680x0 machines

2003-04-11 Thread Dave Huang
rn (long) (*s->be->op[OP_SET_IO_MODE]) (s->handle, non_blocking); + return (*(SANE_Status(*)())s->be->op[OP_SET_IO_MODE]) (s->handle, non_blocking); } SANE_Status @@ -1031,5 +1031,5 @@ struct meta_scanner *s = handle; DBG (3, "sane_get_select_fd(handle=%p,fdp=%p)\n

[sane-devel] DLL backend doesn't work on 680x0 machines

2003-04-12 Thread Dave Huang
On Sat, Apr 12, 2003 at 12:42:11PM +0200, Henning Meier-Geinitz wrote: > Is this 68k-specific? I'm surprised that nobody else has reported this > problem. I think any platform that has a different method of returning pointers and integers would have the problem... I don't know of any besides 68k t

[sane-devel] DLL backend doesn't work on 680x0 machines

2003-04-12 Thread Dave Huang
non_blocking); - return (long) (*s->be->op[OP_SET_IO_MODE]) (s->handle, non_blocking); + return (*(op_set_io_mode_t)s->be->op[OP_SET_IO_MODE]) (s->handle, non_blocking); } SANE_Status @@ -1031,5 +1048,5 @@ struct meta_scanner *s = handle; DBG (3, "sane_get

[sane-devel] DLL backend doesn't work on 680x0 machines

2003-04-12 Thread Dave Huang
On Sat, Apr 12, 2003 at 08:09:22PM -0500, Dave Huang wrote: > used the net backend. That all worked fine, but scanimage -h from a > remote machine causes saned on the m68k machine to crash trying to > write to a null pointer when scanimage gets the list of options... > here's t

[sane-devel] DLL backend doesn't work on 680x0 machines

2003-04-13 Thread Dave Huang
ed in that bug report looks exactly like the one I was seeing <http://mail-index.netbsd.org/port-mac68k/2002/09/26/0002.html> I'm pretty sure the patch I posted will fix it; it'd certainly be interesting to have someone test it on a non-NetBSD m68k platform. -- Name: Dave Huang

[sane-devel] hp backend bug? (was: DLL backend doesn't work on 680x0 machines)

2003-04-13 Thread Dave Huang
On Sun, Apr 13, 2003 at 09:04:18PM +0200, Peter Kirchgessner wrote: > Hi, > > I will pick it up and look for it. Let me know if you need any more information about the problem or my configuration... scanimage -L says: device `hp:/dev/uk0' is a Hewlett-Packard C2500A flatbed scanner And when runn

[sane-devel] DLL backend doesn't work on 680x0 machines

2003-04-14 Thread Dave Huang
On Sun, Apr 13, 2003 at 03:25:53PM +0200, Henning Meier-Geinitz wrote: > Could you please try on your 68k system if compiling with ./configure > --disable-shared also works? I'll attach the complete dll backend > because there have been some other (minor) changes. Yes, it works. Thanks!