Apart from Alexander's suggestion to use the x86_64 binaries: >ptoc.c:69: error: conflicting types for 'malloc'
/home/jsinglet/TOOLSRC/sys/src/base/ptoc/ptoc/ptoc.c A problem with the sources where a K&R-prototype was added long ago, probably because before ANSI C, there was no obvious header file to include. A modern gcc seems to be somewhat picky by interpreting this as an ANSI prototype for a function without parameters. >ptoc.c:300: warning: passing arg 2 of `signal' from >incompatible pointer type Starting in line 269, the prototype for a signal handler function is declared depending on the machine. This should be dectected by the configure script. You'll probably have replace those lines with a simple void onintr (); (unless you know of an autoconf expert who can send me the appropriate lines for the configure script) >ptoc.c:721: warning: static declaration of 'init_globals' follows >non-static declaration Add static sete (char ** gdir , char *s ); before line 720: static init_globals () What gcc version are you using? I'd like to test those changges with the proper compiler. Daniel Dittmar -- Daniel Dittmar SAP Labs Berlin [EMAIL PROTECTED] -- MaxDB Discussion Mailing List For list archives: http://lists.mysql.com/maxdb To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]
