File: configure.in

package info (click to toggle)
kxl 1.1.7-14
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,568 kB
  • ctags: 329
  • sloc: sh: 6,540; ansic: 1,257; makefile: 68
file content (25 lines) | stat: -rw-r--r-- 637 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/KXL.h)
AM_INIT_AUTOMAKE(KXL, 1.1.7)
dnl Checks for programs.
AC_PROG_CC
AM_PROG_LIBTOOL
dnl Checks for libraries.

dnl Checks for header files.
AC_PATH_XTRA
AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h malloc.h sys/ioctl.h sys/time.h linux/joystick.h linux/soundcard.h)

dnl Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_TIME

dnl Checks for library functions.
AC_PROG_GCC_TRADITIONAL
AC_TYPE_SIGNAL
AC_CHECK_FUNCS(select)

aclocaldir='${datadir}/aclocal'
AC_SUBST(aclocaldir)

AC_OUTPUT([KXL.spec Makefile src/Makefile docs/Makefile])