diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-05-13 07:31:29 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-05-13 07:31:29 +0000 |
commit | ff229aa84020535f108bac72e943824f624cf031 (patch) | |
tree | 2ccd97a82d1efbe05306b8539ab30418626ff7c2 /comms | |
parent | aaff11c9000c9092f690f890ef58bc122bdc1a13 (diff) | |
download | freebsd-ports-ff229aa84020535f108bac72e943824f624cf031.zip |
comms/xdemorse: fix build with GCC-based architectures
Add USES=compiler:c++11-lang to fix build:
cc1: error: unrecognized command line option "-std=gnu11"
Approved by: mentors (implicit approval)
Diffstat (limited to 'comms')
-rw-r--r-- | comms/xdemorse/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/comms/xdemorse/Makefile b/comms/xdemorse/Makefile index 289c37fead47..ded56d483b5a 100644 --- a/comms/xdemorse/Makefile +++ b/comms/xdemorse/Makefile @@ -13,7 +13,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libasound.so:audio/alsa-lib -USES= gettext-tools gmake gnome localbase:ldflags pkgconfig tar:bz2 +USES= compiler:c++11-lang gettext-tools gmake gnome \ + localbase:ldflags pkgconfig tar:bz2 GNU_CONFIGURE= yes USE_GNOME= cairo gdkpixbuf2 glib20 gtk30 |