File: configure.ac

package info (click to toggle)
libsoundgen 0.6-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,384 kB
  • ctags: 65
  • sloc: sh: 8,767; ansic: 369; makefile: 18
file content (22 lines) | stat: -rw-r--r-- 515 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
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
AC_INIT(libsoundgen, 0.6, gpe-list@linuxtogo.org)
AC_CONFIG_SRCDIR([soundgen.c])
AM_INIT_AUTOMAKE([foreign dist-bzip2])

# Checks for programs.
AC_PROG_CC
AC_PROG_LIBTOOL

PKG_CHECK_MODULES(DEPS, glib-2.0)

AC_SUBST(DEPS_CFLAGS)
AC_SUBST(DEPS_LIBS)

#gtk-doc for documentation, currently unused
GTK_DOC_CHECK(1.2)

AC_CONFIG_FILES([Makefile libsoundgen.pc])
AC_OUTPUT