Date: Sun, 29 Jul 2018 03:44:59 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475624 - head/x11-wm/compiz-plugins-extra Message-ID: <201807290344.w6T3ixNR057790@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sun Jul 29 03:44:58 2018 New Revision: 475624 URL: https://svnweb.freebsd.org/changeset/ports/475624 Log: x11-wm/compiz-plugins-extra: fix crashes when using animation - source headers animation-internal.h (from x11-wm/compiz-plugins-main) and animationaddon.h (from x11-wm/compiz-plugins-extra) include compiz-animation.h which uses gnu89 inline semantics. - x11-wm/compiz-plugins-main is built with -std=gnu89 whereas x11-wm/compiz-plugins-extra is not. This why main animations work properly whereas extra animations do not. PR: 217731 Reported by: andy@neu.net Submitted by: Samy Mahmoudi <samy.mahmoudi@gmail.com> Approved by: freebsd-ports@dan.me.uk (maintainer timeout) Modified: head/x11-wm/compiz-plugins-extra/Makefile Modified: head/x11-wm/compiz-plugins-extra/Makefile ============================================================================== --- head/x11-wm/compiz-plugins-extra/Makefile Sun Jul 29 03:40:17 2018 (r475623) +++ head/x11-wm/compiz-plugins-extra/Makefile Sun Jul 29 03:44:58 2018 (r475624) @@ -3,7 +3,7 @@ PORTNAME= compiz-plugins-extra PORTVERSION= 0.8.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-wm MASTER_SITES= http://releases.compiz.org/${PORTVERSION}/ @@ -20,6 +20,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} GNU_CONFIGURE= yes USE_GL= yes USES= gettext gmake libtool:keepla pathfix pkgconfig tar:bzip2 +USE_CSTD= gnu89 USE_GNOME= gconf2 intltool USE_XORG= glproto USE_LDCONFIG= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807290344.w6T3ixNR057790>