summaryrefslogtreecommitdiff
path: root/geography/libchamplain08/patches
diff options
context:
space:
mode:
Diffstat (limited to 'geography/libchamplain08/patches')
-rw-r--r--geography/libchamplain08/patches/patch-aa13
-rw-r--r--geography/libchamplain08/patches/patch-ab24
-rw-r--r--geography/libchamplain08/patches/patch-ac12
3 files changed, 0 insertions, 49 deletions
diff --git a/geography/libchamplain08/patches/patch-aa b/geography/libchamplain08/patches/patch-aa
deleted file mode 100644
index 8141fa0e675..00000000000
--- a/geography/libchamplain08/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2011/04/14 15:52:51 drochner Exp $
-
---- Makefile.in.orig 2011-03-30 22:13:37.000000000 +0000
-+++ Makefile.in
-@@ -309,7 +309,7 @@ top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
-
- # Have the demos build at the end as they depend on optional parts
--SUBDIRS = build tidy champlain $(am__append_1) docs demos bindings
-+SUBDIRS = build tidy champlain $(am__append_1) demos bindings
- ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
- pcfiles = champlain-@CHAMPLAIN_API_VERSION@.pc $(am__append_2) \
- $(am__append_4)
diff --git a/geography/libchamplain08/patches/patch-ab b/geography/libchamplain08/patches/patch-ab
deleted file mode 100644
index ed3fee84bc6..00000000000
--- a/geography/libchamplain08/patches/patch-ab
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2011/04/14 15:52:51 drochner Exp $
-
-GTimeVal->tv_sec is glong
-
---- champlain/champlain-network-tile-source.c.orig 2011-03-30 21:41:54.000000000 +0000
-+++ champlain/champlain-network-tile-source.c
-@@ -680,6 +680,7 @@ static gchar *
- get_modified_time_string (ChamplainTile *tile)
- {
- const GTimeVal *time;
-+ time_t t;
-
- g_return_val_if_fail (CHAMPLAIN_TILE (tile), NULL);
-
-@@ -688,7 +689,8 @@ get_modified_time_string (ChamplainTile
- if (time == NULL)
- return NULL;
-
-- struct tm *other_time = gmtime (&time->tv_sec);
-+ t = time->tv_sec;
-+ struct tm *other_time = gmtime (&t);
- char value[100];
-
- #ifdef G_OS_WIN32
diff --git a/geography/libchamplain08/patches/patch-ac b/geography/libchamplain08/patches/patch-ac
deleted file mode 100644
index 26979135357..00000000000
--- a/geography/libchamplain08/patches/patch-ac
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2012/02/02 17:27:19 drochner Exp $
-
---- tidy/Makefile.in.orig 2011-03-30 22:13:37.000000000 +0000
-+++ tidy/Makefile.in
-@@ -343,7 +343,6 @@ AM_CPPFLAGS = \
- -I$(top_srcdir) \
- -DPREFIX=\""$(prefix)"\" \
- -DLIBDIR=\""$(libdir)"\" \
-- -DG_DISABLE_DEPRECATED \
- -DG_LOG_DOMAIN=\"Tidy\" \
- $(DEPS_CFLAGS) \
- $(TIDY_DEBUG_CFLAGS)