diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-04-27 16:46:32 +0800 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-04-27 16:46:32 +0800 |
commit | bf6aa4f49e77f134c713b53a48dd9070a4d4ff73 (patch) | |
tree | 8d50e96c115ed47221f5b4749e10a8d1ca35f4c4 | |
parent | 30d4c6aacc2871b090c50660b894b1fe96b54be0 (diff) | |
download | freebsd-ports-gnome-bf6aa4f49e77f134c713b53a48dd9070a4d4ff73.tar.gz freebsd-ports-gnome-bf6aa4f49e77f134c713b53a48dd9070a4d4ff73.tar.zst freebsd-ports-gnome-bf6aa4f49e77f134c713b53a48dd9070a4d4ff73.zip |
science/massxpert: fix build with GCC-based architectures
Replace USE_GCC=any with USE_GCC=yes to fix build on GCC architectures.
Build failure log:
CMake Error in lib/CMakeLists.txt:
The compiler feature "cxx_decltype" is not known to CXX compiler
"GNU"
version 4.2.1.
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D20067
-rw-r--r-- | science/massxpert/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/science/massxpert/Makefile b/science/massxpert/Makefile index 2800386124b9..8581977c932b 100644 --- a/science/massxpert/Makefile +++ b/science/massxpert/Makefile @@ -23,7 +23,7 @@ USE_GITLAB= yes GL_SITE= https://salsa.debian.org/ GL_ACCOUNT= debichem-team GL_COMMIT= c229f4a1abde3c20b83a90e50f9c5d79104dfa5f -USE_GCC= any # build breaks in clang +USE_GCC= yes # build breaks in clang USE_XORG= ice sm x11 xau xcb xdmcp xext xrender USE_GNOME= glib20 USE_QT= core gui svg xml widgets buildtools_build qmake_build |