diff options
author | kmoore <kmoore@FreeBSD.org> | 2014-07-23 21:16:29 +0800 |
---|---|---|
committer | kmoore <kmoore@FreeBSD.org> | 2014-07-23 21:16:29 +0800 |
commit | be05a2958d483e713fcc5f86359467a470764ed5 (patch) | |
tree | 489a0c71d242b1410f38bbf8d15a6f0af9454525 | |
parent | eb29f6576fe1256e54257c44a64dc89294568cd0 (diff) | |
download | freebsd-ports-gnome-be05a2958d483e713fcc5f86359467a470764ed5.tar.gz freebsd-ports-gnome-be05a2958d483e713fcc5f86359467a470764ed5.tar.zst freebsd-ports-gnome-be05a2958d483e713fcc5f86359467a470764ed5.zip |
- Fix building pipelight on FreeBSD 9 and earlier
PR: 192048
Submitted by: Joseph Mingrone <jrm@ftfl.ca>
-rw-r--r-- | emulators/pipelight/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emulators/pipelight/Makefile b/emulators/pipelight/Makefile index 407028523f6e..f86bb18a1bab 100644 --- a/emulators/pipelight/Makefile +++ b/emulators/pipelight/Makefile @@ -30,8 +30,9 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib GNU_CONFIGURE= yes CONFIGURE_ARGS+=--verbose --wine-path=${LOCALBASE}/bin/wine --win32-prebuilt \ - --win64-prebuilt --moz-plugin-path=${LOCALBASE}/lib/browser_plugins -USES= compiler:c11 gmake + --win64-prebuilt --moz-plugin-path=${LOCALBASE}/lib/browser_plugins \ + --cxx=${CXX} +USES= compiler:gcc-c++11-lib gmake MAKE_JOBS_UNSAFE=yes .include <bsd.port.pre.mk> |