summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 7a4d67f61213c16f3b7abbc3f5049571060849a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
AC_PREREQ(2.52)

AC_INIT(mobile-broadband-provider-info,
	20230416,
	[https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info/issues],
	mobile-broadband-provider-info)
AM_INIT_AUTOMAKE([foreign no-dist-gzip dist-xz])
AM_MAINTAINER_MODE([enable])

AC_PATH_PROG(XSLTPROC, xsltproc)
if test -z "$XSLTPROC"; then
	AC_MSG_ERROR([xsltproc not found])
fi

AC_CONFIG_FILES([
	Makefile
	mobile-broadband-provider-info.pc
])
AC_OUTPUT