Codebase list ddccontrol-db / 63036a5e-6533-4429-b501-d13b7037d5a4/upstream configure.ac
63036a5e-6533-4429-b501-d13b7037d5a4/upstream

Tree @63036a5e-6533-4429-b501-d13b7037d5a4/upstream (Download .tar.gz)

configure.ac @63036a5e-6533-4429-b501-d13b7037d5a4/upstreamraw · history · blame

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