Good work. It looks like you're making good progress. I'll patch the configure script soon. It will be good to see the error messages from make.
The reason the compiler complains the first time is that select is declared in limits.h, which 2.57 includes, but 2.13 doesn't. (The C program is so simple that it doesn't matter what type select is declared as, as long as it hasn't been declared with a conflicting type in one of the headers. The aim is to make the program not depend on any headers which may be absent, but in this case it backfires...) Cheers, Lachlan On Thu, 19 Jun 2003 19:08, J. op den Brouw wrote: > I'm trying to locate/fix the select() problem on HP-UX 10.20 > | /* System header to define __stub macros and hopefully few > | prototypes, which can conflict with char select (); below. > | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since > | <limits.h> exists even on freestanding compilers. */ > | #ifdef __STDC__ > | # include <limits.h> > | #else > | # include <assert.h> > | #endif > So, autoconf 2.57 generated code breaks, autoconf 2.13 generated > code is okay... Baffled me is.... > > Maybe it's just my system..... > > Oh, after that, make breaks on some htdig file... > more on that later... -- [EMAIL PROTECTED] ht://Dig developer DownUnder (http://www.htdig.org) ------------------------------------------------------- This SF.Net email is sponsored by: INetU Attention Web Developers & Consultants: Become An INetU Hosting Partner. Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission! INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php _______________________________________________ htdig-dev mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/htdig-dev
