diff options
author | mva <mva@FreeBSD.org> | 2014-10-26 21:32:59 +0800 |
---|---|---|
committer | mva <mva@FreeBSD.org> | 2014-10-26 21:32:59 +0800 |
commit | 203e699a5e54e07fd782fe01dc94a5ba53e694c0 (patch) | |
tree | 8bd11e387b0304256a96849cb8eb8aa4e8d2f794 /audio | |
parent | 088bab654aaeed326f941583abef49e96123a7fd (diff) | |
download | freebsd-ports-gnome-203e699a5e54e07fd782fe01dc94a5ba53e694c0.tar.gz freebsd-ports-gnome-203e699a5e54e07fd782fe01dc94a5ba53e694c0.tar.zst freebsd-ports-gnome-203e699a5e54e07fd782fe01dc94a5ba53e694c0.zip |
- openal-soft requires a compiler, that understands parts of the C11
standard. This should unbreak builds on 8.x
Reported by: several people
Submitted by: Torfinn Ingolfsen <tingox@gmail.com>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/openal-soft/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/openal-soft/Makefile b/audio/openal-soft/Makefile index 1c82f943e31d..19a1ababdb2e 100644 --- a/audio/openal-soft/Makefile +++ b/audio/openal-soft/Makefile @@ -2,6 +2,7 @@ PORTNAME= openal-soft PORTVERSION= 1.16.0 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://kcat.strangesoft.net/openal-releases/ @@ -12,7 +13,7 @@ LICENSE= LGPL20 CONFLICTS= openal-200[0-9]* -USES= tar:bzip2 cmake +USES= tar:bzip2 cmake compiler:c11 USE_LDCONFIG= yes CMAKE_ARGS+= -DALSOFT_REQUIRE_OSS:BOOL=ON \ -DALSOFT_REQUIRE_SOLARIS:BOOL=OFF \ |