> I have search though every *.a file that 'find / -name...'
> will find and it only shows up in libmigard
>
> 1.2.5 did compile on a G3 with the same kit, so I wonderif
> its the sitsgroups or something, only thats exactly what we
> wont ant the other new goodies
Well it's something. I'm not ruling out anything but I'd be surprised if
it turned out to be sitegroups. SGs only changed the queries to the DB, it
doesn't link in any new stuff.
Hmm. Try this patch in midgard-lib.
Emile
--- format.c.va_arg Mon Jul 3 01:44:56 2000
+++ format.c Mon Jul 3 01:45:13 2000
@@ -659,7 +659,7 @@
switch (parser->callbacks[*(fmt+1)].ptype) {
case MGD_CHAR:
parser->callbacks[*(fmt+1)].func(parser,
- (void*)((int)va_arg(args, char)));
+ (void*)((int)va_arg(args, int)));
fmt += 2;
break;
case MGD_INT:
@@ -726,7 +726,7 @@
switch (mgd->parser->callbacks[*(fmt+1)].ptype) {
case MGD_CHAR:
mgd->parser->callbacks[*(fmt+1)].func(mgd->parser,
- (void*)((int)va_arg(args, char)));
+ (void*)((int)va_arg(args, int)));
fmt += 2;
break;
case MGD_INT:
--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org
To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]