1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-18 08:31:13 +02:00

Update libvorbis to 1.3.3.

This commit is contained in:
lllucius
2013-10-24 18:24:47 +00:00
parent 78309687be
commit 3a33e2f717
374 changed files with 119632 additions and 45432 deletions

View File

@@ -16,15 +16,15 @@ libvorbis_la_SOURCES = mdct.c smallft.c block.c envelope.c window.c lsp.c \
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 = 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 = libvorbis.la
libvorbisenc_la_LIBADD = libvorbis.la @OGG_LIBS@
EXTRA_PROGRAMS = barkmel tone psytune
CLEANFILES = $(EXTRA_PROGRAMS)
@@ -37,6 +37,25 @@ psytune_LDADD = libvorbis.la
EXTRA_DIST = lookups.pl
# build and run the self tests on 'make check'
#vorbis_selftests = test_codebook test_sharedbook
vorbis_selftests = test_sharedbook
noinst_PROGRAMS = $(vorbis_selftests)
check: $(noinst_PROGRAMS)
./test_sharedbook$(EXEEXT)
#test_codebook_SOURCES = codebook.c
#test_codebook_CFLAGS = -D_V_SELFTEST
test_sharedbook_SOURCES = sharedbook.c
test_sharedbook_CFLAGS = -D_V_SELFTEST
test_sharedbook_LDADD = @VORBIS_LIBS@
# recurse for alternate targets
debug:
$(MAKE) all CFLAGS="@DEBUG@"