search for: libvorbisfile_la_libadd

Displaying 6 results from an estimated 6 matches for "libvorbisfile_la_libadd".

2004 Dec 29
0
Need @OGG_LIBS@ added to libvorbisfile_la_LIBADD in trunk/vorbis/lib/Makefile.am
...1.1.0 on Cygwin and I discovered a missing dependency that may not affect other platforms. I found that I had to add -logg to the libvorbisfile.la rule in the Makefile. Working its way back upstream through configure and autogen, it looks like the following line in trunk/vorbis/lib/Makefile.am libvorbisfile_la_LIBADD = libvorbis.la just needs to be changed to libvorbisfile_la_LIBADD = libvorbis.la @OGG_LIBS@ Is this correct? I assume that building a shared library on a "real" Unix platform doesn't require every symbol to be defined at build time, but building on Windows does. Or something lik...
2000 Nov 10
1
cvs trunk vorbis/ compile patches
...orbis.la $(OGG_LIBS) debug: diff -bBu2rN -x CVS -x Make*in -x aclocal.m4 vorbis-trunk/lib/Makefile.am vorbis/lib/Makefile.am --- vorbis-trunk/lib/Makefile.am Wed Nov 8 19:53:45 2000 +++ vorbis/lib/Makefile.am Thu Nov 9 21:13:49 2000 @@ -20,9 +20,9 @@ libvorbisfile_la_SOURCES = vorbisfile.c -libvorbisfile_la_LIBADD = libvorbis.la +#libvorbisfile_la_LIBADD = libvorbis.la libvorbisfile_la_LDFLAGS = -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@ libvorbisenc_la_SOURCES = vorbisenc.c -libvorbisenc_la_LIBADD = libvorbis.la +#libvorbisenc_la_LIBADD = libvorbis.la libvorbisenc_la_LDFLAGS = -versi...
2000 Nov 18
1
beta 3 release build is broken on BeOS
Seems we've gone back to the -L/path/to/libvorbis/ -lvorbis missing while building libvorbisfile :( it appears that. libvorbisfile_la_LIBADD = libvorbis.la and libvorbisenc_la_LIBADD = libvorbis.la have gone missing from vorbis/lib/makefile.am Dave --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph....
2000 Nov 09
4
libvorbis compile failure
The latest CVS update of libvorbis fails to compile on SuSE Linux 6.4. The error is below. Also, what happened to the xmms plugin directory in cvs? It complains that it is missing when I do a 'cvs update'. gcc -DPACKAGE=\"libvorbis\" -DVERSION=\"1.0beta3\" -DHAVE_ALLOCA_H=1 -DHAVE_ ALLOCA=1 -I. -I. -I../include -O20 -ffast-math -mno-ieee-fp -D_REENTRANT -fs
2005 Mar 11
0
Patch to fix Vorbis build buster
..._la_LIBADD = @OGG_LIBS@ @VORBIS_LIBS@ libvorbisfile_la_SOURCES = vorbisfile.c -libvorbisfile_la_LDFLAGS = -no-undefined -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@ +libvorbisfile_la_LDFLAGS = -no-undefined -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@ @OGG_LIBS@ libvorbisfile_la_LIBADD = libvorbis.la libvorbisenc_la_SOURCES = vorbisenc.c
2000 Apr 21
5
BeOS diffs
HI, how do I get mods applied to Vorbis, I'm not a cvs guru and I don't know much about configure scripts. BeOS has this little quirk of being 99% POSIX compliant so these mods are required for vorbis to compile. To define int64_t in codec.h #ifdef __BEOS__ #include <inttypes.h> #endif run.c in vq needs 'changing' around line 141 becuase S_IFSOCK isn't