diff options
author | jbeich <jbeich@FreeBSD.org> | 2018-10-17 01:37:56 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2018-10-17 01:37:56 +0800 |
commit | 0b7f31c066a4acbd09731bac99ddf65ac7d25223 (patch) | |
tree | f5abcb0f0c253252ca76e23f368d240d276b0b4d | |
parent | c80cb5c077ec88f397a1f52c171faace1f62edf9 (diff) | |
download | freebsd-ports-gnome-0b7f31c066a4acbd09731bac99ddf65ac7d25223.tar.gz freebsd-ports-gnome-0b7f31c066a4acbd09731bac99ddf65ac7d25223.tar.zst freebsd-ports-gnome-0b7f31c066a4acbd09731bac99ddf65ac7d25223.zip |
emulators/ppsspp: unbreak after r482190
SDL/SDLVulkanGraphicsContext.cpp:73:67: error: no member named 'wl' in 'SDL_SysWMinfo::<anonymous union at /usr/local/include/SDL2/SDL_syswm.h:198:5>'
vulkan_->InitSurface(WINDOWSYSTEM_WAYLAND, (void*)sys_info.info.wl.display,
~~~~~~~~~~~~~ ^
PR: 223018
Reported by: pkg-fallout
-rw-r--r-- | emulators/ppsspp/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emulators/ppsspp/Makefile b/emulators/ppsspp/Makefile index 23482de31694..439a9b4daa99 100644 --- a/emulators/ppsspp/Makefile +++ b/emulators/ppsspp/Makefile @@ -74,6 +74,7 @@ SDL_LIB_DEPENDS= libpng.so:graphics/png SDL_VARS= EXENAME=PPSSPPSDL VULKAN_DESC= Vulkan renderer VULKAN_LIB_DEPENDS= libvulkan.so:graphics/vulkan-loader +VULKAN_CFLAGS= -DSDL_VIDEO_DRIVER_WAYLAND # XXX bug 223018, bug 227509 post-patch: @${REINPLACE_CMD} -e 's/Linux/${OPSYS}/' \ |