Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 3109] Build with GTK+ 1.2[.x]/GLib 1.2[.x] fails with erro

Date: Fri, 12 Dec 2008 11:59:30 -0800 (PST)
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.