extend the VFSSeekType enum with an unknown element to please clang16; from freebsd

This commit is contained in:
robert
2023-11-15 09:27:56 +00:00
parent ebd9eec2ec
commit b03b7b6a4f
2 changed files with 13 additions and 0 deletions
+2
View File
@@ -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