[xiph-commits] r14836 - trunk/vorbis/lib

giles at svn.xiph.org giles at svn.xiph.org
Sun May 4 17:13:31 PDT 2008


Author: giles
Date: 2008-05-04 17:13:31 -0700 (Sun, 04 May 2008)
New Revision: 14836

Modified:
   trunk/vorbis/lib/Makefile.am
Log:
Put the ogg library at the end of the link line for the benefit
of iterative ("single-pass") linkers.


Modified: trunk/vorbis/lib/Makefile.am
===================================================================
--- trunk/vorbis/lib/Makefile.am	2008-05-04 17:37:16 UTC (rev 14835)
+++ trunk/vorbis/lib/Makefile.am	2008-05-05 00:13:31 UTC (rev 14836)
@@ -16,15 +16,15 @@
 			registry.h scales.h window.h lookup.h lookup_data.h\
 			codec_internal.h backends.h bitrate.h 
 libvorbis_la_LDFLAGS = -no-undefined -version-info @V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
-libvorbis_la_LIBADD = @OGG_LIBS@ @VORBIS_LIBS@
+libvorbis_la_LIBADD = @VORBIS_LIBS@ @OGG_LIBS@
 
 libvorbisfile_la_SOURCES = vorbisfile.c
 libvorbisfile_la_LDFLAGS = -no-undefined -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
-libvorbisfile_la_LIBADD = @OGG_LIBS@ libvorbis.la
+libvorbisfile_la_LIBADD = libvorbis.la @OGG_LIBS@
 
 libvorbisenc_la_SOURCES = vorbisenc.c 
 libvorbisenc_la_LDFLAGS = -no-undefined -version-info @VE_LIB_CURRENT@:@VE_LIB_REVISION@:@VE_LIB_AGE@
-libvorbisenc_la_LIBADD = @OGG_LIBS@ libvorbis.la
+libvorbisenc_la_LIBADD = libvorbis.la @OGG_LIBS@
 
 EXTRA_PROGRAMS = barkmel tone psytune
 CLEANFILES = $(EXTRA_PROGRAMS)



More information about the commits mailing list