[xiph-commits] r14833 - trunk/vorbis/lib
erikd at svn.xiph.org
erikd at svn.xiph.org
Sat May 3 17:47:00 PDT 2008
Author: erikd
Date: 2008-05-03 17:47:00 -0700 (Sat, 03 May 2008)
New Revision: 14833
Modified:
trunk/vorbis/lib/Makefile.am
Log:
Fix linking to libogg when cross compiling from Linux to Win32.
Modified: trunk/vorbis/lib/Makefile.am
===================================================================
--- trunk/vorbis/lib/Makefile.am 2008-05-03 23:24:39 UTC (rev 14832)
+++ trunk/vorbis/lib/Makefile.am 2008-05-04 00:47:00 UTC (rev 14833)
@@ -20,11 +20,11 @@
libvorbisfile_la_SOURCES = vorbisfile.c
libvorbisfile_la_LDFLAGS = -no-undefined -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
-libvorbisfile_la_LIBADD = libvorbis.la
+libvorbisfile_la_LIBADD = @OGG_LIBS@ libvorbis.la
libvorbisenc_la_SOURCES = vorbisenc.c
libvorbisenc_la_LDFLAGS = -no-undefined -version-info @VE_LIB_CURRENT@:@VE_LIB_REVISION@:@VE_LIB_AGE@
-libvorbisenc_la_LIBADD = libvorbis.la
+libvorbisenc_la_LIBADD = @OGG_LIBS@ libvorbis.la
EXTRA_PROGRAMS = barkmel tone psytune
CLEANFILES = $(EXTRA_PROGRAMS)
More information about the commits
mailing list