- added --with-tmpdir configure option.

the directory used for socket files of direct pcm plugins.
This commit is contained in:
Takashi Iwai 2004-02-09 17:04:09 +00:00
parent de88f0e586
commit 3ade181c4f
2 changed files with 12 additions and 4 deletions

View file

@ -116,6 +116,14 @@ else
AC_MSG_RESULT(no)
fi
dnl Temporary directory
AC_MSG_CHECKING(for tmpdir)
AC_ARG_WITH(tmpdir,
[ --with-tmpdir=directory directory to put tmp socket files (/tmp)],
tmpdir="$withval", tmpdir="/tmp")
AC_MSG_RESULT($tmpdir)
AC_DEFINE_UNQUOTED(TMPDIR, "$tmpdir", [directory to put tmp socket files])
dnl Check for softfloat...
AC_MSG_CHECKING(for softfloat)
AC_ARG_WITH(softfloat,