diff options
author | tijl <tijl@FreeBSD.org> | 2014-07-23 18:28:03 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2014-07-23 18:28:03 +0800 |
commit | ffbef41617a13ad3e9a79df15b02c3ae51cee136 (patch) | |
tree | 544858c7e8531f55637ace19f7fe9ce4ac601ede /mail | |
parent | be5687fcd4aa53facc12b059c5a25986711524cd (diff) | |
download | freebsd-ports-gnome-ffbef41617a13ad3e9a79df15b02c3ae51cee136.tar.gz freebsd-ports-gnome-ffbef41617a13ad3e9a79df15b02c3ae51cee136.tar.zst freebsd-ports-gnome-ffbef41617a13ad3e9a79df15b02c3ae51cee136.zip |
Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always work
when an older version of a package is installed. This is the case when an
executable links with installed libraries and with uninstalled libraries
that link with other uninstalled libraries. For each of the directly
linked libraries the executable will have an rpath (/usr/local/lib for the
installed libraries and a path under WRKDIR for each of the uninstalled
libraries), but not for the indirect libraries. Both ld(1) and rtld(1)
search the rpath of the executable first before any rpath of libraries, so
the indirectly linked libraries will be found in /usr/local/lib if they are
installed instead of in WRKDIR.
With this commit executables will overlink with uninstalled indirect
libraries again so their location is added to the rpath of the executable.
This partially reverts r358784.
PR: 191611
Approved by: portmgr (bapt)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/evolution/Makefile | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index 634b3b495f95..c5088a2f2b7a 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -109,14 +109,6 @@ post-patch: -e 's|-DG_DISABLE_DEPRECATED||g' \ -e 's|-Wmissing-include-dirs||g' \ ${WRKSRC}/configure - @${REINPLACE_CMD} '/^evolution_alarm_notify_LDADD =/s/=/= -lgthread-2.0/' \ - ${WRKSRC}/calendar/gui/alarm-notify/Makefile.in - @${REINPLACE_CMD} '/^evolution_settings_LDADD =/s/=/= -lgthread-2.0/' \ - ${WRKSRC}/capplet/Makefile.in - @${REINPLACE_CMD} '/^evolution_backup_LDADD =/s/=/= -lgthread-2.0/' \ - ${WRKSRC}/plugins/backup-restore/Makefile.in - @${REINPLACE_CMD} '/^evolution_LDADD =/s/=/= -lgthread-2.0/' \ - ${WRKSRC}/shell/Makefile.in @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \ ${WRKSRC}/plugins/bogo-junk-plugin/bf-junk-filter.c @${REINPLACE_CMD} -e 's|/usr/sbin|${LOCALBASE}/bin|g' \ |