aboutsummaryrefslogtreecommitdiff
path: root/accessibility
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2020-09-24 00:57:06 +0000
committerJan Beich <jbeich@FreeBSD.org>2020-09-24 00:57:06 +0000
commite673a0434bab2cdf41e8f8c582cebe8751df09de (patch)
tree99ba2e156d765410bb630f59d806f6a77a779a37 /accessibility
parentf734cf2616e9a669c407bcc3b108664f151e43ab (diff)
downloadports-e673a0434bab2cdf41e8f8c582cebe8751df09de.tar.gz
ports-e673a0434bab2cdf41e8f8c582cebe8751df09de.zip
Drop glib < 2.60 workaround after r549741
PR: 247278
Notes
Notes: svn path=/head/; revision=549871
Diffstat (limited to 'accessibility')
-rw-r--r--accessibility/feedbackd/Makefile1
-rw-r--r--accessibility/feedbackd/files/patch-glib-2.5623
2 files changed, 1 insertions, 23 deletions
diff --git a/accessibility/feedbackd/Makefile b/accessibility/feedbackd/Makefile
index 8b6832698028..1e6f7292c9b2 100644
--- a/accessibility/feedbackd/Makefile
+++ b/accessibility/feedbackd/Makefile
@@ -2,6 +2,7 @@
PORTNAME= feedbackd
PORTVERSION= s20200726
+PORTREVISION= 1
CATEGORIES= accessibility
MAINTAINER= jbeich@FreeBSD.org
diff --git a/accessibility/feedbackd/files/patch-glib-2.56 b/accessibility/feedbackd/files/patch-glib-2.56
deleted file mode 100644
index bbcebb574b20..000000000000
--- a/accessibility/feedbackd/files/patch-glib-2.56
+++ /dev/null
@@ -1,23 +0,0 @@
-Drop after devel/glib20 is updated to 2.58 or later.
-
-../tests/test-lfb-integration.c:26:17: warning: implicit declaration of function 'g_canonicalize_filename' is invalid in C99 [-Wimplicit-function-declaration]
- servicesdir = g_canonicalize_filename (relative, NULL);
- ^
-ld: error: undefined symbol: g_canonicalize_filename
->>> referenced by test-lfb-integration.c
->>> tests/test-lfb-integration.p/test-lfb-integration.c.o:(fixture_setup)
-
---- tests/test-lfb-integration.c.orig 2020-07-26 11:06:35 UTC
-+++ tests/test-lfb-integration.c
-@@ -23,7 +23,11 @@ fixture_setup (TestFixture *fixture, gconstpointer unu
-
- fixture->dbus = g_test_dbus_new (G_TEST_DBUS_NONE);
- relative = g_test_build_filename (G_TEST_BUILT, "services", NULL);
-+#if GLIB_CHECK_VERSION(2, 58, 0)
- servicesdir = g_canonicalize_filename (relative, NULL);
-+#else
-+ servicesdir = realpath (relative, NULL);
-+#endif
- g_free (relative);
-
- g_test_dbus_add_service_dir (fixture->dbus, servicesdir);