[Expat-discuss] Problem with config.h.in

Steve Parkinson stevep@netscape.com
Tue Jan 15 18:00:06 2002


There is a problem with config.h.in

Since configure thinks I don't have bcopy() or memmove() 'punting on 
memmove'
is getting compiled by the compiler, and this is not a correct C 
statement, so it
throws up.

Can someone remove the semicolon comment in this define please?

#ifndef HAVE_MEMMOVE
#ifdef HAVE_BCOPY
#define memmove(d,s,l) bcopy((s),(d),(l))
#else
#define memmove(d,s,l) ;punting on memmove;
#endif

Steve