1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-11 09:03:36 +02:00

Make configure subdirectories in AC_CONFIG_SUBDIRS literal.

This fixes the autoreconf warnings and follows the upstream manual:
http://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Subdirectories.html
This commit is contained in:
benjamin.drung@gmail.com
2013-10-24 23:11:56 +00:00
parent e5701ff177
commit e1eb176ec4
21 changed files with 121 additions and 45 deletions

View File

@@ -62,7 +62,6 @@ AC_DEFUN([AUDACITY_CHECKLIB_LIBFLAC], [
LIBFLAC_LOCAL_CPPSYMBOLS="USE_LIBFLAC"
# this file shouldn't be built at if no libflac is available
LIBFLAC_LOCAL_OPTOBJS="ondemand/ODDecodeFlacTask.o"
LIBFLAC_LOCAL_CONFIG_SUBDIRS="lib-src/libflac"
LIBFLAC_LOCAL_CONFIGURE_ARGS="--disable-xmms-plugin --disable-doxygen-docs --disable-thorough-tests"
AC_MSG_NOTICE([FLAC libraries are available in this source tree])
@@ -73,3 +72,8 @@ AC_DEFUN([AUDACITY_CHECKLIB_LIBFLAC], [
LIBFLAC_MIMETYPES="audio/flac;audio/x-flac;"
])
AC_DEFUN([AUDACITY_CONFIG_SUBDIRS_LIBFLAC], [
if test "$LIBFLAC_USE_LOCAL" = yes; then
AC_CONFIG_SUBDIRS([lib-src/libflac])
fi
])