repo-fixing: fixup #6.
[profile/ivi/murphy.git] / configure.ac
1
2 #                                               -*- Autoconf -*-
3 # Process this file with autoconf to produce a configure script.
4
5 AC_PREREQ(2.59)
6
7 AC_INIT([murphy],
8         m4_esyscmd([build-aux/git-version-gen .tarball-version]),
9         [krisztian.litkey at intel.com])
10
11 AC_CONFIG_MACRO_DIR([m4])
12 AC_CONFIG_SRCDIR([src])
13 AC_CONFIG_HEADER([src/config.h])
14 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
15
16 AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
17
18 m4_define(version_major, `echo $VERSION | cut -d. -f1 | cut -d- -f1`)
19 m4_define(version_minor, `echo $VERSION | cut -d. -f2 | cut -d- -f1`)
20 m4_define(version_patch, `echo $VERSION | cut -d. -f3 | cut -d- -f1`)
21
22 AC_SUBST(VERSION)
23 AC_SUBST(VERSION_MAJOR, version_major)
24 AC_SUBST(VERSION_MINOR, version_minor)
25 AC_SUBST(VERSION_PATCH, version_patch)
26 AC_SUBST(VERSION_FULL, version_major.version_minor.version_patch)
27
28 MURPHY_VERSION_INFO="0:0:0"
29 AC_SUBST(MURPHY_VERSION_INFO)
30
31 # Disable static libraries.
32 AC_DISABLE_STATIC
33
34 # Checks for programs.
35 AC_PROG_CC
36 AC_PROG_CC_C99
37 AC_PROG_AWK
38 AC_PROG_INSTALL
39 AM_PROG_CC_C_O
40 AM_PROG_LIBTOOL
41 AC_PROG_LEX
42 AC_PROG_YACC
43 AM_PROG_LEX
44 AC_SUBST(LEXLIB)
45
46 # Don't require ctags (we keep linker scripts and debug files in the repo now).
47 #AC_CHECK_PROG(CTAGS, ctags, "ctags")
48 #if test "$CTAGS" != "ctags" ; then
49 #   AC_MSG_ERROR([ctags is required])
50 #fi
51
52 if test "$LEX" != "flex" ; then
53    AC_MSG_ERROR([flex is required])
54 fi
55
56 if test "$YACC" != "bison -y" ; then
57    AC_MSG_ERROR([bison is required])
58 fi
59
60 # Checks for libraries.
61 AC_CHECK_LIB([dl], [dlopen dlclose dlsym dlerror])
62
63 # Checks for header files.
64 AC_PATH_X
65 AC_CHECK_HEADERS([fcntl.h stddef.h stdint.h stdlib.h string.h sys/statvfs.h sys/vfs.h syslog.h unistd.h])
66
67 # Checks for typedefs, structures, and compiler characteristics.
68 AC_HEADER_STDBOOL
69 AC_C_INLINE
70 AC_TYPE_INT16_T
71 AC_TYPE_INT32_T
72 AC_TYPE_INT64_T
73 AC_TYPE_MODE_T
74 AC_TYPE_PID_T
75 AC_TYPE_SIZE_T
76 AC_TYPE_SSIZE_T
77 AC_CHECK_MEMBERS([struct stat.st_rdev])
78 AC_TYPE_UINT16_T
79 AC_TYPE_UINT32_T
80 AC_TYPE_UINT64_T
81 AC_TYPE_UINT8_T
82 AC_CHECK_TYPES([ptrdiff_t])
83
84 # Checks for library functions.
85 AC_FUNC_ERROR_AT_LINE
86 AC_HEADER_MAJOR
87 AC_FUNC_MALLOC
88 AC_FUNC_STRTOD
89 AC_CHECK_FUNCS([clock_gettime memmove memset regcomp strcasecmp strchr strdup strrchr strtol strtoul])
90
91 # Check for glib.
92 PKG_CHECK_MODULES(GLIB, glib-2.0)
93 AC_SUBST(GLIB_CFLAGS)
94 AC_SUBST(GLIB_LIBS)
95
96 # Check and enable extra compiler warnings if they are supported.
97 AC_ARG_ENABLE(extra-warnings,
98               [  --enable-extra-warnings enable extra compiler warnings],
99               [extra_warnings=$enableval], [extra_warnings=auto])
100
101 WARNING_CFLAGS=""
102 warncflags="-Wall -Wextra"
103 if test "$extra_warnings" != "no"; then
104     save_CPPFLAGS="$CPPFLAGS"
105     for opt in $warncflags; do
106         AC_PREPROC_IFELSE([AC_LANG_PROGRAM([])],
107                           [WARNING_CFLAGS="$WARNING_CFLAGS $opt"])
108     done
109     CPPFLAGS="$save_CPPFLAGS"
110 fi
111
112 AC_SUBST(WARNING_CFLAGS)
113
114 # Check if potentially GPL bits are allowed to be enabled.
115 AC_ARG_ENABLE(gpl,
116               [  --enable-gpl            enable linking against GPL code],
117               [enable_gpl=$enableval], [enable_gpl=no])
118
119 # Check if DBUS was enabled.
120 AC_ARG_ENABLE(dbus,
121               [  --enable-dbus           enable D-BUS support],
122               [enable_dbus=$enableval], [enable_dbus=no])
123
124 if test "$enable_dbus" = "yes"; then
125     if test "$enable_gpl" = "no"; then
126         AC_MSG_ERROR([D-Bus support requires the --enable-gpl option.])
127     fi
128     PKG_CHECK_MODULES(DBUS, dbus-1 >= 0.70)
129
130     DBUS_SESSION_DIR="`pkg-config --variable session_bus_services_dir dbus-1`"
131     AC_SUBST(DBUS_SESSION_DIR)
132 else
133     AC_MSG_NOTICE([D-Bus support is disabled.])
134 fi
135
136 if test "$enable_dbus" = "yes"; then
137     AC_DEFINE([DBUS_ENABLED], 1, [Enable D-BUS support ?])
138 fi
139
140 AM_CONDITIONAL(DBUS_ENABLED, [test "$enable_dbus" = "yes"])
141 AC_SUBST(DBUS_ENABLED)
142 AC_SUBST(DBUS_CFLAGS)
143 AC_SUBST(DBUS_LIBS)
144
145 # Check if PulseAudio mainloop support was enabled.
146 AC_ARG_ENABLE(pulse,
147               [  --enable-pulse          enable PulseAudio mainloop support],
148               [enable_pulse=$enableval], [enable_pulse=auto])
149
150 if test "$enable_pulse" != "no"; then
151     PKG_CHECK_MODULES(PULSE, libpulse >= 0.9.22,
152                              [have_pulse=yes], [have_pulse=no])
153     if test "$have_pulse" = "no" -a "$enable_pulse" != "yes"; then
154         AC_MSG_ERROR([PulseAudio development libraries not found.])
155     fi
156
157     if test "$enable_gpl" = "no"; then
158         if test "$enable_pulse" = "yes"; then
159            AC_MSG_ERROR([PulseAudio support requires the --enable-gpl option.])
160         else
161            enable_pulse="no"
162         fi
163     else
164         enable_pulse="$have_pulse"
165     fi
166 else
167     AC_MSG_NOTICE([PulseAudio mainloop support is disabled.])
168 fi
169
170 if test "$enable_pulse" = "yes"; then
171     AC_DEFINE([PULSE_ENABLED], 1, [Enable PulseAudio mainloop support ?])
172 fi
173 AM_CONDITIONAL(PULSE_ENABLED, [test "$enable_pulse" = "yes"])
174 AC_SUBST(PULSE_ENABLED)
175 AC_SUBST(PULSE_CFLAGS)
176 AC_SUBST(PULSE_LIBS)
177
178 # Check if EFL/ecore mainloop support was enabled.
179 AC_ARG_ENABLE(ecore,
180               [  --enable-ecore          enable EFL/ecore mainloop support],
181               [enable_ecore=$enableval], [enable_ecore=auto])
182
183 if test "$enable_ecore" != "no"; then
184     PKG_CHECK_MODULES(ECORE, ecore >= 0.9.22,
185                       [have_ecore=yes], [have_ecore=no])
186     if test "$have_ecore" = "no" -a "$enable_ecore" != "yes"; then
187         AC_MSG_ERROR([EFL/ecore development libraries not found.])
188     fi
189
190     enable_ecore="$have_ecore"
191 else
192     AC_MSG_NOTICE([EFL/ecore mainloop support is disabled.])
193 fi
194
195 if test "$enable_ecore" = "yes"; then
196     AC_DEFINE([ECORE_ENABLED], 1, [Enable EFL/ecore mainloop support ?])
197 fi
198 AM_CONDITIONAL(ECORE_ENABLED, [test "$enable_ecore" = "yes"])
199 AC_SUBST(ECORE_ENABLED)
200 AC_SUBST(ECORE_CFLAGS)
201 AC_SUBST(ECORE_LIBS)
202
203 # Check if building murphy-console was enabled.
204 AC_ARG_ENABLE(console,
205               [  --enable-console        build Murphy console],
206               [enable_console=$enableval], [enable_console=auto])
207
208 if test "$enable_console" != "no"; then
209     AC_HAVE_LIBRARY([readline], [have_readline=yes], [have_readline=no])
210     if test "$have_readline" = "no" -a "$enable_console" = "yes"; then
211         AC_MSG_ERROR([Readline development libraries not found.])
212     fi
213
214     if test "$enable_gpl" = "no"; then
215         if test "$enable_console" = "yes"; then
216            AC_MSG_ERROR([Console support requires the --enable-gpl option.])
217         else
218            enable_console="no"
219         fi
220     else
221         enable_console="$have_readline"
222     fi
223 else
224     AC_MSG_NOTICE([Murphy console binary is disabled.])
225 fi
226
227 if test "$enable_console" = "yes"; then
228     AC_DEFINE([CONSOLE_ENABLED], 1, [Build Murphy console ?])
229     READLINE_CFLAGS=""
230     READLINE_LIBS="-lreadline"
231 fi
232 AM_CONDITIONAL(CONSOLE_ENABLED, [test "$enable_console" = "yes"])
233 AC_SUBST(CONSOLE_ENABLED)
234 AC_SUBST(READLINE_CFLAGS)
235 AC_SUBST(READLINE_LIBS)
236
237 # Set up murphy CFLAGS and LIBS.
238 MURPHY_CFLAGS="$GLIB_CFLAGS $DBUS_CFLAGS"
239 MURPHY_LIBS="$GLIB_LIBS $DBUS_LIBS"
240 AC_SUBST(MURPHY_CFLAGS)
241 AC_SUBST(MURPHY_LIBS)
242
243 # Add LIBDIR to config.h.
244 AC_MSG_CHECKING([libdir])
245 AC_MSG_RESULT([$libdir])
246 AC_SUBST(LIBDIR, [$libdir])
247
248 # Check which plugins should be disabled.
249 AC_ARG_WITH(disabled-plugins,
250             [  --with-disabled-plugins=<plugin-list> specify which plugins to disable],
251             [disabled_plugins=$withval],[disabled_plugins=none])
252
253 # Check which plugins should be compiled as standalone DSOs.
254 AC_ARG_WITH(dynamic-plugins,
255             [  --with-dynamic-plugins=<plugin-list>  specify which plugins compile as DSOs],
256             [dynamic_plugins=$withval],[dynamic_plugins=none])
257
258 all_plugins=$(find src/plugins/. -name plugin-*.c 2>/dev/null | \
259               sed 's#^.*/plugin-##g;s#\.c$##g' | tr '\n' ' ')
260
261 #echo "all plugins: [$all_plugins]"
262
263 case dynamic_plugins in
264     all)  dynamic_plugins="$all_plugins";;
265     none) dynamic_plugins="";;
266 esac
267
268 internal=""; it=""
269 external=""; et=""
270 disabled=""; dt=""
271 for plugin in $all_plugins; do 
272     type=internal
273
274     for p in ${dynamic_plugins//,/ }; do
275         if test "$plugin" = "$p"; then
276             type=external
277         fi
278     done
279
280     for p in ${disabled_plugins//,/ }; do
281         if test "$plugin" = "$p"; then
282             type=disabled
283         fi
284     done
285
286     case $type in
287         internal) internal="$internal$it$plugin"; it=" ";;
288         external) external="$external$et$plugin"; et=" ";;
289         disabled) disabled="$disabled$dt$plugin"; dt=" ";;
290     esac
291 done
292
293 DISABLED_PLUGINS="$disabled"
294 INTERNAL_PLUGINS="$internal"
295 EXTERNAL_PLUGINS="$external"
296
297
298 function check_if_disabled() {
299     for p in $DISABLED_PLUGINS; do
300         if test "$1" = "$p"; then
301             return 0
302         fi
303     done
304
305     return 1
306 }
307
308 function check_if_internal() {
309     for p in $INTERNAL_PLUGINS; do
310         if test "$1" = "$p"; then
311             return 0
312         fi
313     done
314
315     return 1
316 }
317
318 AM_CONDITIONAL(DISABLED_PLUGIN_TEST,     [check_if_disabled test])
319 AM_CONDITIONAL(DISABLED_PLUGIN_DBUS,     [check_if_disabled dbus])
320 AM_CONDITIONAL(DISABLED_PLUGIN_GLIB,     [check_if_disabled glib])
321 AM_CONDITIONAL(DISABLED_PLUGIN_CONSOLE,  [check_if_disabled console])
322 AM_CONDITIONAL(DISABLED_PLUGIN_SIGNALLING, [check_if_disabled signalling])
323 AM_CONDITIONAL(DISABLED_PLUGIN_DECISION, [check_if_disabled decision])
324
325 AM_CONDITIONAL(BUILTIN_PLUGIN_TEST,     [check_if_internal test])
326 AM_CONDITIONAL(BUILTIN_PLUGIN_DBUS,     [check_if_internal dbus])
327 AM_CONDITIONAL(BUILTIN_PLUGIN_GLIB,     [check_if_internal glib])
328 AM_CONDITIONAL(BUILTIN_PLUGIN_CONSOLE,  [check_if_internal console])
329 AM_CONDITIONAL(BUILTIN_PLUGIN_SIGNALLING, [check_if_internal signalling])
330 AM_CONDITIONAL(BUILTIN_PLUGIN_DECISION, [check_if_internal decision])
331
332 # Check for Check (unit test framework).
333 PKG_CHECK_MODULES(CHECK, 
334                   check >= 0.9.4,
335                   [has_check="yes"], [has_check="no"])
336 AM_CONDITIONAL(HAVE_CHECK, test "x$has_check" = "xyes")
337
338 AC_SUBST(CHECK_CFLAGS)
339 AC_SUBST(CHECK_LIBS)
340
341 if test "x$has_check" = "xno"; then
342     AC_MSG_WARN([Check framework not found, unit tests are DISABLED.])
343 fi
344
345 # Check for documentation tools
346 AC_ARG_WITH([documentation],
347             [AS_HELP_STRING([--with-documentation],
348                             [generate pdf, html and other doc files])],
349             [],
350             [with_documentation=auto]
351 )
352
353 AS_IF( [ test x$with_documentation = xno ],
354        [ has_doc_tools="no" ],
355        [ AC_PATH_TOOL([MRP_DOXYGEN], doxygen)
356          AC_PATH_TOOL([MRP_LYX], lyx)
357          AC_PATH_TOOL([MRP_INKSCAPE], inkscape)
358          AC_PATH_TOOL([MRP_PYTHON], python)
359          AC_PATH_TOOL([MRP_TOUCH], touch)
360          AC_PATH_TOOL([MRP_DBLATEX], dblatex)
361          AC_PATH_TOOL([MRP_XMLTO], xmlto)
362
363          AS_IF( [ test x$MRP_DOXYGEN = x -o x$MRP_LYX = x -o \
364                        x$MRP_INKSCAPE = x -o x$MRP_PYTHON = x -o \
365                        x$MRP_TOUCH = x],
366                 [ has_doc_tools="no";
367                   AC_MSG_WARN([Some essential doc-tool is missing]) ],
368                 [ has_doc_tools="yes";
369                   MRP_DOCINIT() ]
370          ) ]
371 )
372
373 AS_IF( [ test x$has_doc_tools == "xno" -o x$MRP_DBLATEX = x ],
374        [ can_make_pdfs="no";
375          AC_WARN([No PDF documentation will be generated]) ],
376        [ can_make_pdfs="yes"]
377 )
378
379 AS_IF([ test x$has_doc_tools == "xno" -o x$MRP_XMLTO = x ],
380       [ can_make_html="no";
381         AC_WARN([No HTML documentation will be generated]) ],
382       [ can_make_html="yes" ]
383 )
384
385
386 AM_CONDITIONAL(BUILD_DOCUMENTATION,  [ test x$has_doc_tools = "xyes" ])
387 AM_CONDITIONAL(BUILD_PDF_DOCUMENTS,  [ test x$can_make_pdfs = "xyes" ])
388 AM_CONDITIONAL(BUILD_HTML_DOCUMENTS, [ test x$can_make_html = "xyes" ])
389
390 AC_SUBST(MRP_DOCDIR, [`pwd`/doc])
391 AC_SUBST(MRP_FIGDIR, [$MRP_DOCDIR/common/figures])
392 AC_SUBST(MRP_MAKE_DOCRULES, [$MRP_DOCDIR/Makefile.rules])
393 AC_SUBST(MRP_DOCSCRIPT_DIR, [$MRP_DOCDIR/scripts])
394 AC_SUBST(MRP_ABNF, [$MRP_DOCSCRIPT_DIR/abnf.py])
395 AC_SUBST(MRP_DBLYXFIX, [$MRP_DOCSCRIPT_DIR/dblyxfix.py])
396 AC_SUBST(MRP_DOXML2DB, [$MRP_DOCSCRIPT_DIR/doxml2db.py])
397 AC_SUBST(MRP_DOXYDEPS, [$MRP_DOCSCRIPT_DIR/doxydeps.py])
398
399
400 # Shave by default.
401 SHAVE_INIT([build-aux], [enable])
402
403 # Create murphy symlink to src.
404 if test ! -L murphy; then
405     AC_MSG_NOTICE([Symlinking src to murphy...])
406     ln -s src murphy
407 fi
408
409 # Generate output.
410 AC_CONFIG_FILES([build-aux/shave
411                  build-aux/shave-libtool
412                  Makefile
413                  src/Makefile
414                  src/common/tests/Makefile
415                  src/core/tests/Makefile
416                  src/daemon/tests/Makefile
417                  src/plugins/tests/Makefile
418                  src/common/murphy-common.pc
419                  src/common/murphy-dbus.pc
420                  src/common/murphy-pulse.pc
421                  src/common/murphy-ecore.pc
422                  src/core/murphy-core.pc
423                  src/murphy-db/Makefile
424                  src/murphy-db/mdb/Makefile
425                  src/murphy-db/mqi/Makefile
426                  src/murphy-db/mql/Makefile
427                  src/murphy-db/include/Makefile
428                  src/murphy-db/tests/Makefile
429                  src/resolver/murphy-resolver.pc
430                  src/resolver/tests/Makefile
431                  src/resource/murphy-resource.pc
432                  doc/Makefile
433                  doc/plugin-developer-guide/Makefile
434                  doc/plugin-developer-guide/db/Makefile
435                  doc/plugin-developer-guide/doxml/Makefile
436                  ])
437 AC_OUTPUT
438
439
440 # Display the configuration.
441 echo "----- configuration -----"
442 echo "Extra C warnings flags: $WARNING_CFLAGS"
443 echo "D-Bus support: $enable_dbus"
444 echo "PulseAudio mainloop support: $enable_pulse"
445 echo "EFL/ecore mainloop support: $enable_ecore"
446 echo "Murphy console plugin and client: $enable_console"
447 echo "Plugins:"
448 echo "  - linked-in:"
449 for plugin in ${INTERNAL_PLUGINS:-none}; do
450     echo "      $plugin"
451 done
452 echo "  - dynamic:"
453 for plugin in ${EXTERNAL_PLUGINS:-none}; do
454     echo "      $plugin"
455 done
456 echo "  - disabled:"
457 for plugin in ${DISABLED_PLUGINS:-none}; do
458     echo "      $plugin"
459 done