diff options
author | jbeich <jbeich@FreeBSD.org> | 2018-05-29 10:33:58 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2018-05-29 10:33:58 +0800 |
commit | 0b4e49f2d2a2b90ba86df8e7ee5d5a1c7b375e10 (patch) | |
tree | 956f3a5f0749912f771137bbb22cefef17e50337 | |
parent | 5a58a0553688fdc2f9d70772877a190a059274ad (diff) | |
download | freebsd-ports-gnome-0b4e49f2d2a2b90ba86df8e7ee5d5a1c7b375e10.tar.gz freebsd-ports-gnome-0b4e49f2d2a2b90ba86df8e7ee5d5a1c7b375e10.tar.zst freebsd-ports-gnome-0b4e49f2d2a2b90ba86df8e7ee5d5a1c7b375e10.zip |
emulators/ppsspp: unbreak on armv6/armv7
SDL/SDLGLGraphicsContext.cpp:88:2: error: use of undeclared identifier 'EGL_Init'
EGL_Init();
^
SDL/SDLGLGraphicsContext.cpp:122:18: error: use of undeclared identifier 'g_eglDisplay'
eglSwapBuffers(g_eglDisplay, g_eglSurface);
^
SDL/SDLGLGraphicsContext.cpp:122:32: error: use of undeclared identifier 'g_eglSurface'
eglSwapBuffers(g_eglDisplay, g_eglSurface);
^
SDL/SDLGLGraphicsContext.cpp:139:2: error: use of undeclared identifier 'EGL_Close'
EGL_Close();
^
-rw-r--r-- | emulators/ppsspp/Makefile | 1 | ||||
-rw-r--r-- | emulators/ppsspp/files/patch-no-egl | 18 |
2 files changed, 18 insertions, 1 deletions
diff --git a/emulators/ppsspp/Makefile b/emulators/ppsspp/Makefile index 82fdbbf415a2..dc673035622e 100644 --- a/emulators/ppsspp/Makefile +++ b/emulators/ppsspp/Makefile @@ -36,7 +36,6 @@ EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ,} USE_GL= gl glew glu USE_SDL= sdl2 # joystick CMAKE_ON= USE_SYSTEM_FFMPEG USE_SYSTEM_LIBZIP -CMAKE_OFF= USING_EGL SUB_FILES= pkg-message PORTDATA= assets ${PORTNAME} diff --git a/emulators/ppsspp/files/patch-no-egl b/emulators/ppsspp/files/patch-no-egl new file mode 100644 index 000000000000..962d800fc960 --- /dev/null +++ b/emulators/ppsspp/files/patch-no-egl @@ -0,0 +1,18 @@ +EGL hangs on X11 and doesn't build without GLESv2. +https://github.com/hrydgard/ppsspp/issues/10626 + +--- CMakeLists.txt.orig 2017-12-05 13:51:51 UTC ++++ CMakeLists.txt +@@ -56,12 +56,6 @@ include(ccache) + # Remove soon? + set(USE_FFMPEG ON) + +-if(NOT ANDROID AND NOT IOS) +- if(ARM OR SIMULATOR) +- set(USING_EGL ON) +- endif() +-endif() +- + if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") + set(LINUX ON) + add_definitions(-D__STDC_CONSTANT_MACROS) |