Date: Wed, 30 Sep 2020 18:20:56 +0000 (UTC) From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= <fernape@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550729 - head/multimedia/shotcut/files Message-ID: <202009301820.08UIKuVs097257@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: fernape Date: Wed Sep 30 18:20:55 2020 New Revision: 550729 URL: https://svnweb.freebsd.org/changeset/ports/550729 Log: multimedia/shotcut: Fix build. Add missing patch. This patch was missing from r550683 PR: 250010 Reported by: vvd@unislabs.com Added: head/multimedia/shotcut/files/ head/multimedia/shotcut/files/patch-src_spatialmedia_constants.h (contents, props changed) Added: head/multimedia/shotcut/files/patch-src_spatialmedia_constants.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/shotcut/files/patch-src_spatialmedia_constants.h Wed Sep 30 18:20:55 2020 (r550729) @@ -0,0 +1,19 @@ +--- src/spatialmedia/constants.h.orig 2020-09-20 19:10:00 UTC ++++ src/spatialmedia/constants.h +@@ -19,6 +19,7 @@ + + #include <stdint.h> + #include <string> ++#include <sys/param.h> + + #include <QtEndian> + #if defined(Q_OS_WIN) || defined(Q_OS_MAC) +@@ -34,6 +35,8 @@ + # define htole64(x) qtoLittleEndian(x) + # define be64toh(x) qFromBigEndian(x) + # define le64toh(x) qFromLittleEndian(x) ++#elif defined(__FreeBSD__) ++# include <sys/endian.h> + #else + # include <endian.h> + #endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009301820.08UIKuVs097257>