mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 17:25:42 +01:00
configure: Fix obsolete AM_CONFIG_HEADER macro
Automake-1.13 removed long obsolete AM_CONFIG_HEADER completely ( http://lists.gnu.org/archive/html/automake/2012-12/msg00038.html ) and errors out upon seeing it. Attached patch replaces it with proper AC_CONFIG_HEADERS. Signed-off-by: Marko Lindqvist <cazfi74@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
de61ec66fe
commit
66d1cf7486
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ AC_ARG_WITH(testsound,
|
||||||
TESTSOUND="$dir/test.wav")
|
TESTSOUND="$dir/test.wav")
|
||||||
AC_SUBST(TESTSOUND)
|
AC_SUBST(TESTSOUND)
|
||||||
|
|
||||||
AM_CONFIG_HEADER(include/aconfig.h)
|
AC_CONFIG_HEADERS(include/aconfig.h)
|
||||||
|
|
||||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
||||||
AC_C_CONST
|
AC_C_CONST
|
||||||
|
|
Loading…
Reference in a new issue