diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2017-04-07 01:34:22 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2017-04-07 01:34:22 +0000 |
commit | 93bf478ed965bb59745f8e8495be7d4da1ae2c35 (patch) | |
tree | 25969ddb611b4bdcee8893032c5b0c554c198a13 /emulators | |
parent | be4946f767100569f96a032e2f7ff7d61a09e1a2 (diff) | |
download | freebsd-ports-93bf478ed965bb59745f8e8495be7d4da1ae2c35.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} |