diff options
author | jbeich <jbeich@FreeBSD.org> | 2017-04-07 09:34:22 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2017-04-07 09:34:22 +0800 |
commit | b40a958cf5d196712c22c903c37d58d122323591 (patch) | |
tree | 25969ddb611b4bdcee8893032c5b0c554c198a13 /emulators | |
parent | bea1379cd15c557b4e4fc4d7da90d7a9a2ba9cf3 (diff) | |
download | freebsd-ports-gnome-b40a958cf5d196712c22c903c37d58d122323591.tar.gz freebsd-ports-gnome-b40a958cf5d196712c22c903c37d58d122323591.tar.zst freebsd-ports-gnome-b40a958cf5d196712c22c903c37d58d122323591.zip |
emulators/ppsspp: don't enable EGL by default on arm
ext/native/base/PCMain.cpp:75:10: fatal error: 'EGL/egl.h' file not found
#include "EGL/egl.h"
^
1 error generated.
Reported by: pkg-fallout
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/ppsspp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/ppsspp/Makefile b/emulators/ppsspp/Makefile index 0f3d99e72876..784070bb58f7 100644 --- a/emulators/ppsspp/Makefile +++ b/emulators/ppsspp/Makefile @@ -42,7 +42,7 @@ EXCLUDE= libzip zlib EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ,} USE_GL= gl glew glu USE_SDL= sdl2 # joystick -CMAKE_ARGS= -DUSE_SYSTEM_FFMPEG=on +CMAKE_ARGS= -DUSING_EGL=off -DUSE_SYSTEM_FFMPEG=on SUB_FILES= pkg-message PORTDATA= assets ${PORTNAME} |