mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
added the descriptions for AC_DEFINE*.
withtout them, autoreconf fails.
This commit is contained in:
parent
138631aa65
commit
96c652f771
1 changed files with 3 additions and 3 deletions
|
|
@ -107,7 +107,7 @@ case "$dir" in
|
|||
/*) ;;
|
||||
*) dir="$PWD/$dir"
|
||||
esac
|
||||
AC_DEFINE_UNQUOTED(DATADIR, "$dir")
|
||||
AC_DEFINE_UNQUOTED(DATADIR, "$dir", [directory containing ALSA configuration database])
|
||||
|
||||
dnl Check for debug...
|
||||
AC_MSG_CHECKING(for debug)
|
||||
|
|
@ -117,13 +117,13 @@ AC_ARG_WITH(debug,
|
|||
if test "$debug" = "yes"; then
|
||||
AC_MSG_RESULT(yes)
|
||||
else
|
||||
AC_DEFINE(NDEBUG)
|
||||
AC_DEFINE(NDEBUG,,[No assert debug])
|
||||
AC_MSG_RESULT(no)
|
||||
fi
|
||||
|
||||
AC_ARG_WITH(softfloat,
|
||||
[ --with-softfloat do you have floating point unit on this machine? (optional)],
|
||||
[ AC_DEFINE(HAVE_SOFT_FLOAT, "1")],)
|
||||
[ AC_DEFINE(HAVE_SOFT_FLOAT, "1", [Avoid calculation in float])],)
|
||||
|
||||
dnl Check for architecture
|
||||
AC_MSG_CHECKING(for architecture)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue