File: configure.ac

package info (click to toggle)
fische 3.2.2-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,596 kB
  • sloc: sh: 10,042; cpp: 2,190; ansic: 89; makefile: 58
file content (26 lines) | stat: -rw-r--r-- 536 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
dnl Process this file with autoconf to produce a configure script.
dnl Created by Anjuta application wizard.

AC_INIT(fische, 3.2)

AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AC_CONFIG_HEADERS([config.h])

AC_ISC_POSIX
AC_PROG_CXX
AM_PROG_CC_STDC
AC_HEADER_STDC

AM_PROG_LIBTOOL

AC_CHECK_HEADERS(alsa/asoundlib.h pulse/simple.h portaudio.h)
AC_CHECK_LIB(asound, snd_pcm_open)
AC_CHECK_LIB(pulse-simple, pa_simple_new)
AC_CHECK_LIB(portaudio, Pa_Initialize)

PKG_CHECK_MODULES(SDL, sdl)
AC_OUTPUT([
Makefile
src/Makefile

])