[Refdb-devel] [ refdb-Bugs-1593311 ] Build problem with 0.9.8-pre6
Status: Beta
Brought to you by:
mhoenicka
From: SourceForge.net <no...@so...> - 2006-11-09 11:44:32
|
Bugs item #1593311, was opened at 2006-11-09 12:13 Message generated for change (Comment added) made by mhoenicka You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=385991&aid=1593311&group_id=26091 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: refdbd Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: steletch (steletch) Assigned to: Markus Hoenicka (mhoenicka) Summary: Build problem with 0.9.8-pre6 Initial Comment: strfncs.c: In function 'min_token_length': strfncs.c:1296: error: 'SIZE_T_MAX' undeclared (first use in this function) strfncs.c:1296: error: (Each undeclared identifier is reported only once strfncs.c:1296: error: for each function it appears in.) ---------------------------------------------------------------------- >Comment By: Markus Hoenicka (mhoenicka) Date: 2006-11-09 12:44 Message: Logged In: YES user_id=85809 Looks like another case of BSD vs. Linux oddities. Could you please add the following lines at the top of strfncs.c, somewhere close to the other #define statements, and try again? /* Max integer that can be stored in a size_t variable */ #ifndef SIZE_T_MAX #define SIZE_T_MAX UINT_MAX #endif /* !SIZE_T_MAX */ ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=385991&aid=1593311&group_id=26091 |