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 *************************************************
|
|
|
|
AM_INIT_AUTOMAKE(alsa-lib, 0.6.0pre1)
|
|
|
|
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
|
1998-11-18 20:42:09 +00:00
|
|
|
AM_PROG_LIBTOOL
|
1998-08-13 15:42:56 +00:00
|
|
|
|
2000-08-29 11:33:02 +00:00
|
|
|
dnl path for linux/asound.h
|
|
|
|
AC_ARG_WITH(kernel,
|
|
|
|
[ --with-kernel=dir give the directory with kernel sources (optional)],
|
|
|
|
[kerneldir="$withval"], [kerneldir=""])
|
|
|
|
if test "$kerneldir" != "" -a -d $kerneldir/include ; then
|
|
|
|
ALSA_CFLAGS="$ALSA_CFLAGS -I$kerneldir/include"
|
2000-08-31 11:06:37 +00:00
|
|
|
CFLAGS="$CFLAGS -I$kerneldir/include"
|
2000-08-29 11:33:02 +00:00
|
|
|
fi
|
|
|
|
AC_MSG_RESULT($ALSA_CFLAGS)
|
|
|
|
|
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)
|
2000-08-29 11:33:02 +00:00
|
|
|
# AC_CHECK_HEADERS(linux/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
|
2000-06-13 09:29:55 +00:00
|
|
|
AC_CHECK_FUNC(hsearch_r, , [ COMPAT_SRCS="$COMPAT_SRCS hsearch_r.c" ])
|
|
|
|
AC_SUBST(COMPAT_SRCS)
|
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
|
|
|
|
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 \
|
1999-11-06 23:47:07 +00:00
|
|
|
src/pcm/plugin/Makefile src/rawmidi/Makefile src/timer/Makefile \
|
2000-01-10 10:07:53 +00:00
|
|
|
src/hwdep/Makefile src/seq/Makefile src/instr/Makefile \
|
2000-08-31 11:21:05 +00:00
|
|
|
src/compat/Makefile src/conf/Makefile src/aserver/Makefile \
|
1998-12-27 00:58:42 +00:00
|
|
|
test/Makefile utils/Makefile \
|
1998-11-18 20:42:09 +00:00
|
|
|
utils/alsa-lib.spec)
|