diff options
author | tijl <tijl@FreeBSD.org> | 2013-10-28 17:58:14 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2013-10-28 17:58:14 +0800 |
commit | 12d9126c058cd7889dcb9e722696901c03885381 (patch) | |
tree | a1f37a93ee36be45112418ca3fa348ee296a0c0b | |
parent | efde37996adcc721b9bbd837678c495cc482c180 (diff) | |
download | freebsd-ports-graphics-12d9126c058cd7889dcb9e722696901c03885381.tar.gz freebsd-ports-graphics-12d9126c058cd7889dcb9e722696901c03885381.tar.zst freebsd-ports-graphics-12d9126c058cd7889dcb9e722696901c03885381.zip |
Add USE_CSTD=gnu89 to fix a runtime issue. The code expects gnu89
semantics for the inline keyword.
PR: ports/183144
Tested by: AN <andy@neu.net>
-rw-r--r-- | x11-wm/compiz-plugins-main/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11-wm/compiz-plugins-main/Makefile b/x11-wm/compiz-plugins-main/Makefile index 666a35d8efe..fcaeba74ec0 100644 --- a/x11-wm/compiz-plugins-main/Makefile +++ b/x11-wm/compiz-plugins-main/Makefile @@ -3,7 +3,7 @@ PORTNAME= compiz-plugins-main PORTVERSION= 0.8.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11-wm MASTER_SITES= http://releases.compiz.org/${PORTVERSION}/ @@ -20,6 +20,7 @@ GNU_CONFIGURE= yes USE_GL= yes USE_BZIP2= yes USES= gettext gmake pathfix pkgconfig +USE_CSTD= gnu89 USE_GNOME= intltool USE_XORG= glproto USE_LDCONFIG= yes |