]> git.sur5r.net Git - kconfig-frontends/blob - configure.ac
configure: enable utilities by default
[kconfig-frontends] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 #---------------------------------------------------------------------------
5 # Global initialisation
6
7 #----------------------------------------
8 # Prepare autoconf
9 AC_PREREQ([2.67])
10 AC_INIT(
11     [kconfig-frontends],
12     [m4_esyscmd_s([./scripts/version.sh])],
13     [yann.morin.1998@free.fr])
14 AC_CONFIG_SRCDIR([frontends/conf/conf.c])
15 # Use a config.h to avoid brazilions -DHAVE_FOO on compile lines
16 AC_CONFIG_HEADERS([scripts/.autostuff/config.h])
17 AC_CONFIG_AUX_DIR([scripts/.autostuff/scripts])
18 AC_CONFIG_MACRO_DIR([scripts/.autostuff/m4])
19
20 #----------------------------------------
21 # Prepare automake
22
23 # We want to allow the user to override our default program-prefix,
24 # so we must set-it now, before automake has a chance to interpret
25 # it, but after the options are parsed, so as not to overwrite the
26 # value (if any) set by the user
27 AS_IF(
28     [test "$program_prefix" = NONE],
29     [program_prefix=kconfig-])
30
31 AM_INIT_AUTOMAKE
32
33 #----------------------------------------
34 # Prepare libtool
35 LT_PREREQ([2.2.6])
36 LT_INIT([disable-static])
37
38 #---------------------------------------------------------------------------
39 # Set misc options
40
41 # By default, do not build with -Wall, unless the user asks for it
42 AC_ARG_ENABLE(
43     [wall],
44     [AS_HELP_STRING(
45         [--enable-wall],
46         [build with -Wall (default=no)])],
47     [AS_CASE(
48         ["$enableval"],
49         [yes], [wall_CFLAGS=-Wall],
50         [*],   [wall_CFLAGS=""])])
51 AC_SUBST([wall_CFLAGS],[${wall_CFLAGS}])
52
53 # By default, do not build with -Werror, unless the user asks for it
54 AC_ARG_ENABLE(
55     [werror],
56     [AS_HELP_STRING(
57         [--enable-werror],
58         [build with -Werror (default=no)])],
59     [AS_CASE(
60         ["$enableval"],
61         [yes], [werror_CFLAGS=-Werror],
62         [*],   [werror_CFLAGS=""])])
63 AC_SUBST([werror_CFLAGS],[${werror_CFLAGS}])
64
65 # Although there is a default (="linux") in the code, we do provide
66 # a default here, to get a consistent autostuff behavior
67 AC_ARG_ENABLE(
68     [root-menu-prompt],
69     [AS_HELP_STRING(
70         [--enable-root-menu-prompt=PROMPT],
71         [set the root-menu prompt (default=Configuration)])],
72     [AS_CASE(
73         ["$enableval"],
74         [yes], [root_menu=Configuration],
75         [no],  [root_menu=],
76                [# Escape the $ signs, otherwise they would get munged by make
77                 # Also, append a space at the end, to separate the package
78                 # name from the literal 'Configuration'
79                 root_menu="$( echo "$enableval" |sed -r -e 's/\$/\\$$/g;' )"])])
80 AC_SUBST([root_menu], [${root_menu=Configuration}])
81
82 AC_ARG_ENABLE(
83     [config-prefix],
84     [AS_HELP_STRING(
85         [--enable-config-prefix=PREFIX],
86         [the prefix to the config option (default=CONFIG_)])],
87     [AS_CASE(
88         ["$enableval"],
89         [*" "*],[AC_MSG_ERROR([config prefix can not contain spaces: '$enableval'])],
90         [yes],  [config_prefix=CONFIG_],
91         [no],   [config_prefix=],
92                 [config_prefix=$enableval])])
93 AC_SUBST([config_prefix], [${config_prefix-CONFIG_}])
94
95 AC_ARG_ENABLE(
96     [utils],
97     [AS_HELP_STRING(
98         [--disable-utils],
99         [install utilities to manage .config files (default=no)])])
100 AC_SUBST([enable_utils], [${enable_utils:-yes}])
101
102 #----------------------------------------
103 # Options to selectively enable/disable frontends
104 # All are selected by default
105 AC_ARG_ENABLE(
106     [conf],
107     [AS_HELP_STRING(
108         [--disable-conf],
109         [conf, the stdin-based frontend (default=auto)])])
110 AC_SUBST([enable_conf], [${enable_conf:-auto}])
111 AC_ARG_ENABLE(
112     [mconf],
113     [AS_HELP_STRING(
114         [--disable-mconf],
115         [mconf, the traditional ncurses-based frontend (default=auto)])])
116 AC_SUBST([enable_mconf], [${enable_mconf:-auto}])
117 AC_ARG_ENABLE(
118     [nconf],
119     [AS_HELP_STRING(
120         [--disable-nconf],
121         [nconf, the modern ncurses-based frontend (default=auto)])])
122 AC_SUBST([enable_nconf], [${enable_nconf:-auto}])
123 AC_ARG_ENABLE(
124     [gconf],
125     [AS_HELP_STRING(
126         [--disable-gconf],
127         [gconf, the GTK-based frontend (default=auto)])])
128 AC_SUBST([enable_gconf], [${enable_gconf:-auto}])
129 AC_ARG_ENABLE(
130     [qconf],
131     [AS_HELP_STRING(
132         [--disable-qconf],
133         [qconf, the QT-based frontend (default=auto)])])
134 AC_SUBST([enable_qconf], [${enable_qconf:-auto}])
135
136 AC_ARG_ENABLE(
137     [frontends],
138     [AS_HELP_STRING(
139         [--enable-frontends=list],
140         [enables only the set of frontends in comma-separated 'list'
141          (default: auto selection), takes precedence over all
142          --enable-*conf, above])],
143     [for f in conf mconf nconf gconf qconf; do
144         AS_CASE(
145             ["$enableval"],
146             [yes],      [eval enable_$f=yes],
147             ["$f"],     [eval enable_$f=yes],
148             ["$f",*],   [eval enable_$f=yes],
149             [*,"$f"],   [eval enable_$f=yes],
150             [*,"$f",*], [eval enable_$f=yes],
151                         [eval enable_$f=no])
152      done])
153 AC_SUBST([enable_frontends])
154
155 #----------------------------------------
156 # What extra CFLAGS we will be using
157 AC_SUBST([kf_CFLAGS], ["$wall_CFLAGS $werror_CFLAGS"])
158
159 #----------------------------------------
160 # Dependencies that will be needed, depending on the frontends
161 AS_CASE(
162     ["$enable_mconf":"$enable_nconf"],
163     [*yes*],  [need_curses=yes],
164     [*auto*], [need_curses=auto],
165               [need_curses=no])
166 [need_panel_menu="$enable_nconf"]
167 AS_CASE(
168     ["$enable_gconf":"$enable_qconf"],
169     [*yes*],  [need_pkgconfig=yes],
170     [*auto*], [need_pkgconfig=yes],
171               [need_pkgconfig=no ])
172 [need_gtk="$enable_gconf"]
173 [need_qt="$enable_qconf"]
174
175 #---------------------------------------------------------------------------
176 # Now check we have the required stuff
177
178 #----------------------------------------
179 # Some program checks
180 AC_PROG_CC
181 AM_PROG_CC_C_O
182 AC_PROG_CXX
183 AC_C_INLINE
184 AC_PROG_MAKE_SET
185 AC_CHECK_PROGS(
186     [GPERF],
187     [gperf])
188 AS_IF(
189     [test -z "$GPERF"],
190     [AC_MSG_ERROR([can not find gperf])])
191 AS_IF(
192     [test "$need_pkgconfig" = "yes"],
193     [PKG_PROG_PKG_CONFIG()])
194 AC_PROG_LEX
195 AC_SUBST([AM_LFLAGS], ["-L -P zconf"])
196 AC_PROG_YACC
197 AC_SUBST([AM_YFLAGS], ["-t -l -p zconf"])
198
199 #----------------------------------------
200 # Check for standard headers
201 AC_HEADER_STDC
202 AC_HEADER_STDBOOL
203 AC_CHECK_HEADERS([ fcntl.h libintl.h limits.h locale.h ])
204 AC_CHECK_HEADERS([ stdlib.h string.h sys/time.h unistd.h ])
205 AC_TYPE_SIZE_T
206
207 #----------------------------------------
208 # Checks for library functions.
209 AC_FUNC_MALLOC
210 AC_FUNC_REALLOC
211 AC_FUNC_ALLOCA
212 AC_CHECK_FUNCS([ bzero memmove memset ])
213 AC_CHECK_FUNCS([ strcasecmp strchr strcspn strdup strncasecmp strpbrk strrchr strspn strtol ])
214 AC_CHECK_FUNCS([ gettimeofday mkdir regcomp setlocale uname ])
215
216 #----------------------------------------
217 # Check for gettext, for the kconfig frontends
218 AC_SUBST([GETTEXT])
219 AC_CHECK_HEADERS(
220     [libintl.h],
221     [ac_ct_gettext_hdr=$ac_header; break],
222     [AC_MSG_WARN([libintl is missing, frontends will not be localised])])
223 AS_IF(
224     [test -n "$ac_ct_gettext_hdr"],
225     [AC_CHECK_DECL(
226         [gettext],,
227         [AC_MSG_WARN([gettext is missing, frontends will not be localised])
228          GETTEXT=-DKBUILD_NO_NLS],
229         [#include <$ac_ct_gettext_hdr>])])
230
231 #----------------------------------------
232 # Check for ncurses, for the mconf & nconf frontends
233 AS_IF(
234     [test "$need_curses" = "yes" -o "$need_curses" = "auto"],
235     [AC_SUBST([CURSES_LOC])
236      AC_SUBST([ncurses_LIBS])
237      LIBS_old="$LIBS"
238      LIBS=
239      AC_CHECK_HEADERS(
240         [ncurses/ncurses.h ncurses/curses.h ncursesw/curses.h ncurses.h curses.h],
241         [CURSES_LOC=$ac_header; break])
242      AS_IF(
243         [test -z "$CURSES_LOC"],
244         [AS_IF(
245             [test "$need_curses" = "yes"],
246             [AC_MSG_ERROR([could not find curses headers (frontends: mconf/nconf)])],
247             [has_curses=no])])
248      AC_SEARCH_LIBS(
249         [initscr],
250         [ncursesw ncurses curses],
251         [ac_ct_curses_lib_found=yes; break])
252      AS_IF(
253         [test -z "$ac_ct_curses_lib_found"],
254         [AS_IF(
255             [test "$need_curses" = "yes"],
256             [AC_MSG_ERROR([could not find curses library (frontends: mconf/nconf)])],
257             [has_curses=no])])
258      ncurses_LIBS="$LIBS"
259      LIBS=$LIBS_old])
260
261 AS_IF(
262     [test "$has_curses" = "no" ],
263     [enable_mconf=no; enable_nconf=no])
264
265 #----------------------------------------
266 # Check for libpanel and libmenu, for the nconf frontend
267 AS_IF(
268     [test "$need_panel_menu" = "yes" -o "$need_panel_menu" = "auto"],
269     [AC_SUBST([ncurses_extra_LIBS])
270      LIBS_old="$LIBS"
271      LIBS=
272      AC_SEARCH_LIBS(
273         [new_panel],
274         [panelw panel],
275         [ac_ct_panel_lib_found=yes; break],,
276         [$ncurses_LIBS])
277      AS_IF(
278         [test -z "$ac_ct_panel_lib_found"],
279         [AS_IF(
280             [test "$need_panel_menu" = "yes"],
281             [AC_MSG_ERROR([could not find libpanel library (frontend: nconf)])],
282             [has_panel_menu=no])])
283      AC_SEARCH_LIBS(
284         [menu_init],
285         [menuw menu],
286         [ac_ct_menu_lib_found=yes; break],,
287         [$ncurses_LIBS])
288      AS_IF(
289         [test -z "$ac_ct_panel_lib_found"],
290         [AS_IF(
291             [test "$need_panel_menu" = "yes"],
292             [AC_MSG_ERROR([could not find libmenu library (frontend: nconf)])],
293             [has_panel_menu=no])])
294      ncurses_extra_LIBS="$LIBS"
295      LIBS=$LIBS_old])
296
297 AS_IF(
298     [test "$has_panel_menu" = "no" ],
299     [enable_nconf=no])
300
301 #----------------------------------------
302 # Check headers and libs for gconf
303 AS_IF(
304     [test "$need_gtk" = "yes" -o "$need_gtk" = "auto"],
305     [PKG_CHECK_MODULES(
306         [gtk],
307         [gtk+-2.0 gmodule-2.0 libglade-2.0],
308         [has_gtk=yes],
309         [AS_IF(
310             [test "$need_gtk" = "yes"],
311             [AC_MSG_ERROR([could not find GTK+ headers and/or libraries (frontend: gconf)])],
312             [has_gtk=no])])])
313
314 AS_IF(
315     [test "$has_gtk" = "no" ],
316     [enable_gconf=no])
317
318 #----------------------------------------
319 # Check headers and libs for qconf
320 AS_IF(
321     [test "$need_qt" = "yes" -o "$need_qt" = "auto"],
322     [PKG_CHECK_MODULES(
323         [qt4],
324         [QtCore QtGui Qt3Support],
325         [has_qt=yes; need_moc="$need_qt"],
326         [AS_IF(
327             [test "$need_qt" = "yes"],
328             [AC_MSG_ERROR([could not find QT4 headers and/or libraries (frontend: qconf)])],
329             [has_qt=no; need_moc=no])])])
330
331 AC_ARG_VAR([MOC], [Qt meta object compiler (moc) command])
332 AS_IF(
333     [test "$need_moc" = "yes" -o "$need_moc" = "auto"],
334     [QT4_BINDIR=`$PKG_CONFIG Qt --variable bindir`
335      AC_PATH_PROGS(
336         [MOC],
337         [moc-qt4 moc],,
338         [$QT4_BINDIR:$PATH])
339      AS_IF(
340         [test -n "$MOC"],
341         [has_moc=yes],
342         [AS_IF(
343             [test "$need_moc" = "yes"],
344             [AC_MSG_ERROR([could not find moc (frontend: qconf)])],
345             [has_moc=no])])])
346
347 AS_IF(
348     [test "$has_qt" = "no" -o "$has_moc" = "no"],
349     [enable_qconf=no])
350
351 #----------------------------------------
352 # Per-frontends extra libraries
353 AC_ARG_VAR([conf_EXTRA_LIBS],  [Extra libraries to build the conf frontend] )
354 AC_ARG_VAR([gconf_EXTRA_LIBS], [Extra libraries to build the gconf frontend])
355 AC_ARG_VAR([mconf_EXTRA_LIBS], [Extra libraries to build the mconf frontend])
356 AC_ARG_VAR([nconf_EXTRA_LIBS], [Extra libraries to build the nconf frontend])
357 AC_ARG_VAR([qconf_EXTRA_LIBS], [Extra libraries to build the qconf frontend])
358
359 #---------------------------------------------------------------------------
360 # Now, we know what frontends to enable
361 AS_IF([test "$enable_conf"  = "auto"], [enable_conf=yes ])
362 AS_IF([test "$enable_gconf" = "auto"], [enable_gconf=yes])
363 AS_IF([test "$enable_mconf" = "auto"], [enable_mconf=yes])
364 AS_IF([test "$enable_nconf" = "auto"], [enable_nconf=yes])
365 AS_IF([test "$enable_qconf" = "auto"], [enable_qconf=yes])
366
367 #----------------------------------------
368 # Check if the lxdialog library should be built
369 AS_IF(
370     [test "$enable_mconf" = "yes"],
371     [need_lxdialog=yes],
372     [need_lxdialog=no])
373
374 #----------------------------------------
375 # Check if the images library should be built
376 AS_IF(
377     [test "$enable_gconf" = "yes" -o "$enable_qconf" = "yes"],
378     [need_images=yes],
379     [need_images=no])
380
381 #----------------------------------------
382 # Setup automake conditional build
383 AM_CONDITIONAL(
384     [COND_conf],
385     [test "$enable_conf" = "yes"])
386 AM_CONDITIONAL(
387     [COND_mconf],
388     [test "$enable_mconf" = "yes"])
389 AM_CONDITIONAL(
390     [COND_nconf],
391     [test "$enable_nconf" = "yes"])
392 AM_CONDITIONAL(
393     [COND_gconf],
394     [test "$enable_gconf" = "yes"])
395 AM_CONDITIONAL(
396     [COND_qconf],
397     [test "$enable_qconf" = "yes"])
398 AM_CONDITIONAL(
399     [COND_lxdialog],
400     [test "$need_lxdialog" = "yes"])
401 AM_CONDITIONAL(
402     [COND_images],
403     [test "$need_images" = "yes"])
404 AM_CONDITIONAL(
405     [COND_utils],
406     [test "$enable_utils" = "yes"])
407
408 #----------------------------------------
409 # Get the version to apply to the parser shared library
410 AC_SUBST(
411     [KCONFIGPARSER_LIB_VERSION],
412     [m4_esyscmd_s([./scripts/version.sh --plain])])
413
414 #----------------------------------------
415 # Finalise
416 AC_CONFIG_FILES([
417     Makefile
418     docs/Makefile
419     libs/Makefile
420     libs/images/Makefile
421     libs/lxdialog/Makefile
422     libs/parser/Makefile
423     frontends/Makefile
424     frontends/conf/Makefile
425     frontends/mconf/Makefile
426     frontends/nconf/Makefile
427     frontends/gconf/Makefile
428     frontends/qconf/Makefile
429     utils/Makefile
430     scripts/Makefile
431 ])
432 AC_OUTPUT
433
434 #----------------------------------------
435 # Pretty-print the configuration settings
436 [fe_list=]
437 AS_IF([test "$enable_conf"  = "yes"], [fe_list="$fe_list conf" ])
438 AS_IF([test "$enable_gconf" = "yes"], [fe_list="$fe_list gconf"])
439 AS_IF([test "$enable_mconf" = "yes"], [fe_list="$fe_list mconf"])
440 AS_IF([test "$enable_nconf" = "yes"], [fe_list="$fe_list nconf"])
441 AS_IF([test "$enable_qconf" = "yes"], [fe_list="$fe_list qconf"])
442
443 [lib_list=]
444 AS_IF(
445     [test "$enable_shared" = "yes"],
446     [lib_list="$lib_list shared (version: $KCONFIGPARSER_LIB_VERSION)"])
447 AS_IF(
448     [test "$enable_static" = "yes"],
449     [lib_list="$lib_list${lib_list:+,} static"])
450
451 AC_MSG_NOTICE()
452 AC_MSG_NOTICE([Configured with:])
453 AC_MSG_NOTICE([- parser library     :$lib_list])
454 AC_MSG_NOTICE([  - root-menu prompt : $root_menu])
455 AC_MSG_NOTICE([  - config prefix    : $config_prefix])
456 AC_MSG_NOTICE([- frontends          :$fe_list])
457 AC_MSG_NOTICE([  - transform name   : $program_transform_name])
458 AC_MSG_NOTICE([- install utilities  : $enable_utils])
459 AC_MSG_NOTICE([- CFLAGS CXXFLAGS    : $wall_CFLAGS $werror_CFLAGS])