File: configure.ac

package info (click to toggle)
ddccontrol-db 20230223-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,640 kB
  • sloc: xml: 4,830; sh: 119; makefile: 32; sed: 16; perl: 12
file content (25 lines) | stat: -rw-r--r-- 486 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
AC_INIT([DDC/CI control tool database], [20190826],
        [DDCControl users list <ddccontrol-users@lists.sourceforge.net>],
        [ddccontrol-db])
AM_INIT_AUTOMAKE
AC_PROG_INSTALL

AM_MAINTAINER_MODE

AM_GNU_GETTEXT_VERSION([0.18.1])
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