Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Oct 2020 11:51:44 +0000 (UTC)
From:      Gerald Pfeifer <gerald@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r551487 - head/emulators/wine-devel
Message-ID:  <202010051151.095Bpieu056692@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010051151.095Bpieu056692>