diff options
author | tijl <tijl@FreeBSD.org> | 2014-09-03 18:14:35 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2014-09-03 18:14:35 +0800 |
commit | c7f7a21caafe48c44edf57b697d14a8cbbc0b56e (patch) | |
tree | 8a0fd55281fe6173b1616ddc970cb05bdcdcb543 /mail | |
parent | 89f9bef60026e0d803b3cd98bb56fa5a4e817bd3 (diff) | |
download | freebsd-ports-gnome-c7f7a21caafe48c44edf57b697d14a8cbbc0b56e.tar.gz freebsd-ports-gnome-c7f7a21caafe48c44edf57b697d14a8cbbc0b56e.tar.zst freebsd-ports-gnome-c7f7a21caafe48c44edf57b697d14a8cbbc0b56e.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.
- Replace pkg_info -W with pkg which.
Reported by: antoine
Diffstat (limited to 'mail')
-rw-r--r-- | mail/evolution-exchange/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/evolution-exchange/Makefile b/mail/evolution-exchange/Makefile index 2dc4c8c6c5d0..9c7750afc851 100644 --- a/mail/evolution-exchange/Makefile +++ b/mail/evolution-exchange/Makefile @@ -55,7 +55,7 @@ CFLAGS+= -fPIC .endif .if exists(${LOCALBASE}/include/mapi.h) -IGNORE= build fails when ${LOCALBASE}/include/mapi.h exists in system, run pkg_info -W ${LOCALBASE}/include/mapi.h to find the offending port and uninstall it, then install ${PORTNAME} and reinstall the port that installed mapi.h +IGNORE= build fails when ${LOCALBASE}/include/mapi.h exists in system, run pkg which ${LOCALBASE}/include/mapi.h to find the offending port and uninstall it, then install ${PORTNAME} and reinstall the port that installed mapi.h .endif post-patch: @@ -65,5 +65,7 @@ post-patch: -e 's|-DG_DISABLE_DEPRECATED||g' \ -e 's|-Wmissing-include-dirs||g' \ ${WRKSRC}/configure + @${REINPLACE_CMD} '/g_thread_init/d' \ + ${WRKSRC}/tools/ximian-connector-setup.c .include <bsd.port.post.mk> |