mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
32 lines
792 B
Text
32 lines
792 B
Text
dnl Process this file with autoconf to produce a configure script.
|
|
AC_INIT(src/control/control.c)
|
|
AM_INIT_AUTOMAKE(alsa-lib, 0.1.2)
|
|
|
|
AC_PREFIX_DEFAULT(/usr)
|
|
|
|
dnl Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
AC_PROG_LN_S
|
|
AM_PROG_LIBTOOL
|
|
|
|
dnl Checks for header files.
|
|
AC_HEADER_STDC
|
|
AM_CONFIG_HEADER(include/config.h)
|
|
AC_CHECK_HEADERS(linux/asound.h)
|
|
|
|
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
|
|
|
|
AM_PATH_ALSA
|
|
|
|
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)
|