[sane-devel] md5 Buffer Error

2007-06-22 Thread Hugh McMaster
Allan, On 22/06/07, m. allan noah wrote: > grep thru the mingw header files, and see if there is something like: > > #define md5_buffer _md5_buffer The problem also occurs on Linux (Ubuntu 7.04). It ends with the output: scanimage.o: In function `auth_callback': /home/hugh/sane-backends/fronten

[sane-devel] md5 Buffer Error

2007-06-21 Thread Hugh McMaster
Hi Gerald, On 21/06/07, Gerald Murray wrote: > > > /home/User/sane-backends/frontend/scanimage.c:291: undefined reference > to `_md5_buffer' > > There should be two leading underscores before md5_buffer. > This is resolved in the frontend/Makefile by "$(LIBLIB)" > which links lib/liblib.a Header

[sane-devel] md5 Buffer Error

2007-06-21 Thread Hugh McMaster
Hi Allan, On 21/06/07, m. allan noah wrote: > check line 291 of scanimage.c, does it look like mine: > >md5_buffer (tmp, strlen (tmp), md5digest); Thankyou for reply. I have checked that line, and it looks just like the one that you posted. Hugh

[sane-devel] md5 Buffer Error

2007-06-21 Thread m. allan noah
On 6/21/07, Hugh McMaster wrote: > Hi Gerald, > > On 21/06/07, Gerald Murray wrote: > > > > > /home/User/sane-backends/frontend/scanimage.c:291: undefined reference > > to `_md5_buffer' > > > > There should be two leading underscores before md5_buffer. > > This is resolved in the frontend/Makefile

[sane-devel] md5 Buffer Error

2007-06-20 Thread Hugh McMaster
Hi everyone, I am attempting to compile Sane-Backends-CVS under Cygwin, and the process is just about complete - I hope. This is the only issue that I have encountered during the compile process so far. It appears when scanimage.o is invoked. The only backends I am compiling are 'net', and 'lid

[sane-devel] md5 Buffer Error

2007-06-20 Thread Gerald Murray
> /home/User/sane-backends/frontend/scanimage.c:291: undefined reference to `_md5_buffer' There should be two leading underscores before md5_buffer. This is resolved in the frontend/Makefile by "$(LIBLIB)" which links lib/liblib.a Header is include/md5.h Perhaps the compiler/linker being used

[sane-devel] md5 Buffer Error

2007-06-20 Thread m. allan noah
check line 291 of scanimage.c, does it look like mine: md5_buffer (tmp, strlen (tmp), md5digest); allan On 6/20/07, Hugh McMaster wrote: > Hi everyone, > > I am attempting to compile Sane-Backends-CVS under Cygwin, and the > process is just about complete - I hope. > > This is the only issue