ALSA has been the default on Linux for ages and is what the
majority of upstream Wine developers use. More importantly,
though, it appears newer versions of Wine aren't actually
quite working with OSS. So, switch the default over to ALSA.
(This backports 06e0feb25f from emulators/wine.)
Bump PORTREVISION.
PR: 268164
Krill Lebedev has asked for maintainership of this port. As I am
spending less time on ports, I decided to change the maintainer email to
kirill@drlebedev.com.
The purpose of this project is to provide a cross platform library which
can parse, modify and abstract ELF, PE and MachO formats.
Main features:
- Parsing: LIEF can parse ELF, PE, MachO, OAT, DEX, VDEX, ART and
provides a user-friendly API to access to format internals.
- Modify: LIEF enables to modify some parts of these formats
- Abstract: Three formats have common features like sections, symbols,
entry point... LIEF factors them.
- API: LIEF can be used in C, C++ and Python
WWW: https://github.com/lief-project/lief
PR: 257041
- The build process simply runsaway without giving any errors at the
build stage
- Mark DEPRECATED as the upstream EOL reaches on 2025-06-30
- Set EXPIRATION_DATE to 2025-06-30
Approved by: portmgr (blanket)
Sponsored by: The FreeBSD Foundation
- The build process simply runsaway without giving any errors at the
build stage
- Mark DEPRECATED as the upstream EOL reaches on 2024-06-30
- Set EXPIRATION_DATE to 2024-06-30
Approved by: portmgr (blanket)
Sponsored by: The FreeBSD Foundation
Restore -nolock when using -displayfd for consistency with Xorg and Linux.
Now prints a benign warning for every used display e.g.,
$ for dpy in :0 :1 :2 :3; do daemon -f Xwayland $dpy; done
$ Xwayland -displayfd 1
_XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed
_XSERVTransMakeAllCOTSServerListeners: server already running
_XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed
_XSERVTransMakeAllCOTSServerListeners: server already running
_XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed
_XSERVTransMakeAllCOTSServerListeners: server already running
_XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed
_XSERVTransMakeAllCOTSServerListeners: server already running
4
[...]
See also https://lists.freedesktop.org/archives/xorg-devel/2015-March/045899.html
wlroots, kwin_wayland, mutter already create /tmp/.X*-lock files.
This reverts commit fb41bd9ef0.
Without this change calling `Xorg -displayfd ..` would always make X to use
:0 as the DISPLAY. This was a showstopper for running parallel desktop sessions.
The leftover UDS' are cleaned up during system's boot by the /etc/rc.d/cleartmp
service.
Based on work of jbeich and Olivier Certner <olivier.freebsd@free.fr>.
PR: 253277
Approved by: manu
Sponsored by: Serenity Cybersecurity, LLC
Differential Revision: https://reviews.freebsd.org/D30557