svn commit: r551487 - head/emulators/wine-devel
Gerald Pfeifer
gerald at FreeBSD.org
Mon Oct 5 11:51:44 UTC 2020
Author: gerald
Date: Mon Oct 5 11:51:43 2020
New Revision: 551487
URL: https://svnweb.freebsd.org/changeset/ports/551487
Log:
Add an option SDL that uses SDL 2, a cross-platform multimedia development
API which can be useful particularly when it comes to supporting games.
This is off by default for now in alignment with the status quo.
Submitted by: Alex S <iwtcex at gmail.com>
PR: 249869
Modified:
head/emulators/wine-devel/Makefile
Modified: head/emulators/wine-devel/Makefile
==============================================================================
--- head/emulators/wine-devel/Makefile Mon Oct 5 11:17:08 2020 (r551486)
+++ head/emulators/wine-devel/Makefile Mon Oct 5 11:51:43 2020 (r551487)
@@ -43,7 +43,6 @@ CONFIGURE_ARGS+=--verbose \
--with-oss \
--without-pulse \
--without-sane \
- --without-sdl \
--without-tiff \
--without-udev \
--without-unwind \
@@ -60,12 +59,13 @@ SUB_FILES= pkg-message
PORTDATA= wine.inf
-OPTIONS_DEFINE= CUPS DOCS DOSBOX GCC GNUTLS HAL LDAP LIBXSLT MPG123 OPENAL STAGING V4L VKD3D VULKAN WINEMAKER X11 GECKO MONO
+OPTIONS_DEFINE= CUPS DOCS DOSBOX GCC GNUTLS HAL LDAP LIBXSLT MPG123 OPENAL SDL STAGING V4L VKD3D VULKAN WINEMAKER X11 GECKO MONO
OPTIONS_DEFAULT=GCC GNUTLS X11
OPTIONS_SUB= yes
DOSBOX_DESC= Use DOSBox to run MS-DOS programs
LIBXSLT_DESC= Use libxslt (only used by msxml3.dll)
+SDL_DESC= Use SDL for gamepad support (XInput only)
STAGING_DESC= Include the Wine Staging patchset (experimental)
VKD3D_DESC= Direct3D 12 support via Vulkan
VULKAN_DESC= Vulkan API support
@@ -102,6 +102,10 @@ MPG123_LIB_DEPENDS= libmpg123.so:audio/mpg123
OPENAL_CONFIGURE_WITH= openal
OPENAL_USES= openal
+
+SDL_CONFIGURE_WITH= sdl
+SDL_USES= sdl
+SDL_USE= SDL=sdl2
STAGING_MASTER_SITES= https://github.com/wine-staging/wine-staging/archive/:staging
STAGING_DIST= v${DISTVERSION}.tar.gz
More information about the svn-ports-head
mailing list