File: configure.ac

package info (click to toggle)
gwaterfall 0.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 136 kB
  • sloc: ansic: 1,008; sh: 32; makefile: 10
file content (33 lines) | stat: -rw-r--r-- 901 bytes parent folder | download | duplicates (4)
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
30
31
32
33
dnl 
dnl $Id: configure.ac,v 1.1 2003/04/28 02:45:45 nlevitt Exp $
dnl 
dnl Copyright (c) 2003 Noah Levitt
dnl 
dnl This program is free software; the author gives unlimited permission to
dnl copy and/or distribute it, with or without modifications, as long as
dnl this notice is preserved.
dnl 
dnl This program is distributed in the hope that it will be useful, but
dnl WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
dnl implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
dnl 

AC_PREREQ([2.50])
AC_INIT([waterfall], [0.1])
AM_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([waterfall], [0.1])

# checks for progs
AC_PROG_CC
AC_PROG_LIBTOOL

# no need to check for fontconfig, xft brings it in
PKG_CHECK_MODULES(WATERFALL, gtk+-2.0 >= 2.2.0 xft >= 2.0.0)

AC_SUBST(WATERFALL_CFLAGS)
AC_SUBST(WATERFALL_LIBS)

AC_OUTPUT([Makefile
           src/Makefile])