diff options
author | tijl <tijl@FreeBSD.org> | 2014-09-02 23:54:33 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2014-09-02 23:54:33 +0800 |
commit | fbd60978249b33be250e9e6fb53e5d54f0cc682b (patch) | |
tree | 8205024ad6da046d31bdd8dc71944e9a9f84606b | |
parent | cce22129e37c91fbc1b485056b45f76f5ded9474 (diff) | |
download | freebsd-ports-gnome-fbd60978249b33be250e9e6fb53e5d54f0cc682b.tar.gz freebsd-ports-gnome-fbd60978249b33be250e9e6fb53e5d54f0cc682b.tar.zst freebsd-ports-gnome-fbd60978249b33be250e9e6fb53e5d54f0cc682b.zip |
Delete call to g_thread_init. It isn't needed with glib 2.32 and up
and the port doesn't link with libgthread-2.0.
Reported by: antoine
-rw-r--r-- | x11/yelp/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/x11/yelp/Makefile b/x11/yelp/Makefile index 7be08b3ac26d..e2a511807b22 100644 --- a/x11/yelp/Makefile +++ b/x11/yelp/Makefile @@ -38,5 +38,6 @@ post-patch: @${REINPLACE_CMD} -e 's,[-/]unstable,,' \ -e 's/ --define-variable=includetype=unstable//' \ ${WRKSRC}/configure + @${REINPLACE_CMD} '/g_thread_init/d' ${WRKSRC}/src/yelp-main.c .include <bsd.port.mk> |