mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-19 09:30:52 +02:00
Disable maintainer mode for soundtouch by adding AM_MAINTAINER_MODE([disable]).
This commit is contained in:
parent
8615c3223c
commit
990fab57c5
@ -235,6 +235,7 @@ http://www.surina.net/soundtouch/
|
|||||||
Independant Pitch and Tempo changing library.
|
Independant Pitch and Tempo changing library.
|
||||||
Version in Audacity SVN: 1.7.1
|
Version in Audacity SVN: 1.7.1
|
||||||
Patches: autotools.patch: Fix all autotools warnings.
|
Patches: autotools.patch: Fix all autotools warnings.
|
||||||
|
AM_MAINTAINER_MODE([disable]) has been added to configure.ac to disable autotools rebuilds.
|
||||||
Upstream Version: 1.7.1
|
Upstream Version: 1.7.1
|
||||||
|
|
||||||
taglib
|
taglib
|
||||||
|
@ -24,6 +24,7 @@ AC_CONFIG_AUX_DIR(config)
|
|||||||
AC_CONFIG_MACRO_DIR([config/m4])
|
AC_CONFIG_MACRO_DIR([config/m4])
|
||||||
AM_CONFIG_HEADER([include/soundtouch_config.h])
|
AM_CONFIG_HEADER([include/soundtouch_config.h])
|
||||||
AM_INIT_AUTOMAKE
|
AM_INIT_AUTOMAKE
|
||||||
|
AM_MAINTAINER_MODE([disable])
|
||||||
#AC_DISABLE_SHARED dnl This makes libtool only build static libs
|
#AC_DISABLE_SHARED dnl This makes libtool only build static libs
|
||||||
AC_DISABLE_STATIC dnl This makes libtool only build shared libs
|
AC_DISABLE_STATIC dnl This makes libtool only build shared libs
|
||||||
#AC_GNU_SOURCE dnl enable posix extensions in glibc
|
#AC_GNU_SOURCE dnl enable posix extensions in glibc
|
||||||
@ -57,14 +58,14 @@ dnl ############################################################################
|
|||||||
AC_HEADER_STDC
|
AC_HEADER_STDC
|
||||||
#AC_HEADER_SYS_WAIT
|
#AC_HEADER_SYS_WAIT
|
||||||
# add any others you want to check for here
|
# add any others you want to check for here
|
||||||
AC_CHECK_HEADERS([cpuid.h])
|
AC_CHECK_HEADERS([cpuid.h])
|
||||||
|
|
||||||
if test "x$ac_cv_header_cpuid_h" = "xno"; then
|
if test "x$ac_cv_header_cpuid_h" = "xno"; then
|
||||||
AC_MSG_WARN([The cpuid.h file was not found therefore the x86 optimizations will be disabled.])
|
AC_MSG_WARN([The cpuid.h file was not found therefore the x86 optimizations will be disabled.])
|
||||||
AC_MSG_WARN([If using a x86 architecture and optimizations are desired then please install gcc (>= 4.3).])
|
AC_MSG_WARN([If using a x86 architecture and optimizations are desired then please install gcc (>= 4.3).])
|
||||||
AC_MSG_WARN([If using a non-x86 architecture then this is expected and can be ignored.])
|
AC_MSG_WARN([If using a non-x86 architecture then this is expected and can be ignored.])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
dnl ############################################################################
|
dnl ############################################################################
|
||||||
dnl # Checks for typedefs, structures, and compiler characteristics $
|
dnl # Checks for typedefs, structures, and compiler characteristics $
|
||||||
@ -106,7 +107,7 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
# Check if optimizations are supported in the system at build time.
|
# Check if optimizations are supported in the system at build time.
|
||||||
if test "x$enable_x86_optimizations" = "xyes" -a "x$ac_cv_header_cpuid_h" = "xyes"; then
|
if test "x$enable_x86_optimizations" = "xyes" -a "x$ac_cv_header_cpuid_h" = "xyes"; then
|
||||||
echo "****** x86 optimizations enabled ******"
|
echo "****** x86 optimizations enabled ******"
|
||||||
|
|
||||||
original_saved_CXXFLAGS=$CXXFLAGS
|
original_saved_CXXFLAGS=$CXXFLAGS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user