1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## glib-single-include.dpatch by Michael Biebl <biebl@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Fix glib include headers
@DPATCH@
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' getstream-20081204~/config.c getstream-20081204/config.c
--- getstream-20081204~/config.c 2012-12-16 05:45:37.000000000 +0100
+++ getstream-20081204/config.c 2012-12-16 05:46:06.690795825 +0100
@@ -10,7 +10,7 @@
#include <strings.h>
#include <string.h>
-#include <glib/glist.h>
+#include <glib.h>
#include "config.h"
#include "libconf.h"
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' getstream-20081204~/config.h getstream-20081204/config.h
--- getstream-20081204~/config.h 2012-12-16 05:45:37.000000000 +0100
+++ getstream-20081204/config.h 2012-12-16 05:46:06.690795825 +0100
@@ -1,5 +1,5 @@
-#include <glib/glist.h>
+#include <glib.h>
#include "getstream.h"
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' getstream-20081204~/getstream.h getstream-20081204/getstream.h
--- getstream-20081204~/getstream.h 2012-12-16 05:45:37.000000000 +0100
+++ getstream-20081204/getstream.h 2012-12-16 05:46:06.690795825 +0100
@@ -10,7 +10,7 @@
#include <linux/dvb/frontend.h>
#include <event.h>
-#include <glib/glist.h>
+#include <glib.h>
#include "sap.h"
#include "psi.h"
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' getstream-20081204~/libhttp.c getstream-20081204/libhttp.c
--- getstream-20081204~/libhttp.c 2012-12-16 05:45:37.000000000 +0100
+++ getstream-20081204/libhttp.c 2012-12-16 05:46:06.690795825 +0100
@@ -13,7 +13,7 @@
#include <stdio.h>
#include <stdarg.h>
-#include <glib/glist.h>
+#include <glib.h>
#include "libhttp.h"
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' getstream-20081204~/libhttp.h getstream-20081204/libhttp.h
--- getstream-20081204~/libhttp.h 2012-12-16 05:45:37.000000000 +0100
+++ getstream-20081204/libhttp.h 2012-12-16 05:46:06.690795825 +0100
@@ -7,8 +7,7 @@
#include <netinet/in.h>
#include <event.h>
-#include <glib/glist.h>
-#include <glib/ghash.h>
+#include <glib.h>
#define MAX_HEADER_SIZE 3000
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' getstream-20081204~/output.h getstream-20081204/output.h
--- getstream-20081204~/output.h 2012-12-16 05:45:37.000000000 +0100
+++ getstream-20081204/output.h 2012-12-16 05:46:06.690795825 +0100
@@ -4,7 +4,7 @@
#include "getstream.h"
#include "libhttp.h"
-#include <glib/glist.h>
+#include <glib.h>
#include <event.h>
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' getstream-20081204~/output_http.c getstream-20081204/output_http.c
--- getstream-20081204~/output_http.c 2012-12-16 05:45:37.000000000 +0100
+++ getstream-20081204/output_http.c 2012-12-16 05:46:06.694795868 +0100
@@ -5,7 +5,7 @@
#include <string.h>
#include <stdio.h>
-#include <glib/glist.h>
+#include <glib.h>
#include "output.h"
#include "simplebuffer.h"
|