Update to Wine 5.17. This includes the following changes:
- ADVAPI32 library converted to PE. - Beginnings of an NDIS network driver. - Still more restructuration of the console support. - Various bug fixes. The Wine Staging patchset for this release is broken on FreeBSD and/or with GCC 9, so mark this option as broken: file.c:237:37: error: 'EXTATTR_NAMESPACE_USER' undeclared (first use in this fun ction) 237 | return extattr_get_fd( filedes, EXTATTR_NAMESPACE_USER, &name[XATTR_ USER_PREFIX_LEN], file.c:237:67: error: 'XATTR_USER_PREFIX_LEN' undeclared (first use in this func tion); did you mean 'XATTR_USER_PREFIX'? 237 | return extattr_get_fd( filedes, EXTATTR_NAMESPACE_USER, &name[XATTR_ USER_PREFIX_LEN],
This commit is contained in:
parent
e265804c5c
commit
763b182e2d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=548471
3 changed files with 8 additions and 8 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= wine
|
||||
DISTVERSION= 5.16
|
||||
DISTVERSION= 5.17
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= SF/${PORTNAME}/Source \
|
||||
|
@ -109,6 +109,7 @@ STAGING_EXTRACT_DEPENDS= bash:shells/bash \
|
|||
git:devel/git \
|
||||
autoconf>0:devel/autoconf
|
||||
STAGING_LIB_DEPENDS= libtxc_dxtn.so:graphics/s2tc
|
||||
STAGING_BROKEN= fails to compile: file.c:237:37: error: 'EXTATTR_NAMESPACE_USER' undeclared
|
||||
|
||||
V4L_CONFIGURE_WITH= v4l2
|
||||
V4L_BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1598805458
|
||||
SHA256 (wine-5.16.tar.xz) = 98d9a62f89e20a8f1321aadd4183229aab47ca5b2f12c7e0968cf81634322249
|
||||
SIZE (wine-5.16.tar.xz) = 24025256
|
||||
SHA256 (v5.16.tar.gz) = 241dde851ff04fffa08f9f1c37fd9d30d5ca1e27c1ee31913ff74ac412445dd5
|
||||
SIZE (v5.16.tar.gz) = 9830408
|
||||
TIMESTAMP = 1599901008
|
||||
SHA256 (wine-5.17.tar.xz) = f6438bd01314838131010b0a6e8c04f413bdd890cd10e69ba3e199d0090a1e4f
|
||||
SIZE (wine-5.17.tar.xz) = 24064512
|
||||
SHA256 (v5.17.tar.gz) = 75fda21f97b8548033aac4432fb163b5653c8924cea053679edb012ebdd6e34f
|
||||
SIZE (v5.17.tar.gz) = 10342408
|
||||
|
|
|
@ -27,7 +27,6 @@ include/wine/debug.h
|
|||
include/wine/exception.h
|
||||
include/wine/itss.h
|
||||
include/wine/itss.idl
|
||||
include/wine/library.h
|
||||
include/wine/svcctl.h
|
||||
include/wine/svcctl.idl
|
||||
include/wine/msvcrt/assert.h
|
||||
|
@ -2768,7 +2767,6 @@ lib/wine/libvulkan-1.def
|
|||
lib/wine/libwbemuuid.a
|
||||
lib/wine/libwebservices.def
|
||||
lib/wine/libwer.def
|
||||
%%STAGING%%lib/wine/windows.gaming.input.dll.so
|
||||
lib/wine/libwindowscodecs.a
|
||||
lib/wine/libwindowscodecsext.def
|
||||
lib/wine/libwinecrt0.a
|
||||
|
@ -3138,6 +3136,7 @@ lib/wine/wimgapi.dll.so
|
|||
%%WINE32%%lib/wine/win87em.dll16.so
|
||||
%%WINE32%%lib/wine/winaspi.dll16.so
|
||||
%%WINE32%%lib/wine/windebug.dll16.so
|
||||
%%STAGING%%lib/wine/windows.gaming.input.dll.so
|
||||
lib/wine/windowscodecs.dll.so
|
||||
lib/wine/windowscodecsext.dll.so
|
||||
lib/wine/wineboot.exe.so
|
||||
|
|
Loading…
Reference in a new issue