summaryrefslogtreecommitdiff
path: root/devel/gobject-introspection/patches
diff options
context:
space:
mode:
Diffstat (limited to 'devel/gobject-introspection/patches')
-rw-r--r--devel/gobject-introspection/patches/patch-ae15
-rw-r--r--devel/gobject-introspection/patches/patch-af15
2 files changed, 0 insertions, 30 deletions
diff --git a/devel/gobject-introspection/patches/patch-ae b/devel/gobject-introspection/patches/patch-ae
deleted file mode 100644
index 99f9802c8e4..00000000000
--- a/devel/gobject-introspection/patches/patch-ae
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ae,v 1.1 2012/02/10 15:14:56 drochner Exp $
-
-compatibility with Python<2.7
-
---- giscanner/docbookdescription.py.orig 2011-08-30 01:07:30.000000000 +0000
-+++ giscanner/docbookdescription.py
-@@ -1,7 +1,7 @@
-
- TAG_PROGRAM_LISTING = '<programlisting'
- TAG_CDATA = '<![CDATA['
--TAGS = {TAG_PROGRAM_LISTING, TAG_CDATA, ']]>', '</programlisting>'}
-+TAGS = [TAG_PROGRAM_LISTING, TAG_CDATA, ']]>', '</programlisting>']
-
- def get_formatted_description(description):
- desc = description.replace("|[", "<informalexample><programlisting>") \
diff --git a/devel/gobject-introspection/patches/patch-af b/devel/gobject-introspection/patches/patch-af
deleted file mode 100644
index f0b87f573af..00000000000
--- a/devel/gobject-introspection/patches/patch-af
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-af,v 1.1 2012/02/10 15:14:56 drochner Exp $
-
-deal with CC env var consisting of multiple words
-
---- giscanner/sourcescanner.py.orig 2011-09-03 18:42:14.000000000 +0000
-+++ giscanner/sourcescanner.py
-@@ -274,7 +274,7 @@ class SourceScanner(object):
-
- defines = ['__GI_SCANNER__']
- undefs = []
-- cpp_args = [os.environ.get('CC', 'cc'), '-E', '-C', '-I.', '-']
-+ cpp_args = os.environ.get('CC', 'cc').split() + ['-E', '-C', '-I.', '-']
-
- cpp_args += self._cpp_options
- proc = subprocess.Popen(cpp_args,