forked from blueman-project/blueman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.ac
281 lines (226 loc) · 8.11 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
AC_PREREQ(2.61)
AC_INIT([blueman], [2.0], [https://github.com/blueman-project/blueman/issues])
AC_CONFIG_HEADERS(config.h)
AM_INIT_AUTOMAKE([foreign dist-xz])
AM_MAINTAINER_MODE
AC_PROG_CC
AC_PROG_LIBTOOL
PKG_PROG_PKG_CONFIG
GETTEXT_PACKAGE="blueman"
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [The gettext package])
AM_GLIB_GNU_GETTEXT
IT_PROG_INTLTOOL([0.35.0])
AC_ENABLE_SHARED(yes)
AC_ENABLE_STATIC(no)
AM_PATH_PYTHON([2.7])
PYTHON_MAJOR_VERSION="$(echo ${PYTHON_VERSION} | cut -d . -f 1)"
PYTHON_MINOR_VERSION="$(echo ${PYTHON_VERSION} | cut -d . -f 2)"
if [test ${PYTHON_MAJOR_VERSION} -eq 3] && [test ${PYTHON_MINOR_VERSION} -lt 2];then
AC_MSG_ERROR([Unsupported Python 3 version found (>=3.2 required)])
fi
PKG_CHECK_MODULES([PYTHON], [python-${PYTHON_VERSION}])
AC_SUBST(PYTHON_LIBS)
AC_SUBST(PYTHON_CFLAGS)
AC_ARG_ENABLE([runtime_deps_check],
AS_HELP_STRING([--disable-runtime-deps-check], [Disable runtime dependency check (for package maintainers)]),
[enable_runtime_deps_check=$enableval], [enable_runtime_deps_check=yes])
if test "x$enable_runtime_deps_check" = "xyes"; then
AM_CHECK_PYMOD([dbus],,,[AC_MSG_ERROR(Could not find Python module dbus)])
fi
PKG_CHECK_MODULES([PYGOBJECT],[pygobject-3.0])
AC_SUBST([PYGOBJECT_CFLAGS])
AC_SUBST([PYGOBJECT_LIBS])
AC_ARG_VAR([CYTHONEXEC], [Cython compiler])
if test "x$CYTHONEXEC" = "x"; then
AC_PATH_PROG([CYTHONEXEC],[cython])
fi
AC_SUBST([CYTHONEXEC])
AC_MSG_CHECKING([for cython executable])
AC_MSG_RESULT([${CYTHONEXEC}])
if test "x$CYTHONEXEC" = "x"; then
AC_MSG_ERROR(["Fatal: cython not found.
Get Cython from
* your system's packages (recommended)
* upstream at http://www.cython.org/
"])
fi
if test "$sysconfdir" = "\${prefix}/etc" \
&& { test "$prefix" = "NONE" || test "$prefix" = "/usr" \
|| test "$prefix" = "/usr/" ; } ; then
if test "$( (uname -s) )" = "Linux" ; then
sysconfdir=/etc
fi
(
prefix=$ac_default_prefix
sysconfdir=`eval echo "$sysconfdir"`
AC_MSG_NOTICE([configuration directory is "$sysconfdir".])
AC_MSG_NOTICE([use --sysconfdir to override.])
)
fi
dnl ----------------------------------
dnl - Various paths and other defines
dnl ----------------------------------
AC_SUBST(VERSION)
AC_SUBST(PACKAGE)
AS_AC_EXPAND(SYSCONFDIR, $sysconfdir)
AC_SUBST(SYSCONFDIR)
AS_AC_EXPAND(BINDIR, $bindir)
AC_SUBST(BINDIR)
AS_AC_EXPAND(DATADIR, $datarootdir)
AC_SUBST(DATADIR)
AS_AC_EXPAND(PYTHONDIR, $pythondir)
AC_SUBST(PYTHONDIR)
AS_AC_EXPAND(PKGLIBDIR, $libdir/blueman)
AC_SUBST(PKGLIBDIR)
AS_AC_EXPAND(LIBEXECDIR, $libexecdir)
AC_SUBST(LIBEXECDIR)
dnl AS_AC_EXPAND([PREFIX], $prefix)
AC_SUBST(prefix)
pkgdatadir="${DATADIR}/${PACKAGE}"
AC_SUBST(pkgdatadir)
icondir="${DATADIR}/icons"
AC_SUBST(icondir)
pixmapsdir="${DATADIR}/pixmaps"
AC_SUBST(pixmapsdir)
AS_AC_EXPAND(LOCALEDIR, $datarootdir/locale)
AC_SUBST(LOCALEDIR)
AS_AC_EXPAND(DOCDIR, $docdir)
AC_SUBST(DOCDIR)
dnl ---------------------------------
dnl dhcp config file location
dnl ---------------------------------
AC_ARG_WITH([dhcp_config],
AS_HELP_STRING([--with-dhcp-config=PATH], [Set dhcp3 server configuration path]),
[dhconfig="$withval"], [dhconfig='/etc/dhcp3/dhcpd.conf'])
AC_SUBST([dhconfig])
dnl ---------------------------------
AC_ARG_ENABLE([polkit],
AS_HELP_STRING([--enable-polkit], [Enable policykit support]),
[enable_polkit=$enableval],[enable_polkit=yes])
AS_IF([test "x$enable_polkit" = "xyes"],
[PKG_CHECK_MODULES([POLKIT], [polkit-agent-1], [have_polkit=yes], [have_polkit=no])],
[have_polkit=no])
AM_CONDITIONAL([HAVE_POLKIT], [test "x$have_polkit" = "xyes"])
AC_SUBST([have_polkit])
AC_ARG_ENABLE([thunar-sendto],
AS_HELP_STRING([--enable-thunar-sendto], [Enable thunar-sendto installation]),
[have_thunar=$enableval], [have_thunar=yes])
AM_CONDITIONAL([HAVE_THUNAR], [test "x$have_thunar" = "xyes"])
AC_ARG_ENABLE(settings-integration,
AS_HELP_STRING([--enable-settings-integration], [Enable settings manager integration with xfce and mate]),
[have_settings=$enableval], [have_settings=yes])
AM_CONDITIONAL([HAVE_SETTINGS], [test "x$have_settings" = "xyes"])
dnl ----------------------------
PKG_CHECK_MODULES([BLUEZ], [bluez >= 5.0 gthread-2.0 >= 2.32])
AC_SUBST([BLUEZ_CFLAGS])
AC_SUBST([BLUEZ_LIBS])
PKG_CHECK_MODULES([GNOMEICONS],[gnome-icon-theme],
[HAVE_GNOME_ICONS="yes"], [HAVE_GNOME_ICONS="no"])
PKG_CHECK_MODULES([MATEICONS],[mate-icon-theme],
[HAVE_MATE_ICONS="yes"], [HAVE_MATE_ICONS="no"])
PKG_CHECK_MODULES([FAENZAICONS], [faenza-icon-theme],
[HAVE_FAENZA_ICONS="yes"], [HAVE_FAENZA_ICONS="no"])
if test "x$HAVE_GNOME_ICONS" = "xno" && test "x$HAVE_MATE_ICONS" = "xno" && test "xHAVE_FAENZA_ICONS" = "xno"; then
AC_MSG_ERROR([Required icon themes not found.])
fi
dnl ----------------------------
AC_ARG_ENABLE([pulseaudio],
AS_HELP_STRING([--disable-pulseaudio], [Disable PulseAudio support]),
[use_pulseaudio=$enableval], [use_pulseaudio=yes])
AM_CONDITIONAL([HAVE_PULSEAUDIO], [test "x$use_pulseaudio" = "xyes"])
dnl ----------------------------
AC_ARG_ENABLE([appindicator],
AS_HELP_STRING([--disable-appindicator], [Disable Libappindicator support]),
[use_appindicator=$enableval], [use_appindicator=yes])
AM_CONDITIONAL([HAVE_APPINDICATOR], [test "x$use_appindicator" = "xyes"])
AC_ARG_WITH([systemdunitdir],
AS_HELP_STRING([--with-systemdunitdir=PATH],
[Directory for systemd unit files]
[[default=${prefix}/lib/systemd]]),
[systemd_unit_dir="$withval"],
[systemd_unit_dir='${prefix}/lib/systemd'])
AC_SUBST([systemd_unit_dir])
AM_CONDITIONAL([SYSTEMD_UNIT_DIR], [test "x$systemd_unit_dir" != "xno"])
# GSettings related settings
GLIB_GSETTINGS
AC_OUTPUT([
Makefile
apps/Makefile
blueman/Makefile
blueman/Constants.py
blueman/bluez/Makefile
blueman/bluez/obex/Makefile
blueman/gui/Makefile
blueman/gui/applet/Makefile
blueman/gui/manager/Makefile
blueman/plugins/Makefile
blueman/plugins/services/Makefile
blueman/plugins/applet/Makefile
blueman/plugins/mechanism/Makefile
blueman/plugins/mechanism/Rfcomm.py
blueman/plugins/manager/Makefile
blueman/main/Makefile
blueman/main/applet/Makefile
blueman/services/Makefile
blueman/services/meta/Makefile
data/Makefile
data/configs/Makefile
data/icons/Makefile
data/icons/hicolor/Makefile
data/icons/hicolor/16x16/Makefile
data/icons/hicolor/16x16/actions/Makefile
data/icons/hicolor/16x16/devices/Makefile
data/icons/hicolor/16x16/status/Makefile
data/icons/hicolor/22x22/Makefile
data/icons/hicolor/22x22/status/Makefile
data/icons/hicolor/24x24/Makefile
data/icons/hicolor/24x24/status/Makefile
data/icons/hicolor/32x32/Makefile
data/icons/hicolor/32x32/actions/Makefile
data/icons/hicolor/32x32/status/Makefile
data/icons/hicolor/48x48/Makefile
data/icons/hicolor/48x48/actions/Makefile
data/icons/hicolor/48x48/devices/Makefile
data/icons/hicolor/48x48/status/Makefile
data/icons/hicolor/64x64/Makefile
data/icons/hicolor/64x64/status/Makefile
data/icons/hicolor/72x72/Makefile
data/icons/hicolor/72x72/status/Makefile
data/icons/hicolor/96x96/Makefile
data/icons/hicolor/96x96/status/Makefile
data/icons/hicolor/128x128/Makefile
data/icons/hicolor/128x128/status/Makefile
data/icons/hicolor/192x192/Makefile
data/icons/hicolor/192x192/status/Makefile
data/icons/hicolor/256x256/Makefile
data/icons/hicolor/256x256/status/Makefile
data/icons/hicolor/scalable/Makefile
data/icons/hicolor/scalable/devices/Makefile
data/icons/hicolor/scalable/actions/Makefile
data/icons/hicolor/scalable/status/Makefile
data/icons/main_icon/Makefile
data/icons/pixmaps/Makefile
data/ui/Makefile
data/man/Makefile
data/configs/blueman-applet.service
data/configs/blueman-mechanism.service
data/configs/org.blueman.Applet.service
data/configs/org.blueman.Mechanism.service
module/Makefile
po/Makefile.in
])
echo
echo $PACKAGE $VERSION
echo
echo Prefix: $prefix
echo System configuration directory: $sysconfdir
echo Python version: $PYTHON_VERSION
echo Policykit-1 Enabled: $have_polkit
echo Thunar sendto installation enabled: $have_thunar
echo Settings menu integration enabled: $have_settings
echo Dhcpd 3 configuration file: $dhconfig
echo PulseAudio support: $use_pulseaudio
echo AppIndicator support: $use_appindicator
echo Systemd unit dir: ${systemd_unit_dir}
echo