svn commit: r366484 - head/deskutils/xfce4-notification-daemon
Tijl Coosemans
tijl at FreeBSD.org
Fri Aug 29 10:26:14 UTC 2014
On Fri, 29 Aug 2014 09:48:30 +0000 (UTC) Dmitry Marakasov <amdmi3 at FreeBSD.org> wrote:
> Author: amdmi3
> Date: Fri Aug 29 09:48:30 2014
> New Revision: 366484
> URL: http://svnweb.freebsd.org/changeset/ports/366484
> QAT: https://qat.redports.org/buildarchive/r366484/
>
> Log:
> - Fix build by adding -fPIC to cflags
>
> Approved by: portmgr blanket
>
> Modified:
> head/deskutils/xfce4-notification-daemon/Makefile
>
> Modified: head/deskutils/xfce4-notification-daemon/Makefile
> ==============================================================================
> --- head/deskutils/xfce4-notification-daemon/Makefile Fri Aug 29 09:42:06 2014 (r366483)
> +++ head/deskutils/xfce4-notification-daemon/Makefile Fri Aug 29 09:48:30 2014 (r366484)
> @@ -26,6 +26,7 @@ USES= gmake libtool pkgconfig tar:bzip2
> USE_GNOME= librsvg2
> USE_LDCONFIG= yes
> USE_XFCE= configenv libutil libgui
> +CFLAGS+= -fPIC
Can you check config.log to see if the configure test for -fPIC fails
without this change?
Adding -fPIC to CFLAGS is a big hammer solution for what is usually a
small problem and it causes executables and static libraries to be
compiled with -fPIC as well when normally only shared libraries have
to be compiled with it.
More information about the svn-ports-head
mailing list