1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-15 15:49:36 +02:00

Don't configure taglib, or ship it in the tarballs as we don't use or need it

This commit is contained in:
richardash1981 2010-03-06 16:41:45 +00:00
parent 430c64084f
commit 1b87171291
3 changed files with 3702 additions and 2096 deletions

5792
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -305,7 +305,7 @@ dnl can do without if they aren't available.
dnl------------------------------------------------------------- dnl-------------------------------------------------------------
dnl LIBRARIES="LIBVORBIS LIBMAD LIBSNDFILE LIBFLAC LIBID3TAG LIBSAMPLERATE LIBRESAMPLE LIBSBSMS LIBSOUNDTOUCH LIBNYQUIST LIBVAMP LIBEXPAT LIBTWOLAME FFMPEG LIBLRDF SLV2 REDLAND PORTSMF TAGLIB" dnl LIBRARIES="LIBVORBIS LIBMAD LIBSNDFILE LIBFLAC LIBID3TAG LIBSAMPLERATE LIBRESAMPLE LIBSBSMS LIBSOUNDTOUCH LIBNYQUIST LIBVAMP LIBEXPAT LIBTWOLAME FFMPEG LIBLRDF SLV2 REDLAND PORTSMF TAGLIB"
dnl disable plugin categorisation and LV2 libs for 1.3.7 release dnl disable plugin categorisation and LV2 libs for 1.3.7 release
LIBRARIES="LIBVORBIS LIBMAD LIBSNDFILE LIBFLAC LIBID3TAG LIBSAMPLERATE LIBRESAMPLE LIBSBSMS LIBSOUNDTOUCH LIBNYQUIST LIBVAMP LIBEXPAT LIBTWOLAME FFMPEG PORTSMF TAGLIB" LIBRARIES="LIBVORBIS LIBMAD LIBSNDFILE LIBFLAC LIBID3TAG LIBSAMPLERATE LIBRESAMPLE LIBSBSMS LIBSOUNDTOUCH LIBNYQUIST LIBVAMP LIBEXPAT LIBTWOLAME FFMPEG PORTSMF"
AC_MSG_NOTICE([Determining what libraries are available in this tree and on the system]) AC_MSG_NOTICE([Determining what libraries are available in this tree and on the system])
@ -327,7 +327,7 @@ dnl AUDACITY_CHECKLIB_REDLAND
dnl AUDACITY_CHECKLIB_SLV2 dnl AUDACITY_CHECKLIB_SLV2
dnl AUDACITY_CHECKLIB_LIBLRDF dnl AUDACITY_CHECKLIB_LIBLRDF
AUDACITY_CHECKLIB_PORTSMF AUDACITY_CHECKLIB_PORTSMF
AUDACITY_CHECKLIB_TAGLIB dnl AUDACITY_CHECKLIB_TAGLIB
dnl Decide what libraries to build with, and whether to use system or local libraries dnl Decide what libraries to build with, and whether to use system or local libraries
dnl Set variables based on choices. dnl Set variables based on choices.

View File

@ -123,7 +123,7 @@ function cleanfulltree {
printf "removing unused libraries from SVN tree ..." printf "removing unused libraries from SVN tree ..."
myrmrvf $1 lib-src/iAVC lib-src/id3lib ; myrmrvf $1 lib-src/iAVC lib-src/id3lib ;
myrmrvf $1 lib-src/portaudio lib-src/portburn lib-src/rtaudio; myrmrvf $1 lib-src/portaudio lib-src/portburn lib-src/rtaudio;
myrmrvf $1 lib-src/wave++; myrmrvf $1 lib-src/wave++ lib-src/taglib;
printf "Done\n" printf "Done\n"
} }