-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure.ac
41 lines (33 loc) · 1.15 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
AC_INIT([mate-notification-theme-slate], 5, [[email protected]], [mate-notification-theme-slate], [https://github.com/solus-project/mate-notification-theme-slate/issues])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([-Wno-portability no-dist-gzip dist-xz foreign subdir-objects])
AC_PROG_CC
AC_PROG_CC_STDC
LT_PREREQ(2.2)
AC_CONFIG_HEADERS([config.h])
AC_PREFIX_DEFAULT(/usr/local)
AM_SILENT_RULES([yes])
LT_INIT([disable-static])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_FILES([Makefile])
m4_define([gtk_required_version], [3.18.0])
PKG_CHECK_MODULES(THEME,
[
gtk+-3.0 >= gtk_required_version
]
)
AC_PATH_PROG(GLIB_COMPILE_RESOURCES, glib-compile-resources)
AC_OUTPUT
AC_MSG_RESULT([
mate-notification-theme-slate $VERSION
========
prefix: ${prefix}
libdir: ${libdir}
sysconfdir: ${sysconfdir}
exec_prefix: ${exec_prefix}
bindir: ${bindir}
datarootdir: ${datarootdir}
compiler: ${CC}
cflags: ${CFLAGS}
ldflags: ${LDFLAGS}
])