svn commit: r468208 - head/emulators/ppsspp
Jan Beich
jbeich at FreeBSD.org
Tue Apr 24 13:57:29 UTC 2018
Author: jbeich
Date: Tue Apr 24 13:57:28 2018
New Revision: 468208
URL: https://svnweb.freebsd.org/changeset/ports/468208
Log:
emulators/ppsspp: unbreak with ffmpeg 4.0
Core/HLE/sceMpeg.cpp:890:27: error: use of undeclared identifier 'FF_INPUT_BUFFER_PADDING_SIZE'
u8* str = new u8[size + FF_INPUT_BUFFER_PADDING_SIZE];
^
Core/HLE/sceMpeg.cpp:892:25: error: use of undeclared identifier 'FF_INPUT_BUFFER_PADDING_SIZE'
memset(str + size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
^
Core/HLE/sceMpeg.cpp:893:11: error: use of undeclared identifier 'FF_INPUT_BUFFER_PADDING_SIZE'
size += FF_INPUT_BUFFER_PADDING_SIZE;
^
PR: 227726
Obtained from: upstream
Modified:
head/emulators/ppsspp/Makefile (contents, props changed)
head/emulators/ppsspp/distinfo (contents, props changed)
Modified: head/emulators/ppsspp/Makefile
==============================================================================
--- head/emulators/ppsspp/Makefile Tue Apr 24 13:57:16 2018 (r468207)
+++ head/emulators/ppsspp/Makefile Tue Apr 24 13:57:28 2018 (r468208)
@@ -10,6 +10,9 @@ MASTER_SITES= https://bazaar.launchpad.net/~sergio-br2
DISTFILES= ${PORTNAME}.1:manpage
EXTRACT_ONLY= ${DISTFILES:N*\:manpage:C/:.*//}
+PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
+PATCHFILES= 70c54a7d1ab1.patch:-p1
+
MAINTAINER= jbeich at FreeBSD.org
COMMENT= PSP emulator in C++ with dynarec JIT for x86, ARM, MIPS
Modified: head/emulators/ppsspp/distinfo
==============================================================================
--- head/emulators/ppsspp/distinfo Tue Apr 24 13:57:16 2018 (r468207)
+++ head/emulators/ppsspp/distinfo Tue Apr 24 13:57:28 2018 (r468208)
@@ -13,3 +13,5 @@ SHA256 (Kingcom-armips-v0.9-89-g8b4cada_GH0.tar.gz) =
SIZE (Kingcom-armips-v0.9-89-g8b4cada_GH0.tar.gz) = 191171
SHA256 (Kingcom-tinyformat-Release-2.0.1-7-gb7f5a22_GH0.tar.gz) = d86b5b4592047254c5118d0639e51d00869b3adc2f2c5419fdf29381ca42011e
SIZE (Kingcom-tinyformat-Release-2.0.1-7-gb7f5a22_GH0.tar.gz) = 22286
+SHA256 (70c54a7d1ab1.patch) = bb8cda9414a11fd611c6214e3c46d30ad373b3f1a68b3c8afb60311e830ca1c6
+SIZE (70c54a7d1ab1.patch) = 1111
More information about the svn-ports-all
mailing list