diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2018-04-24 13:57:28 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2018-04-24 13:57:28 +0000 |
commit | b4fe4581e07345d84161080e020b96388021858f (patch) | |
tree | a8878bcef7165d2fcfd21347e29819165615cade /emulators | |
parent | 772d7713a605240b595ec265ac9faa51aa9baa05 (diff) | |
download | freebsd-ports-b4fe4581e07345d84161080e020b96388021858f.zip |
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
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/ppsspp/Makefile | 3 | ||||
-rw-r--r-- | emulators/ppsspp/distinfo | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/emulators/ppsspp/Makefile b/emulators/ppsspp/Makefile index 4d82fef3a2cc..3fba6e7d8ff0 100644 --- a/emulators/ppsspp/Makefile +++ b/emulators/ppsspp/Makefile @@ -10,6 +10,9 @@ MASTER_SITES= https://bazaar.launchpad.net/~sergio-br2/${PORTNAME}/debian-sdl/do 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@FreeBSD.org COMMENT= PSP emulator in C++ with dynarec JIT for x86, ARM, MIPS diff --git a/emulators/ppsspp/distinfo b/emulators/ppsspp/distinfo index 5f6cc258f35a..4fa4b632e1b7 100644 --- a/emulators/ppsspp/distinfo +++ b/emulators/ppsspp/distinfo @@ -13,3 +13,5 @@ SHA256 (Kingcom-armips-v0.9-89-g8b4cada_GH0.tar.gz) = c41aa68bd6798356af568509de 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 |