Ken Pooley wrote: > cc -DPACKAGE=\"midgard\" -DVERSION=\"1.4.2\" -DSTDC_HEADERS=1 -DHAVE_ZLIB_H= > 1 -DHAVE_ICONV=1 -DHAVE_ERRMSG_H=1 -DHAVE_MYSQL_H=1 -I. -I. -I.. -I/sw/inclu > de/glib-1.2 -I/sw/lib/glib/include -I/sw//include -I/usr/include/mysql -I/sw > //include -Wall -g -O2 -Wp,-MD,.deps/pageresolve.pp -c pageresolve.c -o > pageresolve.o > pageresolve.c: In function `mgd_parse_uri': > pageresolve.c:170: warning: implicit declaration of function `strtok_r'
Ah, grep for strtok_r in your system include dir and tell me where it originates and I can solve this warning. > //include -Wall -g -O2 -Wp,-MD,.deps/preparse.pp -c preparse.c -o preparse.o > preparse.c:5082: warning: `yyunput' defined but not used > preparse.c:5505: warning: `yy_top_state' defined but not used Annoying but harmless. > /sw//include -Wall -g -O2 -c read.c > read.c:557: illegal expression, found `}' > cpp-precomp: warning: errors during smart preprocessing, retrying in basic > mode Never seen this one. It doesn't seem to regard it as an error. But I can't find '}' on line 557. > repligard common.o read.o import.o rpconfig.o exporthook.o schema.o export.o > main.o > ../src/.libs/libmidgard.a -lmysqlclient -lexpat -lz -L/sw/lib -lglib -liconv > -lexpat -lz -L/sw/lib -lglib -liconv > /usr/bin/ld: warning unused multiple definitions of symbol _getopt > /sw//lib/libmysqlclient.dylib(getopt.lo) definition of _getopt Hmmm.... you could trying to remove (by hand, for now) the duplicates in the link line (I see -lexpat .... twice) but I don't really think that that's the problem. But other than that, Google found no recent similar reports. Emile --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
