-
Notifications
You must be signed in to change notification settings - Fork 6
/
configure.ac
45 lines (33 loc) · 1.08 KB
/
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
38
39
40
41
42
43
44
45
AC_PREREQ(2.53)
AC_INIT([mate-wayland-session],
[1.28.3],
[https://github.com/mate-desktop/mate-wayland-session/issues],
[mate-wayland-session],
[https://mate-desktop.org])
AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz tar-ustar check-news])
# Enable silent build rules by default, requires at least
# Automake-1.11. Disable by either passing --disable-silent-rules to
# configure or passing V=1 to make
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
PKG_PROG_PKG_CONFIG([0.19])
# ****************************
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.19.8])
AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.8])
GETTEXT_PACKAGE=mate-wayland-session
AC_SUBST([GETTEXT_PACKAGE])
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package])
AC_CONFIG_FILES([
Makefile
session/Makefile
data/Makefile
data/mate/Makefile
po/Makefile.in
])
AC_OUTPUT
dnl ==========================================================================
echo "
mate-wayland-session-$VERSION:
Installation prefix: ${prefix}
configuration successfully, now type make
"