alsa-utils/configure.in

44 lines
1.1 KiB
Text
Raw Normal View History

1998-08-13 17:43:39 +02:00
dnl Process this file with autoconf to produce a configure script.
1999-01-30 20:12:34 +01:00
AC_INIT(alsamixer/alsamixer.c)
1998-08-13 17:43:39 +02:00
AC_PREFIX_DEFAULT(/usr)
2003-05-31 19:49:55 +02:00
AM_INIT_AUTOMAKE(alsa-utils, 0.9.4)
1998-08-13 17:43:39 +02:00
dnl Checks for programs.
AC_PROG_CC
dnl AC_PROG_CXX
1998-08-13 17:43:39 +02:00
AC_PROG_INSTALL
AC_PROG_LN_S
2001-02-25 23:37:18 +01:00
AM_PATH_ALSA(0.9.0)
1998-08-13 17:43:39 +02:00
dnl Checks for header files.
AC_HEADER_STDC
1999-01-30 20:12:34 +01:00
AC_CHECK_LIB(ncurses, initscr,
[ CURSESINC='<ncurses.h>'; CURSESLIB='-lncurses'; ], [
AC_CHECK_LIB(curses, initscr,
2003-03-17 11:33:39 +01:00
[ CURSESINC='<curses.h>'; CURSESLIB='-lcurses'; ],
AC_MSG_ERROR(this packages requires a curses library))
1999-01-30 20:12:34 +01:00
])
AC_SUBST(CURSESINC)
AC_SUBST(CURSESLIB)
dnl Check for Gtk+
dnl AM_PATH_GTK(1.0.1)
dnl CFLAGS="$CFLAGS $GTK_CFLAGS"
1999-01-30 20:12:34 +01:00
AM_CONFIG_HEADER(include/aconfig.h)
1998-08-13 17:43:39 +02: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
1999-03-08 17:51:53 +01:00
SAVE_UTIL_VERSION
AC_OUTPUT(Makefile alsactl/Makefile alsamixer/Makefile amixer/Makefile aplay/Makefile \
include/Makefile utils/Makefile utils/alsa-utils.spec \
seq/Makefile seq/aconnect/Makefile seq/aseqnet/Makefile)