diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-11-18 09:39:47 +0800 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-11-18 09:39:47 +0800 |
commit | 6b543b4161279c3602c5d798ff5287854008405e (patch) | |
tree | 21eeba8df682468f79a1fdfcd5725ae5ec49b2f5 /cad | |
parent | f2fa182301522004f840fec06f5411f7d1971ba3 (diff) | |
download | freebsd-ports-gnome-6b543b4161279c3602c5d798ff5287854008405e.tar.gz freebsd-ports-gnome-6b543b4161279c3602c5d798ff5287854008405e.tar.zst freebsd-ports-gnome-6b543b4161279c3602c5d798ff5287854008405e.zip |
cad/ktechlab: fix build on GCC architectures
The compiler feature "cxx_decltype" is not known to CXX compiler
"GNU"
version 4.2.1.
MFH: 2020Q4 (fix build blanket)
Diffstat (limited to 'cad')
-rw-r--r-- | cad/ktechlab/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cad/ktechlab/Makefile b/cad/ktechlab/Makefile index 192662ddbfe2..540a1c485acb 100644 --- a/cad/ktechlab/Makefile +++ b/cad/ktechlab/Makefile @@ -13,7 +13,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgpsim.so:misc/gpsim -USES= cmake desktop-file-utils gnome kde:5 localbase qt:5 shared-mime-info +USES= cmake compiler:c++11-lang desktop-file-utils gnome kde:5 \ + localbase qt:5 shared-mime-info USE_GITHUB= yes USE_QT= concurrent core dbus gui network printsupport widgets xml \ qmake_build buildtools_build |