diff options
author | tobik <tobik@FreeBSD.org> | 2018-09-02 19:36:06 +0800 |
---|---|---|
committer | tobik <tobik@FreeBSD.org> | 2018-09-02 19:36:06 +0800 |
commit | 6de125f8949a6b2976a80ad3c83005117303be13 (patch) | |
tree | 06ada4f328d8005a26f46498406e4b5c042ee6bc /graphics | |
parent | 37ba58f1859193c7f26cee5eddd077dea9d86ad1 (diff) | |
download | freebsd-ports-gnome-6de125f8949a6b2976a80ad3c83005117303be13.tar.gz freebsd-ports-gnome-6de125f8949a6b2976a80ad3c83005117303be13.tar.zst freebsd-ports-gnome-6de125f8949a6b2976a80ad3c83005117303be13.zip |
graphics/truevision: Fix build with Clang 6
matlist.cc:715:13: error: invalid operands to binary expression ('std::__1::ifstream'
(aka 'basic_ifstream<char>') and 'nullptr_t')
if ( ifile != NULL ) {
http://beefy11.nyi.freebsd.org/data/head-i386-default/p478276_s338342/logs/errors/truevision-0.5.5.2_13.log
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/truevision/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/truevision/Makefile b/graphics/truevision/Makefile index 7500867b8b43..8241ca882e34 100644 --- a/graphics/truevision/Makefile +++ b/graphics/truevision/Makefile @@ -16,8 +16,9 @@ LIB_DEPENDS= libgtkglext-x11-1.0.so:x11-toolkits/gtkglext WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R} -USES= desktop-file-utils gettext gmake libtool pathfix pkgconfig \ +USES= desktop-file-utils gettext gmake gnome libtool pathfix pkgconfig \ python:2.7 shared-mime-info tar:bzip2 +USE_CXXSTD= gnu++98 USE_GNOME= gnomeprefix intlhack libgnomeui USE_GL= gl GNU_CONFIGURE= yes |