-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
286 lines (240 loc) · 8.49 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
282
283
284
285
286
AC_PREREQ(2.53)
AC_INIT([rygel],
m4_esyscmd([GNOME_TAG_PATTERN=RYGEL build-aux/git-version-gen .tarball-version]),
[http://live.gnome.org/Rygel])
AC_CONFIG_AUX_DIR([build-aux])
# require automake-1.11 for vala support
AM_INIT_AUTOMAKE([1.11])
AC_CONFIG_SRCDIR([src/rygel/rygel-root-device.vala])
AM_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([m4])
AM_MAINTAINER_MODE
# Disable generation of static libraries
AC_DISABLE_STATIC
AC_ISC_POSIX
AC_PROG_CC
AC_STDC_HEADERS
AC_PROG_LIBTOOL
AC_FUNC_MMAP
VALA_REQUIRED=0.7.9
GUPNP_REQUIRED=0.13
GUPNP_AV_REQUIRED=0.5.2
GUPNP_VALA_REQUIRED=0.6.2
DBUS_GLIB_REQUIRED=0.74
GSTREAMER_REQUIRED=0.10.23
GIO_REQUIRED=2.16
GEE_REQUIRED=0.5.0
UUID_REQUIRED=1.41.3
LIBSOUP_REQUIRED=2.26.0
GTK_REQUIRED=2.16
LIBSQLITE3_REQUIRED=3.5
PKG_CHECK_MODULES(LIBGUPNP, gupnp-1.0 >= $GUPNP_REQUIRED)
PKG_CHECK_MODULES(LIBGUPNP_AV, gupnp-av-1.0 >= $GUPNP_AV_REQUIRED)
PKG_CHECK_MODULES(LIBDBUS_GLIB, dbus-glib-1 >= $DBUS_GLIB_REQUIRED)
PKG_CHECK_MODULES(LIBGSTREAMER, gstreamer-0.10 >= $GSTREAMER_REQUIRED)
PKG_CHECK_MODULES(LIBGIO, gio-2.0 >= $GIO_REQUIRED)
PKG_CHECK_MODULES(GEE, gee-1.0 >= $GEE_REQUIRED)
PKG_CHECK_MODULES(UUID, uuid >= $UUID_REQUIRED)
PKG_CHECK_MODULES(LIBSOUP, libsoup-2.4 >= $LIBSOUP_REQUIRED)
PKG_CHECK_MODULES(LIBSQLITE3, sqlite3 >= $LIBSQLITE3_REQUIRED)
# glib-genmarshal
GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0`
AC_SUBST(GLIB_GENMARSHAL)
AC_ARG_ENABLE(vala,
[ --enable-vala enable checks for vala],,
enable_vala=no)
AC_ARG_ENABLE(sql-debugging,
[ --enable-sql-debugging enable SQL statement debugging],,
enable_sql_debugging=no)
if test x$enable_sql_debugging = xyes ; then
VALAFLAGS="$VALAFLAGS -D RYGEL_DEBUG_SQL"
fi
# Vala
if test x$enable_vala = xyes ; then
# check for vala
AM_PROG_VALAC([$VALA_REQUIRED])
if test "x$VALAC" = "x"; then
AC_MSG_ERROR([Cannot find the "valac" compiler in your PATH])
fi
PKG_CHECK_MODULES(GUPNP_VALA, gupnp-vala-1.0 >= $GUPNP_VALA_REQUIRED)
VAPIDIR=`pkg-config --variable=vapidir vala-1.0`
# FIXME: Whats the proper way for checking for particular Vala bindings
AC_CHECK_FILE("${VAPIDIR}/gupnp-1.0.vapi",
true,
[AC_MSG_ERROR("Unable to find Vala bindings for gupnp-1.0")])
AC_CHECK_FILE("${VAPIDIR}/gupnp-av-1.0.vapi",
true,
[AC_MSG_ERROR("Unable to find Vala bindings for gupnp-av-1.0")])
AC_CHECK_FILE("${VAPIDIR}/dbus-glib-1.vapi",
true,
[AC_MSG_ERROR("Unable to find Vala bindings for dbus-glib-1")])
AC_CHECK_FILE("${VAPIDIR}/gstreamer-0.10.vapi",
true,
[AC_MSG_ERROR("Unable to find Vala bindings for gstreamer-0.10")])
AC_CHECK_FILE("${VAPIDIR}/gio-2.0.vapi",
true,
[AC_MSG_ERROR("Unable to find Vala bindings for gio-2.0")])
AC_CHECK_FILE("${VAPIDIR}/gee-1.0.vapi",
true,
[AC_MSG_ERROR("Unable to find Vala bindings for gee-1.0")])
AC_CHECK_FILE("${VAPIDIR}/sqlite3.vapi",
true,
[AC_MSG_ERROR("Unable to find Vala bindings for sqlite3")])
else
VAPIDIR=`echo ${datadir}/vala/vapi`
fi
AC_SUBST(VAPIDIR)
# Maemo support
AC_ARG_ENABLE(maemo,
[ --enable-maemo enable maemo support],,
enable_maemo=no)
# Debugging
AC_ARG_ENABLE(debug,
[ --enable-debug enable debugging],,
enable_debug=no)
if test "x$enable_debug" = "xyes"; then
CFLAGS="$CFLAGS -O0 -g"
fi
# Strict compiler
AC_ARG_ENABLE(strict-cc,
[ --enable-strict-cc enable strict C compiler],,
enable_strict_cc=no)
if test "x$enable_strict_cc" = "xyes"; then
CFLAGS="$CFLAGS -Wall -Werror"
else
CFLAGS="$CFLAGS -w"
fi
# Run uninstalled
AC_ARG_ENABLE(uninstalled,
[ --enable-uninstalled run uninstalled],,
enable_uninstalled=no)
if test "x$enable_uninstalled" = "xyes"; then
AC_MSG_WARN("You want to run the tools uninstalled only? Fine!")
fi
# Check wether user wants to build UIs
AC_ARG_WITH( ui,
AC_HELP_STRING([--without-ui],[Do not build UI applications]),
try_ui=$withval, try_ui=yes )
HAVE_GTK=no
if test x$try_ui = xyes ; then
dnl check for gtk
PKG_CHECK_MODULES(GTK, gtk+-2.0 >= $GTK_REQUIRED ,
[
AC_SUBST(GTK_CFLAGS)
AC_SUBST(GTK_LIBS)
if test x$enable_vala = xyes ; then
AC_CHECK_FILE("${VAPIDIR}/gtk+-2.0.vapi",
[
HAVE_GTK=yes
],
[
HAVE_GTK=no
AC_MSG_ERROR("Unable to find Vala bindings for gtk+-2.0")
])
else
HAVE_GTK=yes
fi
],
[
HAVE_GTK=no
AC_MSG_WARN([gtk $GTK_REQUIRED or greater not found.])
AC_MSG_WARN([UI applications will not be built.])
])
else
AC_MSG_NOTICE([UI applications disabled.])
fi
if test x$HAVE_GTK = xno; then
BUILD_UI=no
else
BUILD_UI=yes
AC_DEFINE(HAVE_GTK, , [Build UI applications])
fi
AC_SUBST(HAVE_GTK)
AM_CONDITIONAL(BUILD_UI, test x$BUILD_UI = xyes)
# Build test plugin
AC_ARG_ENABLE(test-plugin,
[ --enable-test-plugin build test plugin],,
enable_test_plugin=no)
# Build Tracker plugin
AC_ARG_ENABLE(tracker-plugin,
[ --enable-tracker-plugin build tracker plugin],,
enable_tracker_plugin=yes)
# Build MediaExport plugin
AC_ARG_ENABLE(media-export-plugin,
[ --enable-media-export-plugin build MediaExport plugin],,
enable_media_export_plugin=yes)
# Build External plugin
AC_ARG_ENABLE(external-plugin,
[ --enable-external-plugin build External plugin],,
enable_external_plugin=yes)
# Build GstRenderer plugin
AC_ARG_ENABLE(gst-renderer-plugin,
[ --enable-gst-renderer_plugin build Gstreamer Renderer plugin],,
enable_gst_renderer_plugin=yes)
# Build Mediathek plugin
AC_ARG_ENABLE(mediathek-plugin,
[ --enable-mediathek-plugin build Mediathek plugin],,
enable_mediathek_plugin=no)
# Build GstLaunch plugin
AC_ARG_ENABLE(gst-launch-plugin,
[ --enable-gst-launch-plugin build Gstreamer launchline plugin],,
enable_gst_launch_plugin=no)
AC_SUBST(abs_top_builddir)
AM_CONDITIONAL([UNINSTALLED], [test "x$enable_uninstalled" = "xyes"])
AM_CONDITIONAL([ENABLE_MAEMO], [test "x$enable_maemo" = "xyes"])
AM_CONDITIONAL([BUILD_TEST_PLUGIN], [test "x$enable_test_plugin" = "xyes"])
AM_CONDITIONAL([BUILD_TRACKER_PLUGIN],
[test "x$enable_tracker_plugin" = "xyes"])
AM_CONDITIONAL([BUILD_MEDIATHEK_PLUGIN], [test "x$enable_mediathek_plugin" = "xyes"])
AM_CONDITIONAL([BUILD_MEDIA_EXPORT_PLUGIN], [test "x$enable_media_export_plugin" = "xyes"])
AM_CONDITIONAL([BUILD_EXTERNAL_PLUGIN], [test "x$enable_external_plugin" = "xyes"])
AM_CONDITIONAL([BUILD_GST_RENDERER_PLUGIN], [test "x$enable_gst_renderer_plugin" = "xyes"])
AM_CONDITIONAL([BUILD_GST_LAUNCH_PLUGIN], [test "x$enable_gst_launch_plugin" = "xyes"])
# Gettext
GETTEXT_PACKAGE=rygel
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, ["$GETTEXT_PACKAGE"],
[Define the gettext package to be used])
ALL_LINGUAS=""
AM_GLIB_GNU_GETTEXT
AM_GLIB_DEFINE_LOCALEDIR([LOCALEDIR])
AC_SUBST(VALAFLAGS)
dnl Shave the output
AM_SILENT_RULES([yes])
AC_OUTPUT([
Makefile
src/Makefile
src/rygel/Makefile
src/ui/Makefile
src/plugins/Makefile
src/plugins/media-export/Makefile
src/plugins/external/Makefile
src/plugins/gst-launch/Makefile
src/plugins/mediathek/Makefile
src/plugins/tracker/Makefile
src/plugins/gst-renderer/Makefile
src/plugins/test/Makefile
data/Makefile
data/xml/Makefile
rygel-1.0.pc
])
echo "
${PACKAGE} ${VERSION}
============
Prefix: ${prefix}
Source code location: ${srcdir}
Compiler: ${CC}
CFLAGS: ${CFLAGS}
uninstalled: ${enable_uninstalled}
maemo support: ${enable_maemo}
preferences ui ${BUILD_UI}
SQL debugging: ${enable_sql_debugging}
Plugins:
test: ${enable_test_plugin}
tracker: ${enable_tracker_plugin}
mediathek: ${enable_mediathek_plugin}
media-export ${enable_media_export_plugin}
external: ${enable_external_plugin}
gst-launch: ${enable_gst_launch_plugin}
gst-renderer: ${enable_gst_renderer_plugin}
"