1998-08-13 15:42:56 +00:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
1998-11-18 20:42:09 +00:00
|
|
|
AC_INIT(src/control/control.c)
|
2000-04-03 18:17:59 +00:00
|
|
|
dnl *************************************************
|
|
|
|
dnl current:revision:age
|
|
|
|
dnl change (without API) = c:r+1:a
|
|
|
|
dnl change API = c+1:0:a
|
|
|
|
dnl add API = c+1:0:a+1
|
|
|
|
dnl remove API = c+1:0:0
|
|
|
|
dnl *************************************************
|
2002-02-26 08:55:56 +00:00
|
|
|
AM_INIT_AUTOMAKE(alsa-lib, 0.9.0beta12)
|
2000-04-03 18:17:59 +00:00
|
|
|
eval LIBTOOL_VERSION_INFO="2:0:0"
|
|
|
|
dnl *************************************************
|
1998-11-18 22:35:29 +00:00
|
|
|
AM_CONDITIONAL(INSTALL_M4, test "x${ACLOCAL}" = "xaclocal")
|
1998-08-13 15:42:56 +00:00
|
|
|
|
|
|
|
AC_PREFIX_DEFAULT(/usr)
|
|
|
|
|
|
|
|
dnl Checks for programs.
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_LN_S
|
2001-10-24 14:13:24 +00:00
|
|
|
AC_DISABLE_STATIC
|
2001-07-30 11:56:46 +00:00
|
|
|
AC_LIBTOOL_DLOPEN
|
1998-11-18 20:42:09 +00:00
|
|
|
AM_PROG_LIBTOOL
|
1998-08-13 15:42:56 +00:00
|
|
|
|
2002-02-17 17:49:32 +00:00
|
|
|
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
|
|
|
|
|
2001-10-24 14:13:24 +00:00
|
|
|
dnl path for sound/asound.h
|
2002-02-07 15:57:44 +00:00
|
|
|
AC_MSG_CHECKING(for directory with ALSA kernel headers)
|
2001-10-24 14:13:24 +00:00
|
|
|
AC_ARG_WITH(soundbase,
|
2002-02-17 17:49:32 +00:00
|
|
|
[ --with-soundbase=dir specify base directory with kernel sound headers (optional)],
|
|
|
|
[soundbasedir="$withval"], [soundbasedir="$kerneldir"])
|
2001-10-24 14:13:24 +00:00
|
|
|
if test "$soundbasedir" != "" -a -r "$soundbasedir/sound" ; then
|
|
|
|
ALSA_CFLAGS="$ALSA_CFLAGS -I$soundbasedir"
|
|
|
|
CFLAGS="$CFLAGS -I$soundbasedir"
|
2002-02-07 15:57:44 +00:00
|
|
|
AC_MSG_RESULT($ALSA_CFLAGS)
|
|
|
|
else
|
2002-02-17 17:49:32 +00:00
|
|
|
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
|
|
|
|
AC_MSG_RESULT("not specified - using C compilator defaults")
|
|
|
|
fi
|
2000-08-29 11:33:02 +00:00
|
|
|
fi
|
|
|
|
|
1998-08-13 15:42:56 +00:00
|
|
|
dnl Checks for header files.
|
|
|
|
AC_HEADER_STDC
|
1998-11-18 20:42:09 +00:00
|
|
|
AM_CONFIG_HEADER(include/config.h)
|
2002-02-07 15:57:44 +00:00
|
|
|
AC_CHECK_HEADERS(sound/asound.h)
|
1998-08-13 15:42:56 +00:00
|
|
|
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_C_CONST
|
|
|
|
AC_C_INLINE
|
|
|
|
AC_HEADER_TIME
|
|
|
|
|
|
|
|
dnl Checks for library functions.
|
|
|
|
AC_PROG_GCC_TRADITIONAL
|
2001-03-16 07:34:22 +00:00
|
|
|
AC_CHECK_FUNC([hsearch_r], [HAVE_HSEARCH_R=yes])
|
|
|
|
AM_CONDITIONAL(ALSA_HSEARCH_R, [test "x$HAVE_HSEARCH_R" != xyes])
|
1998-08-13 15:42:56 +00:00
|
|
|
|
1998-11-18 21:27:36 +00:00
|
|
|
ALSA_CHECK_DRIVER
|
1998-11-21 18:47:42 +00:00
|
|
|
SAVE_LIBRARY_VERSION
|
2000-03-11 11:08:08 +00:00
|
|
|
AC_SUBST(LIBTOOL_VERSION_INFO)
|
1998-08-13 15:42:56 +00:00
|
|
|
|
2001-06-26 10:35:39 +00:00
|
|
|
test "x$prefix" = xNONE && prefix=$ac_default_prefix
|
2001-07-01 17:31:39 +00:00
|
|
|
|
|
|
|
eval dir="$datadir"
|
|
|
|
case "$dir" in
|
|
|
|
/*) ;;
|
|
|
|
*) dir="$PWD/$dir"
|
|
|
|
esac
|
|
|
|
AC_DEFINE_UNQUOTED(DATADIR, "$dir")
|
2001-06-26 10:35:39 +00:00
|
|
|
|
2001-07-30 11:56:46 +00:00
|
|
|
dnl Check for debug...
|
|
|
|
AC_MSG_CHECKING(for debug)
|
|
|
|
AC_ARG_WITH(debug,
|
2001-10-24 14:13:24 +00:00
|
|
|
[ --with-debug=yes,no library will (not) be compiled with asserts],
|
2001-07-30 11:56:46 +00:00
|
|
|
debug="$withval", debug="yes")
|
|
|
|
if test "$debug" = "yes"; then
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
else
|
|
|
|
AC_DEFINE(NDEBUG)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
fi
|
|
|
|
|
2001-12-07 14:14:54 +00:00
|
|
|
dnl Check for architecture
|
|
|
|
AC_MSG_CHECKING(for architecture)
|
|
|
|
case "$host_cpu" in
|
|
|
|
i?86*)
|
|
|
|
AC_MSG_RESULT(x86)
|
|
|
|
;;
|
|
|
|
alpha*)
|
|
|
|
AC_MSG_RESULT(alpha)
|
|
|
|
;;
|
|
|
|
powerpc*|ppc*)
|
|
|
|
AC_MSG_RESULT(ppc)
|
|
|
|
CPPFLAGS="$CPPFLAGS -D__ppc__"
|
|
|
|
;;
|
|
|
|
ia64*)
|
|
|
|
AC_MSG_RESULT(ia64)
|
|
|
|
CPPFLAGS="$CPPFLAGS -D__ia64__"
|
|
|
|
;;
|
|
|
|
mips*)
|
|
|
|
AC_MSG_RESULT(mips)
|
|
|
|
CPPFLAGS="$CPPFLAGS -D__mips__"
|
|
|
|
;;
|
|
|
|
arm*)
|
|
|
|
AC_MSG_RESULT(arm)
|
|
|
|
CPPFLAGS="$CPPFLAGS -D__arm__"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
AC_MSG_RESULT($host_cpu)
|
|
|
|
echo "No atomic operations supported.."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
1998-11-18 20:42:09 +00:00
|
|
|
AC_OUTPUT(Makefile doc/Makefile include/Makefile src/Makefile \
|
|
|
|
src/control/Makefile src/mixer/Makefile src/pcm/Makefile \
|
2000-09-26 09:46:05 +00:00
|
|
|
src/rawmidi/Makefile src/timer/Makefile \
|
2000-01-10 10:07:53 +00:00
|
|
|
src/hwdep/Makefile src/seq/Makefile src/instr/Makefile \
|
2001-06-21 13:41:50 +00:00
|
|
|
src/compat/Makefile src/conf/Makefile \
|
|
|
|
src/conf/cards/Makefile src/conf/pcm/Makefile \
|
|
|
|
aserver/Makefile test/Makefile utils/Makefile \
|
2001-10-05 09:44:00 +00:00
|
|
|
utils/alsa-lib.spec)
|