summaryrefslogtreecommitdiffstats
path: root/mingw-w64-gtk3/gtk3-bug-731013-fix-cross-compilation.patch
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2015-04-01 02:15:32 +0800
committerTing-Wei Lan <lantw44@gmail.com>2015-04-01 02:15:32 +0800
commit45a2f2b3dbeded52c104394cae3fecb2d4fbd1a1 (patch)
tree21a0ba03f405b9a6f99d45ff308548192c8dcbe6 /mingw-w64-gtk3/gtk3-bug-731013-fix-cross-compilation.patch
parent817e23622479f7bcbe849213bf98a5931dbab40b (diff)
downloadAUR-PKGBUILD-45a2f2b3dbeded52c104394cae3fecb2d4fbd1a1.tar
AUR-PKGBUILD-45a2f2b3dbeded52c104394cae3fecb2d4fbd1a1.tar.gz
AUR-PKGBUILD-45a2f2b3dbeded52c104394cae3fecb2d4fbd1a1.tar.bz2
AUR-PKGBUILD-45a2f2b3dbeded52c104394cae3fecb2d4fbd1a1.tar.lz
AUR-PKGBUILD-45a2f2b3dbeded52c104394cae3fecb2d4fbd1a1.tar.xz
AUR-PKGBUILD-45a2f2b3dbeded52c104394cae3fecb2d4fbd1a1.tar.zst
AUR-PKGBUILD-45a2f2b3dbeded52c104394cae3fecb2d4fbd1a1.zip
mingw-w64-gtk3: 3.14.10 -> 3.16.0
Diffstat (limited to 'mingw-w64-gtk3/gtk3-bug-731013-fix-cross-compilation.patch')
-rw-r--r--mingw-w64-gtk3/gtk3-bug-731013-fix-cross-compilation.patch64
1 files changed, 0 insertions, 64 deletions
diff --git a/mingw-w64-gtk3/gtk3-bug-731013-fix-cross-compilation.patch b/mingw-w64-gtk3/gtk3-bug-731013-fix-cross-compilation.patch
deleted file mode 100644
index c0eccf0..0000000
--- a/mingw-w64-gtk3/gtk3-bug-731013-fix-cross-compilation.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-From f62df4c82839453135097914fa28200253acbb05 Mon Sep 17 00:00:00 2001
-From: Hib Eris <hib@hiberis.nl>
-Date: Wed, 24 Sep 2014 23:08:02 +0200
-Subject: [PATCH] Fix cross compilation
-
-https://bugzilla.gnome.org/show_bug.cgi?id=731013
----
- gtk/Makefile.am | 2 +-
- gtk/inspector/Makefile.am | 2 +-
- util/Makefile.am | 14 ++++++++++----
- 3 files changed, 12 insertions(+), 6 deletions(-)
-
-diff --git a/gtk/Makefile.am b/gtk/Makefile.am
-index 17ca614..7a71cde 100644
---- a/gtk/Makefile.am
-+++ b/gtk/Makefile.am
-@@ -1330,7 +1330,7 @@ template_headers = $(COMPOSITE_TEMPLATES:.ui=.ui.h)
-
- %.ui.h: %.ui
- $(AM_V_GEN) mkdir -p $(dir $@) \
-- && $(top_builddir)/util/extract-strings$(EXEEXT) $< > $@
-+ && $(top_builddir)/util/extract-strings$(BUILD_EXEEXT) $< > $@
-
- #
- # rules to generate built sources
-diff --git a/gtk/inspector/Makefile.am b/gtk/inspector/Makefile.am
-index dfd54e0..fec2672 100644
---- a/gtk/inspector/Makefile.am
-+++ b/gtk/inspector/Makefile.am
-@@ -114,7 +114,7 @@ templates = \
- template_headers = $(templates:.ui=.ui.h)
-
- %.ui.h : %.ui
-- $(AM_V_GEN) $(top_builddir)/util/extract-strings$(EXEEXT) $< > $@
-+ $(AM_V_GEN) $(top_builddir)/util/extract-strings$(BUILD_EXEEXT) $< > $@
-
- EXTRA_DIST += \
- inspector.gresource.xml \
-diff --git a/util/Makefile.am b/util/Makefile.am
-index 414dc68..3d82b7e 100644
---- a/util/Makefile.am
-+++ b/util/Makefile.am
-@@ -1,9 +1,15 @@
- # The extract_strings tool is a build utility that runs on the build system.
-
--noinst_PROGRAMS = extract-strings
-+extract_strings_sources = extract-strings.c
-+extract_strings_cppflags =
-+extract_strings_cflags = $(GLIB_CFLAGS_FOR_BUILD)
-+extract_strings_ldadd = $(GLIB_LIBS_FOR_BUILD)
-+extract-strings$(BUILD_EXEEXT): $(extract_strings_sources)
-+ @rm -f extract-strings$(BUILD_EXEEXT)
-+ $(AM_V_CCLD)$(CC_FOR_BUILD) $(extract_strings_cppflags) $(CPPFLAGS_FOR_BUILD) $(extract_strings_cflags) $(CFLAGS_FOR_BUILD) $^ $(LDFLAGS_FOR_BUILD) $(extract_strings_ldadd) $(LIBS_FOR_BUILD) -o $@
-+EXTRA_DIST = $(extract_strings_sources)
-+DISTCLEANFILES = extract-strings
-
--extract_strings_SOURCES = extract-strings.c
--extract_strings_CFLAGS = $(GLIB_CFLAGS_FOR_BUILD)
--extract_strings_LDADD = $(GLIB_LIBS_FOR_BUILD)
-+all: extract-strings$(BUILD_EXEEXT)
-
- -include $(top_srcdir)/git.mk
---
-1.9.1 \ No newline at end of file