mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-03 09:01:52 -05:00
0.9.0beta11 and changed --with-soundbase and --with-kernel
This commit is contained in:
parent
1e2b37dd4e
commit
15357a9875
1 changed files with 32 additions and 4 deletions
34
configure.in
34
configure.in
|
|
@ -7,7 +7,7 @@ dnl change API = c+1:0:a
|
||||||
dnl add API = c+1:0:a+1
|
dnl add API = c+1:0:a+1
|
||||||
dnl remove API = c+1:0:0
|
dnl remove API = c+1:0:0
|
||||||
dnl *************************************************
|
dnl *************************************************
|
||||||
AM_INIT_AUTOMAKE(alsa-lib, 0.9.0beta10a)
|
AM_INIT_AUTOMAKE(alsa-lib, 0.9.0beta11)
|
||||||
eval LIBTOOL_VERSION_INFO="2:0:0"
|
eval LIBTOOL_VERSION_INFO="2:0:0"
|
||||||
dnl *************************************************
|
dnl *************************************************
|
||||||
AM_CONDITIONAL(INSTALL_M4, test "x${ACLOCAL}" = "xaclocal")
|
AM_CONDITIONAL(INSTALL_M4, test "x${ACLOCAL}" = "xaclocal")
|
||||||
|
|
@ -22,18 +22,46 @@ AC_DISABLE_STATIC
|
||||||
AC_LIBTOOL_DLOPEN
|
AC_LIBTOOL_DLOPEN
|
||||||
AM_PROG_LIBTOOL
|
AM_PROG_LIBTOOL
|
||||||
|
|
||||||
|
dnl kernel header files
|
||||||
|
AC_MSG_CHECKING(for kernel header files)
|
||||||
|
AC_ARG_WITH(kernel,
|
||||||
|
[ --with-kernel=ver specify kernel version (for example 2.5.5-pre1)],
|
||||||
|
[kerneldir="$withval"], [kerneldir=""])
|
||||||
|
if test "$kerneldir" != "" -a -r "/lib/modules/$kerneldir/build/include/sound"; then
|
||||||
|
kerneldir="/lib/modules/$kerneldir/build/include"
|
||||||
|
AC_MSG_RESULT($kerneldir)
|
||||||
|
else
|
||||||
|
if test -z "$kerneldir"; then
|
||||||
|
AC_MSG_RESULT("not specified")
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT("directory /lib/modules/$kerneldir/build/include/sound not found")
|
||||||
|
fi
|
||||||
|
kerneldir=""
|
||||||
|
fi
|
||||||
|
|
||||||
dnl path for sound/asound.h
|
dnl path for sound/asound.h
|
||||||
AC_MSG_CHECKING(for directory with ALSA kernel headers)
|
AC_MSG_CHECKING(for directory with ALSA kernel headers)
|
||||||
AC_ARG_WITH(soundbase,
|
AC_ARG_WITH(soundbase,
|
||||||
[ --with-soundbase=dir give the base directory with sound headers (optional)],
|
[ --with-soundbase=dir specify base directory with kernel sound headers (optional)],
|
||||||
[soundbasedir="$withval"], [soundbasedir=""])
|
[soundbasedir="$withval"], [soundbasedir="$kerneldir"])
|
||||||
if test "$soundbasedir" != "" -a -r "$soundbasedir/sound" ; then
|
if test "$soundbasedir" != "" -a -r "$soundbasedir/sound" ; then
|
||||||
ALSA_CFLAGS="$ALSA_CFLAGS -I$soundbasedir"
|
ALSA_CFLAGS="$ALSA_CFLAGS -I$soundbasedir"
|
||||||
CFLAGS="$CFLAGS -I$soundbasedir"
|
CFLAGS="$CFLAGS -I$soundbasedir"
|
||||||
AC_MSG_RESULT($ALSA_CFLAGS)
|
AC_MSG_RESULT($ALSA_CFLAGS)
|
||||||
|
else
|
||||||
|
if test "x$prefix" != xNONE; then
|
||||||
|
aprefix=$prefix
|
||||||
|
else
|
||||||
|
aprefix=$ac_default_prefix
|
||||||
|
fi
|
||||||
|
if test -z "$soundbasedir" -a -r "$aprefix/include/sound"; then
|
||||||
|
ALSA_CFLAGS="$ALSA_CFLAGS -I$aprefix/include"
|
||||||
|
CFLAGS="$CFLAGS -I$aprefix/include"
|
||||||
|
AC_MSG_RESULT($ALSA_CFLAGS)
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT("not specified - using C compilator defaults")
|
AC_MSG_RESULT("not specified - using C compilator defaults")
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
dnl Checks for header files.
|
dnl Checks for header files.
|
||||||
AC_HEADER_STDC
|
AC_HEADER_STDC
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue