mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
extend the VFSSeekType enum with an unknown element to please clang16; from freebsd
This commit is contained in:
@@ -3,6 +3,8 @@ COMMENT = graphical audio player which supports lots of formats
|
||||
DISTNAME = audacious-${VERSION}
|
||||
PKGNAME = audacious-player-${VERSION}
|
||||
|
||||
REVISION = 0
|
||||
|
||||
SHARED_LIBS += audcore 5.2 # 5.3
|
||||
SHARED_LIBS += audtag 3.0 # 3.0
|
||||
SHARED_LIBS += audqt 0.2 # 2.4
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
Index: src/libaudcore/vfs.h
|
||||
--- src/libaudcore/vfs.h.orig
|
||||
+++ src/libaudcore/vfs.h
|
||||
@@ -51,6 +51,7 @@ enum VFSReadOptions
|
||||
|
||||
enum VFSSeekType
|
||||
{
|
||||
+ VFS_SEEK_UNK = -1,
|
||||
VFS_SEEK_SET = 0,
|
||||
VFS_SEEK_CUR = 1,
|
||||
VFS_SEEK_END = 2
|
||||
Reference in New Issue
Block a user