alsa-lib/configure.in

34 lines
857 B
Text
Raw Normal View History

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)
1998-11-18 21:14:18 +00:00
AM_INIT_AUTOMAKE(alsa-lib, 0.1.3)
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
dnl Checks for header files.
AC_HEADER_STDC
1998-11-18 20:42:09 +00:00
AM_CONFIG_HEADER(include/config.h)
1998-08-30 21:08:44 +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_C_BIGENDIAN
AC_HEADER_TIME
dnl Checks for library functions.
AC_PROG_GCC_TRADITIONAL
ALSA_CHECK_DRIVER
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 \
src/rawmidi/Makefile test/Makefile utils/Makefile include/version.h \
utils/alsa-lib.spec)