diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2018-05-31 12:51:46 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2018-05-31 12:51:46 +0000 |
commit | 326ad662afacb81d4b203827d68d253745512df0 (patch) | |
tree | 07513ce3cf8ad7b403bedebf7a23b1062d0ff339 | |
parent | Document security/strongswan multiple vulnerabilities (diff) |
Prefer USE_GCC=yes over USE_GCC=6+. As of today these two are equivalent,
but the former is more general and we try to avoid references to specific
versions where possible.
Notes
Notes:
svn path=/head/; revision=471207
-rw-r--r-- | multimedia/webcamoid/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multimedia/webcamoid/Makefile b/multimedia/webcamoid/Makefile index f49e55aae90d..157b8898a5d2 100644 --- a/multimedia/webcamoid/Makefile +++ b/multimedia/webcamoid/Makefile @@ -29,7 +29,7 @@ QMAKE_ARGS= INSTALLQMLDIR=${QT_QMLDIR} \ MANDIR=${PREFIX}/man # Workaround for the crash when built with clang that the upstream author says is a bug in clang -USE_GCC= 6+ +USE_GCC= yes # Workaround for Bug#224137: devel/qt5-qmake: Doesn't use the right compiler in case USE_GCC is selected BINARY_ALIAS= g++=${CXX} |