https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3109
Gerald Combs <gerald@xxxxxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |gerald@xxxxxxxxxxxxx
--- Comment #4 from Gerald Combs <gerald@xxxxxxxxxxxxx> 2008-12-12 11:59:29 PDT ---
It looks like we've run into this problem before. epan/dfilter/scanner.[cl]
has:
/*
* GLib 1.2[.x] doesn't define G_MAXINT32 or G_MININT32; if they're not
* defined, we define them as the maximum and minimum 32-bit signed
* 2's-complement number.
*/
#ifndef G_MAXINT32
#define G_MAXINT32 ((gint32)0x7FFFFFFF)
#endif
#ifndef G_MININT32
#define G_MININT32 ((gint32)0x80000000)
#endif
Maybe we should move that to config.h, or a similarly-common header file.
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.