Date: Wed, 26 Feb 2020 23:39:32 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r527227 - head/graphics/viewnior Message-ID: <202002262339.01QNdWxI015979@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Wed Feb 26 23:39:32 2020 New Revision: 527227 URL: https://svnweb.freebsd.org/changeset/ports/527227 Log: graphics/viewnior: fix build on GCC architectures Use C++11 compiler: /usr/local/lib/libexiv2.so: undefined reference to `std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_append(char const*, unsigned long)@GLIBCXX_3.4.21' Modified: head/graphics/viewnior/Makefile Modified: head/graphics/viewnior/Makefile ============================================================================== --- head/graphics/viewnior/Makefile Wed Feb 26 23:26:58 2020 (r527226) +++ head/graphics/viewnior/Makefile Wed Feb 26 23:39:32 2020 (r527227) @@ -13,7 +13,8 @@ LICENSE= GPLv3 LIB_DEPENDS= libexiv2.so:graphics/exiv2 -USES= desktop-file-utils gettext-tools gnome meson ninja pkgconfig +USES= compiler:c++11-lang desktop-file-utils gettext-tools gnome \ + meson ninja pkgconfig USE_GITHUB= yes GH_ACCOUNT= hellosiyan
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002262339.01QNdWxI015979>