[go: up one dir, main page]

File: configure.in

package info (click to toggle)
qliss3d 1.3.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 676 kB
  • ctags: 306
  • sloc: cpp: 1,303; sh: 153; makefile: 135; ansic: 10
file content (29 lines) | stat: -rw-r--r-- 663 bytes parent folder | download | duplicates (3)
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