Date: Fri, 22 Jun 2018 09:35:05 +0000 (UTC) From: Niclas Zeising <zeising@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473029 - head/graphics/mesa-dri/files Message-ID: <201806220935.w5M9Z5u8039078@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: zeising Date: Fri Jun 22 09:35:05 2018 New Revision: 473029 URL: https://svnweb.freebsd.org/changeset/ports/473029 Log: Add a patch to fix build with BSD grep Since this is not the default, no need to bump portrevision. PR: 228673 Submitted by: Stefan Esser Modified: head/graphics/mesa-dri/files/patch-configure Modified: head/graphics/mesa-dri/files/patch-configure ============================================================================== --- head/graphics/mesa-dri/files/patch-configure Fri Jun 22 09:33:47 2018 (r473028) +++ head/graphics/mesa-dri/files/patch-configure Fri Jun 22 09:35:05 2018 (r473029) @@ -51,6 +51,22 @@ dri3_default=yes ;; *) +@@ -26765,13 +26765,13 @@ + have_vdpau_platform=no + fi + +-if echo $platforms | grep -q "x11\|drm"; then ++if echo $platforms | egrep -q "x11|drm"; then + have_omx_platform=yes + else + have_omx_platform=no + fi + +-if echo $platforms | grep -q "x11\|drm\|wayland"; then ++if echo $platforms | egrep -q "x11|drm|wayland"; then + have_va_platform=yes + else + have_va_platform=no @@ -27096,9 +27106,6 @@ rm -f core conftest.err conftest.$ac_obj CLANG_LIBDIR=${LLVM_LIBDIR} fi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806220935.w5M9Z5u8039078>