File: configure.ac

package info (click to toggle)
ddccontrol-db 20061014-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,480 kB
  • ctags: 27
  • sloc: sh: 9,100; xml: 905; ansic: 218; makefile: 75; perl: 12
file content (24 lines) | stat: -rw-r--r-- 453 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
AC_INIT([DDC/CI control tool database], [20061014],
        [DDCControl users list <ddccontrol-users@lists.sourceforge.net>],
        [ddccontrol-db])
AM_INIT_AUTOMAKE
AC_PROG_INSTALL

AM_MAINTAINER_MODE

AM_GNU_GETTEXT([external])
GETTEXT_PACKAGE=ddccontrol-db
AC_SUBST([GETTEXT_PACKAGE])

AC_CHECK_PROG(PERL,perl,perl,)

AM_CONDITIONAL(HAVE_PERL, test -n $PERL)

AC_CONFIG_FILES([
	po/Makefile.in
	Makefile
	db/Makefile])

AC_PROG_INTLTOOL

AC_OUTPUT