Discussion:
[Refdb-devel] [ refdb-Bugs-1593311 ] Build problem with 0.9.8-pre6
SourceForge.net
2006-11-09 11:13:29 UTC
Permalink
Bugs item #1593311, was opened at 2006-11-09 12:13
Message generated for change (Tracker Item Submitted) made by Item Submitter
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.)


----------------------------------------------------------------------

You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=385991&aid=1593311&group_id=26091
SourceForge.net
2006-11-09 11:44:32 UTC
Permalink
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
SourceForge.net
2006-11-09 13:01:27 UTC
Permalink
Bugs item #1593311, was opened at 2006-11-09 12:13
Message generated for change (Comment added) made by steletch
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: steletch (steletch)
Date: 2006-11-09 14:01

Message:
Logged In: YES
user_id=1129476

Yep, solves the build problem, another pre soon ?

----------------------------------------------------------------------

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
SourceForge.net
2006-11-09 13:13:21 UTC
Permalink
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: Closed
Resolution: Fixed
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 14:13

Message:
Logged In: YES
user_id=85809

Ok, I've checked in the fix (svn revision 218). I'll upload
another prerelease tonight. And I'll make sure the Changelog
isn't empty this time...

----------------------------------------------------------------------

Comment By: steletch (steletch)
Date: 2006-11-09 14:01

Message:
Logged In: YES
user_id=1129476

Yep, solves the build problem, another pre soon ?

----------------------------------------------------------------------

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
Loading...