From f8db5fccbefee035971e5a8dd23d27cfe77944cd Mon Sep 17 00:00:00 2001 From: havoc Date: Sun, 12 Feb 2006 20:59:15 +0000 Subject: [PATCH] changed vorbis.dll and friends to use lib prefix (libvorbis.dll) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5978 d7cf8633-e32d-0410-b094-e92efae38249 --- snd_ogg.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/snd_ogg.c b/snd_ogg.c index 4919a572..0f23a222 100644 --- a/snd_ogg.c +++ b/snd_ogg.c @@ -297,9 +297,9 @@ qboolean OGG_OpenLibrary (void) const char* dllnames_vo [] = { #if defined(WIN64) - "vorbis64.dll", + "libvorbis64.dll", #elif defined(WIN32) - "vorbis.dll", + "libvorbis.dll", #elif defined(MACOSX) "libvorbis.dylib", #else @@ -311,9 +311,9 @@ qboolean OGG_OpenLibrary (void) const char* dllnames_vf [] = { #if defined(WIN64) - "vorbisfile64.dll", + "libvorbisfile64.dll", #elif defined(WIN32) - "vorbisfile.dll", + "libvorbisfile.dll", #elif defined(MACOSX) "libvorbisfile.dylib", #else -- 2.39.2