#1099: build errors on Glib.UTFString
---------------------------+------------------------------------------------
Reporter: guest | Owner: duncan
Type: defect | Status: new
Priority: normal | Milestone:
Component: build system | Version: 0.9.12
Resolution: | Keywords:
---------------------------+------------------------------------------------
Comment (by guest):
Hm. I no longer see any attachment option. Well, inline it:
/* gtk2hs-config.h. Generated from gtk2hs-config.h.in by configure. */
/* gtk2hs-config.h.in. Generated from configure.ac by autoheader. */
/* Hack to suppress warnings that these symbols clash with
the ones from ghc's version of config.h */
#undef /**/ PACKAGE_NAME
#undef /**/ PACKAGE_STRING
#undef /**/ PACKAGE_TARNAME
#undef /**/ PACKAGE_VERSION
/* Leave out all deprecated functions. */
/* #undef DISABLE_DEPRECATED */
/* Whether or not the cairo package is available. */
#define ENABLE_CAIRO
/* cairo pdf backend enabled */
#define ENABLE_CAIRO_PDF_SURFACE
/* cairo png functions available */
#define ENABLE_CAIRO_PNG_FUNCTIONS
/* cairo ps backend enabled */
#define ENABLE_CAIRO_PS_SURFACE
/* cairo svg backend enabled */
#define ENABLE_CAIRO_SVG_SURFACE
/* Whether or not the firefox package is available. */
/* #undef ENABLE_FIREFOX_MOZEMBED */
/* Whether or not the gconf package is available. */
#define ENABLE_GCONF
/* Whether or not the gnomevfs package is available. */
#define ENABLE_GNOMEVFS
/* Whether or not the gstreamer package is available. */
#define ENABLE_GSTREAMER
/* Whether or not the opengl package is available. */
#define ENABLE_GTKGLEXT
/* Whether or not the libglade package is available. */
#define ENABLE_LIBGLADE
/* Whether or not the mozilla package is available. */
#define ENABLE_MOZILLA_MOZEMBED
/* Whether or not the seamonkey package is available. */
/* #undef ENABLE_SEAMONKEY_MOZEMBED */
/* Whether or not the sourceview package is available. */
/* #undef ENABLE_SOURCEVIEW */
/* Whether or not the svg package is available. */
#define ENABLE_SVGCAIRO
/* Whether or not the xulrunner package is available. */
/* #undef ENABLE_XULRUNNER_MOZEMBED */
/* Omit deprecated gdk functions. */
/* #undef GDK_DISABLE_DEPRECATED */
/* Omit deprecated pixbuf functions. */
/* #undef GDK_PIXBUF_DISABLE_DEPRECATED */
/* Omit deprecated gtk functions. */
/* #undef GTK_DISABLE_DEPRECATED */
/* Define this if we need to hack around a broken development version of
Gtk+
(2.1.0) that for some reason Sun decided it'd be a really good idea for
them to ship. Grrr. */
/* #undef GTK_MULTIHEAD_SAFE */
/* Omit deprecated glib functions. */
/* #undef G_DISABLE_DEPRECATED */
/* Using split base package. */
#define HAVE_SPLIT_BASE 1
/* The mozembed library directory */
#define MOZEMBED_LIBDIR ""
/* Name of package */
#define PACKAGE "gtk2hs"
/* Define to the address where bug reports for this package should be
sent. */
#define PACKAGE_BUGREPORT ""
/* Define to the full name of this package. */
#define PACKAGE_NAME "gtk2hs"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "gtk2hs 0.9.12.2"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gtk2hs"
/* Define to the version of this package. */
#define PACKAGE_VERSION "0.9.12.2"
/* Use the new GClosure based signals implementation. */
#define USE_GCLOSUE_SIGNALS_IMPL
/* Version number of package */
#define VERSION "0.9.12.2"
/* cairo major version number */
#define _CAIRO_MAJOR_VERSION (1)
/* cairo minor patch level */
#define _CAIRO_MICRO_VERSION (12)
/* cairo minor version number */
#define _CAIRO_MINOR_VERSION (5)
/* Glib major version number */
#define _GLIB_MAJOR_VERSION ()
/* Glib minor patch level */
#define _GLIB_MICRO_VERSION ()
/* Glib minor version number */
#define _GLIB_MINOR_VERSION ()
/* Glib major version number */
#define _GSTREAMER_MAJOR_VERSION ()
/* Glib minor patch level */
#define _GSTREAMER_MICRO_VERSION ()
/* Glib minor version number */
#define _GSTREAMER_MINOR_VERSION ()
/* Gtk major version number */
#define _GTK_MAJOR_VERSION ()
/* Gtk minor patch level */
#define _GTK_MICRO_VERSION ()
/* Gtk minor version number */
#define _GTK_MINOR_VERSION ()
/* Pango major version number */
#define _PANGO_MAJOR_VERSION ()
/* Pango minor patch level */
#define _PANGO_MICRO_VERSION ()
/* Pango minor version number */
#define _PANGO_MINOR_VERSION ()
/* Version number of GHC. */
#define __GLASGOW_HASKELL__ 608
/* Allow code to be compiled differently for different versions of GTK+ */
#define GTK_CHECK_VERSION(major,minor,micro) \
(_GTK_MAJOR_VERSION > (major) || \
(_GTK_MAJOR_VERSION == (major) && _GTK_MINOR_VERSION > (minor)) || \
(_GTK_MAJOR_VERSION == (major) && _GTK_MINOR_VERSION == (minor) && \
_GTK_MICRO_VERSION >= (micro)))
/* Allow code to be compiled differently for different versions of Pango
*/
#define PANGO_CHECK_VERSION(major,minor,micro) \
(_PANGO_MAJOR_VERSION > (major) || \
(_PANGO_MAJOR_VERSION == (major) && _PANGO_MINOR_VERSION > (minor))
|| \
(_PANGO_MAJOR_VERSION == (major) && _PANGO_MINOR_VERSION == (minor)
&& \
_PANGO_MICRO_VERSION >= (micro)))
/* Allow code to be compiled differently for different versions of Glib */
#define GLIB_CHECK_VERSION(major,minor,micro) \
(_GLIB_MAJOR_VERSION > (major) || \
(_GLIB_MAJOR_VERSION == (major) && _GLIB_MINOR_VERSION > (minor)) ||
\
(_GLIB_MAJOR_VERSION == (major) && _GLIB_MINOR_VERSION == (minor) &&
\
_GLIB_MICRO_VERSION >= (micro)))
/* Allow code to be compiled differently for different versions of Glib */
#define GSTREAMER_CHECK_VERSION(major,minor,micro) \
(_GSTREAMER_MAJOR_VERSION > (major) || \
(_GSTREAMER_MAJOR_VERSION == (major) && _GSTREAMER_MINOR_VERSION >
(minor)) || \
(_GSTREAMER_MAJOR_VERSION == (major) && _GSTREAMER_MINOR_VERSION ==
(minor) && \
_GSTREAMER_MICRO_VERSION >= (micro)))
/* Allow code to be compiled differently for different versions of cairo
*/
#define CAIRO_CHECK_VERSION(major,minor,micro) \
(_CAIRO_MAJOR_VERSION > (major) || \
(_CAIRO_MAJOR_VERSION == (major) && _CAIRO_MINOR_VERSION > (minor))
|| \
(_CAIRO_MAJOR_VERSION == (major) && _CAIRO_MINOR_VERSION == (minor)
&& \
_CAIRO_MICRO_VERSION >= (micro)))
--
Ticket URL: <http://hackage.haskell.org/trac/gtk2hs/ticket/1099#comment:8>
Gtk2Hs <http://haskell.org/gtk2hs/>
The Gtk2Hs project
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Gtk2hs-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtk2hs-devel