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 26 27 28 29
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_INIT(QLiss3D, 1.3.2, daniel_gruen@web.de)
AC_CONFIG_SRCDIR([qliss3d.cpp])
AC_CONFIG_HEADER([config.h])
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
AC_PROG_LN_S
AC_PROG_INSTALL
# Checks for libraries.
BNV_HAVE_QT
# Checks for header files.
AC_CHECK_HEADERS([fcntl.h sys/ioctl.h unistd.h sys/soundcard.h])
# Checks for typedefs, structures, and compiler characteristics.
# AC_HEADER_STDBOOL
AC_C_CONST
# Checks for library functions.
AC_PROG_GCC_TRADITIONAL
AC_CHECK_FUNCS([pow sqrt])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
|