-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.ac
39 lines (31 loc) · 950 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
38
39
AC_PREREQ(2.63)
dnl be carefull, the version needs to be in sync with your gnome shell version
AC_INIT([gnome-sms],[0.0.4],[https://github.com/openshine/gnome-sms])
AM_INIT_AUTOMAKE([1.10 dist-bzip2 no-dist-gzip foreign tar-ustar])
# Enable silent rules is available
AM_SILENT_RULES([yes])
AM_MAINTAINER_MODE([enable])
LT_INIT
AC_PROG_CC
AM_PROG_VALAC([0.14.0])
AC_PROG_INSTALL
pkg_modules="glib-2.0 >= 2.30.0
folks >= 0.6.8"
PKG_CHECK_MODULES(GNOMESMS, [$pkg_modules])
GNOMESMS_PACKAGES="--pkg folks"
AC_SUBST(GNOMESMS_PACKAGES)
GETTEXT_PACKAGE=gnome-sms
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
[The prefix for our gettext translation domains.])
IT_PROG_INTLTOOL(0.26)
PKG_PROG_PKG_CONFIG([0.22])
GOBJECT_INTROSPECTION_REQUIRE([1.30])
GLIB_GSETTINGS
dnl Please keep this sorted alphabetically
AC_CONFIG_FILES([
Makefile
po/Makefile.in
src/Makefile
])
AC_OUTPUT