You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
652 B

Description: Fix compatibility with glib 2.32 and later
Starting with glib 2.32 it is now mandatory to include glib.h instead
of individual headers, or the compiler will generate an error:
http://git.gnome.org/browse/glib/commit/?id=7455dd370eb37ce3b0b409ff6120501f37b50569
Author: Olly Betts <olly@survex.com>
Bug-Debian: http://bugs.debian.org/665626
Forwarded: no
Last-Update: 2012-03-25
--- wv2-0.4.2.dfsg.1.orig/src/olestream.h
+++ wv2-0.4.2.dfsg.1/src/olestream.h
@@ -23,7 +23,7 @@
#include "global.h" // U8,... typedefs
#include <stack>
-#include <glib/giochannel.h> // GSeekType
+#include <glib.h> // GSeekType
namespace wvWare {