]> git.sur5r.net Git - kconfig-frontends/blob - configure.ac
configure: add check for libintl
[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 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([intl_CPPFLAGS])
219 AC_SUBST([intl_LIBS])
220 AC_CHECK_HEADERS(
221     [libintl.h],
222     [ac_ct_gettext_hdr=$ac_header; break],
223     [AC_MSG_WARN([libintl is missing, frontends will not be localised])
224      intl_CPPFLAGS=-DKBUILD_NO_NLS])
225 AS_IF(
226     [test -n "$ac_ct_gettext_hdr"],
227     [AC_CHECK_DECL(
228         [gettext],,
229         [AC_MSG_WARN([gettext is missing, frontends will not be localised])
230          intl_CPPFLAGS=-DKBUILD_NO_NLS],
231         [#include <$ac_ct_gettext_hdr>])
232      LIBS_old="$LIBS"
233      LIBS=
234      AC_SEARCH_LIBS(
235         [gettext],
236         [intl],,
237         [AC_MSG_WARN([gettext is missing, frontends will not be localised])
238          intl_CPPFLAGS=-DKBUILD_NO_NLS])
239     intl_LIBS="$LIBS"
240     LIBS="$LIBS_old"])
241
242 #----------------------------------------
243 # Check for ncurses, for the mconf & nconf frontends
244 AS_IF(
245     [test "$need_curses" = "yes" -o "$need_curses" = "auto"],
246     [AC_SUBST([CURSES_LOC])
247      AC_SUBST([ncurses_LIBS])
248      LIBS_old="$LIBS"
249      LIBS=
250      AC_CHECK_HEADERS(
251         [ncurses/ncurses.h ncurses/curses.h ncursesw/curses.h ncurses.h curses.h],
252         [CURSES_LOC=$ac_header; break])
253      AS_IF(
254         [test -z "$CURSES_LOC"],
255         [AS_IF(
256             [test "$need_curses" = "yes"],
257             [AC_MSG_ERROR([could not find curses headers (frontends: mconf/nconf)])],
258             [has_curses=no])])
259      AC_SEARCH_LIBS(
260         [initscr],
261         [ncursesw ncurses curses],
262         [ac_ct_curses_lib_found=yes; break])
263      AS_IF(
264         [test -z "$ac_ct_curses_lib_found"],
265         [AS_IF(
266             [test "$need_curses" = "yes"],
267             [AC_MSG_ERROR([could not find curses library (frontends: mconf/nconf)])],
268             [has_curses=no])])
269      ncurses_LIBS="$LIBS"
270      LIBS=$LIBS_old])
271
272 AS_IF(
273     [test "$has_curses" = "no" ],
274     [enable_mconf=no; enable_nconf=no])
275
276 #----------------------------------------
277 # Check for libpanel and libmenu, for the nconf frontend
278 AS_IF(
279     [test "$need_panel_menu" = "yes" -o "$need_panel_menu" = "auto"],
280     [AC_SUBST([ncurses_extra_LIBS])
281      LIBS_old="$LIBS"
282      LIBS=
283      AC_SEARCH_LIBS(
284         [new_panel],
285         [panelw panel],
286         [ac_ct_panel_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 libpanel library (frontend: nconf)])],
293             [has_panel_menu=no])])
294      AC_SEARCH_LIBS(
295         [menu_init],
296         [menuw menu],
297         [ac_ct_menu_lib_found=yes; break],,
298         [$ncurses_LIBS])
299      AS_IF(
300         [test -z "$ac_ct_panel_lib_found"],
301         [AS_IF(
302             [test "$need_panel_menu" = "yes"],
303             [AC_MSG_ERROR([could not find libmenu library (frontend: nconf)])],
304             [has_panel_menu=no])])
305      ncurses_extra_LIBS="$LIBS"
306      LIBS=$LIBS_old])
307
308 AS_IF(
309     [test "$has_panel_menu" = "no" ],
310     [enable_nconf=no])
311
312 #----------------------------------------
313 # Check headers and libs for gconf
314 AS_IF(
315     [test "$need_gtk" = "yes" -o "$need_gtk" = "auto"],
316     [PKG_CHECK_MODULES(
317         [gtk],
318         [gtk+-2.0 gmodule-2.0 libglade-2.0],
319         [has_gtk=yes],
320         [AS_IF(
321             [test "$need_gtk" = "yes"],
322             [AC_MSG_ERROR([could not find GTK+ headers and/or libraries (frontend: gconf)])],
323             [has_gtk=no])])])
324
325 AS_IF(
326     [test "$has_gtk" = "no" ],
327     [enable_gconf=no])
328
329 #----------------------------------------
330 # Check headers and libs for qconf
331 AS_IF(
332     [test "$need_qt" = "yes" -o "$need_qt" = "auto"],
333     [PKG_CHECK_MODULES(
334         [qt4],
335         [QtCore QtGui Qt3Support],
336         [has_qt=yes; need_moc="$need_qt"],
337         [AS_IF(
338             [test "$need_qt" = "yes"],
339             [AC_MSG_ERROR([could not find QT4 headers and/or libraries (frontend: qconf)])],
340             [has_qt=no; need_moc=no])])])
341
342 AC_ARG_VAR([MOC], [Qt meta object compiler (moc) command])
343 AS_IF(
344     [test "$need_moc" = "yes" -o "$need_moc" = "auto"],
345     [QT4_BINDIR=`$PKG_CONFIG Qt --variable bindir`
346      AC_PATH_PROGS(
347         [MOC],
348         [moc-qt4 moc],,
349         [$QT4_BINDIR:$PATH])
350      AS_IF(
351         [test -n "$MOC"],
352         [has_moc=yes],
353         [AS_IF(
354             [test "$need_moc" = "yes"],
355             [AC_MSG_ERROR([could not find moc (frontend: qconf)])],
356             [has_moc=no])])])
357
358 AS_IF(
359     [test "$has_qt" = "no" -o "$has_moc" = "no"],
360     [enable_qconf=no])
361
362 #----------------------------------------
363 # Per-frontends extra libraries
364 AC_ARG_VAR([conf_EXTRA_LIBS],  [Extra libraries to build the conf frontend] )
365 AC_ARG_VAR([gconf_EXTRA_LIBS], [Extra libraries to build the gconf frontend])
366 AC_ARG_VAR([mconf_EXTRA_LIBS], [Extra libraries to build the mconf frontend])
367 AC_ARG_VAR([nconf_EXTRA_LIBS], [Extra libraries to build the nconf frontend])
368 AC_ARG_VAR([qconf_EXTRA_LIBS], [Extra libraries to build the qconf frontend])
369
370 #---------------------------------------------------------------------------
371 # Now, we know what frontends to enable
372 AS_IF([test "$enable_conf"  = "auto"], [enable_conf=yes ])
373 AS_IF([test "$enable_gconf" = "auto"], [enable_gconf=yes])
374 AS_IF([test "$enable_mconf" = "auto"], [enable_mconf=yes])
375 AS_IF([test "$enable_nconf" = "auto"], [enable_nconf=yes])
376 AS_IF([test "$enable_qconf" = "auto"], [enable_qconf=yes])
377
378 #----------------------------------------
379 # Check if the lxdialog library should be built
380 AS_IF(
381     [test "$enable_mconf" = "yes"],
382     [need_lxdialog=yes],
383     [need_lxdialog=no])
384
385 #----------------------------------------
386 # Check if the images library should be built
387 AS_IF(
388     [test "$enable_gconf" = "yes" -o "$enable_qconf" = "yes"],
389     [need_images=yes],
390     [need_images=no])
391
392 #----------------------------------------
393 # Setup automake conditional build
394 AM_CONDITIONAL(
395     [COND_conf],
396     [test "$enable_conf" = "yes"])
397 AM_CONDITIONAL(
398     [COND_mconf],
399     [test "$enable_mconf" = "yes"])
400 AM_CONDITIONAL(
401     [COND_nconf],
402     [test "$enable_nconf" = "yes"])
403 AM_CONDITIONAL(
404     [COND_gconf],
405     [test "$enable_gconf" = "yes"])
406 AM_CONDITIONAL(
407     [COND_qconf],
408     [test "$enable_qconf" = "yes"])
409 AM_CONDITIONAL(
410     [COND_lxdialog],
411     [test "$need_lxdialog" = "yes"])
412 AM_CONDITIONAL(
413     [COND_images],
414     [test "$need_images" = "yes"])
415 AM_CONDITIONAL(
416     [COND_utils],
417     [test "$enable_utils" = "yes"])
418
419 #----------------------------------------
420 # Get the version to apply to the parser shared library
421 AC_SUBST(
422     [KCONFIGPARSER_LIB_VERSION],
423     [m4_esyscmd_s([./scripts/version.sh --plain])])
424
425 #----------------------------------------
426 # Finalise
427 AC_CONFIG_FILES([
428     Makefile
429     docs/Makefile
430     libs/Makefile
431     libs/images/Makefile
432     libs/lxdialog/Makefile
433     libs/parser/Makefile
434     frontends/Makefile
435     frontends/conf/Makefile
436     frontends/mconf/Makefile
437     frontends/nconf/Makefile
438     frontends/gconf/Makefile
439     frontends/qconf/Makefile
440     utils/Makefile
441     scripts/Makefile
442 ])
443 AC_OUTPUT
444
445 #----------------------------------------
446 # Pretty-print the configuration settings
447 [fe_list=]
448 AS_IF([test "$enable_conf"  = "yes"], [fe_list="$fe_list conf" ])
449 AS_IF([test "$enable_gconf" = "yes"], [fe_list="$fe_list gconf"])
450 AS_IF([test "$enable_mconf" = "yes"], [fe_list="$fe_list mconf"])
451 AS_IF([test "$enable_nconf" = "yes"], [fe_list="$fe_list nconf"])
452 AS_IF([test "$enable_qconf" = "yes"], [fe_list="$fe_list qconf"])
453
454 [lib_list=]
455 AS_IF(
456     [test "$enable_shared" = "yes"],
457     [lib_list="$lib_list shared (version: $KCONFIGPARSER_LIB_VERSION)"])
458 AS_IF(
459     [test "$enable_static" = "yes"],
460     [lib_list="$lib_list${lib_list:+,} static"])
461
462 AC_MSG_NOTICE()
463 AC_MSG_NOTICE([Configured with:])
464 AC_MSG_NOTICE([- parser library     :$lib_list])
465 AC_MSG_NOTICE([  - root-menu prompt : $root_menu])
466 AC_MSG_NOTICE([  - config prefix    : $config_prefix])
467 AC_MSG_NOTICE([- frontends          :$fe_list])
468 AC_MSG_NOTICE([  - transform name   : $program_transform_name])
469 AC_MSG_NOTICE([- install utilities  : $enable_utils])
470 AC_MSG_NOTICE([- CFLAGS CXXFLAGS    : $wall_CFLAGS $werror_CFLAGS])