-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconfigure.ac
38 lines (31 loc) · 977 Bytes
/
configure.ac
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
34
35
36
37
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.63])
AC_INIT([openindiana-welcome],
[0.1.1],
[https://bugs.launchpad.net/openindiana],
[openindiana-welcome],
[http://openindiana.org/])
AM_INIT_AUTOMAKE([foreign tar-ustar dist-bzip2])
AM_MAINTAINER_MODE
AC_CONFIG_SRCDIR([src/openindiana-about.py])
AC_PROG_INSTALL
AC_PROG_SED
IT_PROG_INTLTOOL([0.40.0])
AM_PATH_PYTHON([2.4])
PKG_CHECK_MODULES([pygobject], [pygobject-3.0 >= 3.18])
GETTEXT_PACKAGE=openindiana-welcome
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,
"${GETTEXT_PACKAGE}",
[the gettext translation domain])
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.17])
AC_CONFIG_HEADERS([src/config.h])
AC_CONFIG_FILES([Makefile
po/Makefile.in
data/Makefile
data/html/Makefile
data/desktop/Makefile
data/pixmaps/Makefile
src/Makefile])
AC_OUTPUT