-
Notifications
You must be signed in to change notification settings - Fork 4
/
configure.ac
72 lines (63 loc) · 2.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT(ukui-interface,1.0,[email protected])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADERS([config.h])
# Checks for programs.
AC_PROG_CXX
AC_PROG_AWK
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_RANLIB
AC_PROG_LIBTOOL
# Checks for libraries.
PKG_CHECK_MODULES(GLIB_2, glib-2.0 >= 1.00)
PKG_CHECK_MODULES(GIO_2, gio-2.0 >= 1.00)
PKG_CHECK_MODULES(GIO_UNIX_2, gio-unix-2.0 >= 1.00)
PKG_CHECK_MODULES(QT5CORE, Qt5Core >= 5.6.1)
# FIXME: Replace `main' with a function in `-lgsettings':
AC_CHECK_LIB([gsettings], [main])
# FIXME: Replace `main' with a function in `-lprint':
AC_CHECK_LIB([print], [main])
# Checks for header files.
AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_CHECK_HEADER_STDBOOL
# Checks for library functions.
AC_CHECK_FUNCS([strerror])
AC_CONFIG_FILES([Makefile
data/Makefile
po/Makefile
src/Makefile
src/accounts/Makefile
src/accounts/user/Makefile
src/common/Makefile
src/date/Makefile
src/date/dttm/Makefile
src/hardware/Makefile
src/hardware/keyboard/Makefile
src/hardware/mouse/Makefile
src/hardware/touchpad/Makefile
src/hardware/power/Makefile
src/language/Makefile
src/network/Makefile
src/network/network/Makefile
src/os/Makefile
src/os/subversion/Makefile
src/os/sysinfo/Makefile
src/other/Makefile
src/personal/Makefile
src/personal/background/Makefile
src/personal/desktop/Makefile
src/personal/font/Makefile
src/personal/marcogeneral/Makefile
src/security/Makefile
src/software/Makefile
src/software/defaultprograms/Makefile
src/updates/Makefile])
AC_OUTPUT