diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2021-02-12 11:01:23 +0800 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2021-02-12 11:01:23 +0800 |
commit | 8754578e3788a8cb40fe060ae09c33aea77341ad (patch) | |
tree | 5bd478465be80e5fbb32ecf374e941ca8d1bd210 | |
parent | 01ac3c74de65b7c858b7708fd9dc4035d13c3ce9 (diff) | |
download | freebsd-ports-gnome-8754578e3788a8cb40fe060ae09c33aea77341ad.tar.gz freebsd-ports-gnome-8754578e3788a8cb40fe060ae09c33aea77341ad.tar.zst freebsd-ports-gnome-8754578e3788a8cb40fe060ae09c33aea77341ad.zip |
Add compiler:c++11-lang to USES to fix build on GCC-based systems:
CMake Error in CMakeLists.txt:
The compiler feature "cxx_decltype" is not known to CXX compiler "GNU" version 4.2.1.
While here, sort USES; add one blank line to be in accordance with
common usage.
Approved by: portmgr (tier-2 blanket)
-rw-r--r-- | x11/screengrab/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11/screengrab/Makefile b/x11/screengrab/Makefile index 9c72872e37ae..c26b3fb8e268 100644 --- a/x11/screengrab/Makefile +++ b/x11/screengrab/Makefile @@ -10,10 +10,11 @@ COMMENT= Screen dump utility LICENSE= LGPL21+ -USES= lxqt tar:xz cmake xorg qt:5 gnome kde:5 +USES= cmake compiler:c++11-lang gnome kde:5 lxqt qt:5 tar:xz xorg USE_LXQT= qtxdg USE_XORG= x11 xcb sm ice xext USE_KDE= windowsystem USE_QT= buildtools qmake core dbus xml svg widgets gui x11extras network USE_GNOME= glib20 + .include <bsd.port.mk> |