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 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
#---------------------------------------------------------------------------
# Global initialisation
#----------------------------------------
# Prepare autoconf
AC_PREREQ([2.67])
AC_INIT(
[kconfig-frontends],
[m4_esyscmd_s([./scripts/version.sh])],
[yann.morin.1998@free.fr])
AC_CONFIG_SRCDIR([frontends/conf/conf.c])
# Use a config.h to avoid brazilions -DHAVE_FOO on compile lines
AC_CONFIG_HEADERS([scripts/.autostuff/config.h])
AC_CONFIG_AUX_DIR([scripts/.autostuff/scripts])
AC_CONFIG_MACRO_DIR([scripts/.autostuff/m4])
#----------------------------------------
# Prepare automake
AM_INIT_AUTOMAKE([foreign subdir-objects])
# For releases, enable silent rules, unless the user explicitly
# disables them.
# For the devel tree, do build with verbose output, unless user
# explicitly enables silent rules
AS_IF(
[test "$(${srcdir}/scripts/version.sh --internal)" = "git"],
[AM_SILENT_RULES],
[AM_SILENT_RULES([yes])])
#----------------------------------------
# Prepare libtool
m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) dnl Automake, we have a problem...
LT_PREREQ([2.2.6])
LT_INIT([disable-static])
#---------------------------------------------------------------------------
# Set misc options
# By default, do build with -Wall, unless the user asks not to
[wall_CFLAGS=-Wall]
AC_ARG_ENABLE(
[wall],
[AS_HELP_STRING(
[--disable-wall],
[build with -Wall (default=yes)])],
[AS_CASE(
["$enableval"],
[yes], [wall_CFLAGS=-Wall],
[*], [wall_CFLAGS=""])])
AC_SUBST([wall_CFLAGS],[${wall_CFLAGS}])
# For releases, do not build with -Werror, unless the user explicitly
# requests to build with -Werror.
# For the devel tree, do build with -Werror by default, unless user
# explicitly disables -Werror
AS_IF(
[test "$(${srcdir}/scripts/version.sh --internal)" = "git"],
[werror_CFLAGS=-Werror])
AC_ARG_ENABLE(
[werror],
[AS_HELP_STRING(
[--enable-werror],
[build with -Werror (default=no)])],
[AS_CASE(
["$enableval"],
[yes], [werror_CFLAGS=-Werror],
[*], [werror_CFLAGS=""])])
AC_SUBST([werror_CFLAGS],[${werror_CFLAGS}])
# Although there is a default (="linux") in the code, we do provide
# a default here, to get a consistent autostuff behavior
AC_ARG_ENABLE(
[root-menu-prompt],
[AS_HELP_STRING(
[--enable-root-menu-prompt=PROMPT],
[set the root-menu prompt (default=Configuration)])],
[AS_CASE(
["$enableval"],
[yes], [root_menu=Configuration],
[no], [root_menu=],
[# Escape the $ signs, otherwise they would get munged by make
root_menu="$( echo "$enableval" |sed -e 's/\$/\\$$/g;' )"])])
AC_SUBST([root_menu], [${root_menu=Configuration}])
AC_ARG_ENABLE(
[config-prefix],
[AS_HELP_STRING(
[--enable-config-prefix=PREFIX],
[the prefix to the config option (default=CONFIG_)])],
[AS_CASE(
["$enableval"],
[*" "*],[AC_MSG_ERROR([config prefix can not contain spaces: '$enableval'])],
[yes], [config_prefix=CONFIG_],
[no], [config_prefix=],
[config_prefix=$enableval])])
AC_SUBST([config_prefix], [${config_prefix-CONFIG_}])
AC_ARG_ENABLE(
[utils],
[AS_HELP_STRING(
[--disable-utils],
[install utilities to manage .config files (default=yes)])])
AC_SUBST([enable_utils], [${enable_utils:-yes}])
AC_ARG_ENABLE(
[L10n],
[AS_HELP_STRING(
[--disable-L10n],
[enable localisation (L10n) (default=auto)])])
AC_SUBST([enable_L10n], [${enable_L10n:-yes}])
#----------------------------------------
# Options to selectively enable/disable frontends
# All are selected by default
AC_ARG_ENABLE(
[kconfig],
[AS_HELP_STRING(
[--disable-kconfig],
[kconfig, the meta-frontend to all kconfig tools (default=yes)])])
AC_SUBST([enable_kconfig], [${enable_kconfig:-yes}])
AC_ARG_ENABLE(
[conf],
[AS_HELP_STRING(
[--disable-conf],
[conf, the stdin-based frontend (default=auto)])])
AC_SUBST([enable_conf], [${enable_conf:-auto}])
AC_ARG_ENABLE(
[mconf],
[AS_HELP_STRING(
[--disable-mconf],
[mconf, the traditional ncurses-based frontend (default=auto)])])
AC_SUBST([enable_mconf], [${enable_mconf:-auto}])
AC_ARG_ENABLE(
[nconf],
[AS_HELP_STRING(
[--disable-nconf],
[nconf, the modern ncurses-based frontend (default=auto)])])
AC_SUBST([enable_nconf], [${enable_nconf:-auto}])
AC_ARG_ENABLE(
[gconf],
[AS_HELP_STRING(
[--disable-gconf],
[gconf, the GTK-based frontend (default=auto)])])
AC_SUBST([enable_gconf], [${enable_gconf:-auto}])
AC_ARG_ENABLE(
[qconf],
[AS_HELP_STRING(
[--disable-qconf],
[qconf, the QT-based frontend (default=auto)])])
AC_SUBST([enable_qconf], [${enable_qconf:-auto}])
AC_ARG_ENABLE(
[frontends],
[AS_HELP_STRING(
[--enable-frontends=list],
[enables only the set of frontends in comma-separated 'list'
(default: auto selection), takes precedence over all
--enable-*conf, above])],
[for f in conf mconf nconf gconf qconf; do
AS_CASE(
["$enableval"],
[yes], [eval enable_$f=yes],
["$f"], [eval enable_$f=yes],
["$f",*], [eval enable_$f=yes],
[*,"$f"], [eval enable_$f=yes],
[*,"$f",*], [eval enable_$f=yes],
[eval enable_$f=no])
done])
AC_SUBST([enable_frontends])
#----------------------------------------
# What extra CFLAGS we will be using
AC_SUBST([kf_CFLAGS], ["$wall_CFLAGS $werror_CFLAGS"])
#----------------------------------------
# Dependencies that will be needed, depending on the frontends
AS_CASE(
["$enable_mconf":"$enable_nconf"],
[*yes*], [need_curses=yes],
[*auto*], [need_curses=auto],
[need_curses=no])
[need_panel_menu="$enable_nconf"]
AS_CASE(
["$enable_gconf":"$enable_qconf"],
[*yes*], [need_pkgconfig=yes],
[*auto*], [need_pkgconfig=yes],
[need_pkgconfig=no ])
[need_gtk="$enable_gconf"]
[need_qt="$enable_qconf"]
#---------------------------------------------------------------------------
# Now check we have the required stuff
#----------------------------------------
# Some program checks
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_CXX
AC_C_INLINE
AC_PROG_MAKE_SET
AS_IF(
[test "$need_pkgconfig" = "yes"],
[PKG_PROG_PKG_CONFIG()])
# Look for `lex'. If it cannot be found, autoconf sets $LEX to ':'.
AC_PROG_LEX
AS_IF(
[test "$LEX" = ":"],
[AC_MSG_ERROR([can not find a lexer generator (such as lex or flex)])])
AC_SUBST([AM_LFLAGS], ["-L -P zconf"])
# Look for `yacc'. If it cannot be found, autoconf sets $YACC to 'yacc'.
AC_PROG_YACC
AS_IF(
[test "$YACC" = "yacc"],
[AC_CHECK_PROGS(
[YACC_IN_PATH],
[yacc])]
AS_IF(
[test -z "$YACC_IN_PATH"],
[AC_MSG_ERROR([can not find a parser generator (such as yacc or bison)])]))
AC_SUBST([AM_YFLAGS], ["-t -l -p zconf"])
#----------------------------------------
# Special section to check for gperf.
AC_CHECK_PROGS(
[GPERF],
[gperf])
AS_IF(
[test -z "$GPERF"],
[AC_MSG_ERROR([can not find gperf])])
# gperf 3.1 generates functions with 'size_t' instead of 'unsigned int'
AC_MSG_CHECKING([for the type used in gperf declarations])
GPERF_LEN_TYPE=
AS_VAR_SET(
[GPERF_PROLOG],
[`echo foo,bar | ${GPERF} -L ANSI-C`])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[[
#include <string.h>
${GPERF_PROLOG}
const char * in_word_set(const char *, size_t);
]])
],
[GPERF_LEN_TYPE='size_t'],
[
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[[
#include <string.h>
${GPERF_PROLOG}
const char * in_word_set(const char *, unsigned int);
]])
],
[GPERF_LEN_TYPE='unsigned int'],
[AC_MSG_RESULT([not size_t, not unsigned int. What else?])
AC_MSG_FAILURE([unable to detect the type used in gperf declarations])
])])
AC_MSG_RESULT([${GPERF_LEN_TYPE}])
AC_SUBST([GPERF_LEN_TYPE])
#----------------------------------------
# Check for gettext, for the kconfig frontends
[has_gettext="$enable_L10n"]
AS_IF(
[test "$has_gettext" = "yes"],
[AC_CHECK_HEADERS(
[libintl.h],
[ac_ct_gettext_hdr=$ac_header; break],
[has_gettext=no])])
AS_IF(
[test "$has_gettext" = "yes"],
[AC_CHECK_DECL(
[gettext],,
[has_gettext=no],
[#include <$ac_ct_gettext_hdr>])])
AS_IF(
[test "$has_gettext" = "yes"],
[LIBS_old="$LIBS"
LIBS=
AC_SEARCH_LIBS(
[gettext],
[intl],,
[has_gettext=no])
intl_LIBS="$LIBS"
LIBS="$LIBS_old"])
AS_IF(
[test "$has_gettext" = "no"],
[intl_CPPFLAGS=-DKBUILD_NO_NLS])
AC_SUBST([intl_CPPFLAGS])
AC_SUBST([intl_LIBS])
#----------------------------------------
# Check for ncurses, for the mconf & nconf frontends
AS_IF(
[test "$need_curses" = "yes" -o "$need_curses" = "auto"],
[AC_SUBST([ncurses_mconf_CPPFLAGS])
AC_SUBST([ncurses_LIBS])
LIBS_old="$LIBS"
LIBS=
AC_CHECK_HEADERS(
[ncursesw/curses.h ncurses/ncurses.h ncurses/curses.h ncurses.h curses.h],
[CURSES_LOC=$ac_header
ncurses_mconf_CPPFLAGS=-DCURSES_LOC=\\\"$ac_header\\\"
break # Stupid syntax-coloring in vim: "])
AS_IF(
[test -z "$CURSES_LOC"],
[AS_IF(
[test "$need_curses" = "yes"],
[AC_MSG_ERROR([could not find curses headers (frontends: mconf/nconf)])],
[has_curses=no])])
AS_CASE(
[$CURSES_LOC],
[ncursesw/*],[ncurses_mconf_CPPFLAGS="$ncurses_mconf_CPPFLAGS -DNCURSES_WIDECHAR=1"])
AC_SEARCH_LIBS(
[setupterm],
[tinfo],
[break])
AC_SEARCH_LIBS(
[initscr],
[ncursesw ncurses curses],
[ac_ct_curses_lib_found=yes; break])
AS_IF(
[test -z "$ac_ct_curses_lib_found"],
[AS_IF(
[test "$need_curses" = "yes"],
[AC_MSG_ERROR([could not find curses library (frontends: mconf/nconf)])],
[has_curses=no])])
ncurses_LIBS="$LIBS"
LIBS=$LIBS_old])
AS_IF(
[test "$has_curses" = "no" ],
[enable_mconf=no; enable_nconf=no])
#----------------------------------------
# Check for libpanel and libmenu, for the nconf frontend
AS_IF(
[test "$need_panel_menu" = "yes" -o "$need_panel_menu" = "auto"],
[AC_SUBST([ncurses_nconf_CPPFLAGS])
AC_SUBST([ncurses_panel_menu_LIBS])
AS_CASE(
[$CURSES_LOC],
[ncursesw/*],[ncurses_nconf_CPPFLAGS="-I/usr/include/ncursesw"],
[ncurses/*],[ncurses_nconf_CPPFLAGS="-I/usr/include/ncurses"])
LIBS_old="$LIBS"
LIBS=
AC_SEARCH_LIBS(
[new_panel],
[panelw panel],
[ac_ct_panel_lib_found=yes; break],,
[$ncurses_LIBS])
AS_IF(
[test -z "$ac_ct_panel_lib_found"],
[AS_IF(
[test "$need_panel_menu" = "yes"],
[AC_MSG_ERROR([could not find libpanel library (frontend: nconf)])],
[has_panel_menu=no])])
AC_SEARCH_LIBS(
[menu_init],
[menuw menu],
[ac_ct_menu_lib_found=yes; break],,
[$ncurses_LIBS])
AS_IF(
[test -z "$ac_ct_panel_lib_found"],
[AS_IF(
[test "$need_panel_menu" = "yes"],
[AC_MSG_ERROR([could not find libmenu library (frontend: nconf)])],
[has_panel_menu=no])])
ncurses_panel_menu_LIBS="$LIBS"
LIBS=$LIBS_old])
AS_IF(
[test "$has_panel_menu" = "no" ],
[enable_nconf=no])
#----------------------------------------
# Check headers and libs for gconf
AS_IF(
[test "$need_gtk" = "yes" -o "$need_gtk" = "auto"],
[PKG_CHECK_MODULES(
[gtk],
[gtk+-3.0 gmodule-2.0 libglade-2.0],
[has_gtk=yes],
[AS_IF(
[test "$need_gtk" = "yes"],
[AC_MSG_ERROR([could not find GTK+ headers and/or libraries (frontend: gconf)])],
[has_gtk=no])])])
AS_IF(
[test "$has_gtk" = "no" ],
[enable_gconf=no])
#----------------------------------------
# Check headers and libs for qconf
AS_IF(
[test "$need_qt" = "yes" -o "$need_qt" = "auto"],
[PKG_CHECK_MODULES(
[Qt5],
[Qt5Core Qt5Gui Qt5Widgets],
[has_qt=yes; need_moc="$need_qt"],
[AS_IF(
[test "$need_qt" = "yes"],
[AC_MSG_ERROR([could not find Qt5 headers and/or libraries (frontend: qconf)])],
[has_qt=no; need_moc=no])])])
AC_ARG_VAR([MOC], [Qt5 meta object compiler (moc) command])
AS_IF(
[test "$need_moc" = "yes" -o "$need_moc" = "auto"],
[QT5_BINDIR=`$PKG_CONFIG Qt5Core --variable host_bins`
AC_PATH_PROGS(
[MOC],
[moc-qt5 moc],,
[$QT5_BINDIR:$PATH])
AS_IF(
[test -n "$MOC"],
[has_moc=yes],
[AS_IF(
[test "$need_moc" = "yes"],
[AC_MSG_ERROR([could not find moc (frontend: qconf)])],
[has_moc=no])])])
AS_IF(
[test "$has_qt" = "no" -o "$has_moc" = "no"],
[enable_qconf=no])
#----------------------------------------
# Per-frontends extra libraries
AC_ARG_VAR([conf_EXTRA_LIBS], [Extra libraries to build the conf frontend] )
AC_ARG_VAR([gconf_EXTRA_LIBS], [Extra libraries to build the gconf frontend])
AC_ARG_VAR([mconf_EXTRA_LIBS], [Extra libraries to build the mconf frontend])
AC_ARG_VAR([nconf_EXTRA_LIBS], [Extra libraries to build the nconf frontend])
AC_ARG_VAR([qconf_EXTRA_LIBS], [Extra libraries to build the qconf frontend])
#---------------------------------------------------------------------------
# Now, we know what frontends to enable
AS_IF([test "$enable_conf" = "auto"], [enable_conf=yes ])
AS_IF([test "$enable_gconf" = "auto"], [enable_gconf=yes])
AS_IF([test "$enable_mconf" = "auto"], [enable_mconf=yes])
AS_IF([test "$enable_nconf" = "auto"], [enable_nconf=yes])
AS_IF([test "$enable_qconf" = "auto"], [enable_qconf=yes])
#----------------------------------------
# Check if the lxdialog library should be built
AS_IF(
[test "$enable_mconf" = "yes"],
[need_lxdialog=yes],
[need_lxdialog=no])
#----------------------------------------
# Check if the images library should be built
AS_IF(
[test "$enable_gconf" = "yes" -o "$enable_qconf" = "yes"],
[need_images=yes],
[need_images=no])
#----------------------------------------
# Setup automake conditional build
AM_CONDITIONAL(
[COND_kconfig],
[test "$enable_kconfig" = "yes"])
AM_CONDITIONAL(
[COND_conf],
[test "$enable_conf" = "yes"])
AM_CONDITIONAL(
[COND_mconf],
[test "$enable_mconf" = "yes"])
AM_CONDITIONAL(
[COND_nconf],
[test "$enable_nconf" = "yes"])
AM_CONDITIONAL(
[COND_gconf],
[test "$enable_gconf" = "yes"])
AM_CONDITIONAL(
[COND_qconf],
[test "$enable_qconf" = "yes"])
AM_CONDITIONAL(
[COND_lxdialog],
[test "$need_lxdialog" = "yes"])
AM_CONDITIONAL(
[COND_images],
[test "$need_images" = "yes"])
AM_CONDITIONAL(
[COND_utils],
[test "$enable_utils" = "yes"])
AM_CONDITIONAL(
[COND_utils_gettext],
[test "$has_gettext" = "yes"])
#----------------------------------------
# Get the version to apply to the parser shared library
AC_SUBST(
[KCONFIGPARSER_LIB_VERSION],
[m4_esyscmd_s([./scripts/version.sh --plain])])
#----------------------------------------
# Pretty-print the configuration settings
[fe_list=]
AS_IF([test "$enable_conf" = "yes"], [fe_list="$fe_list conf" ])
AS_IF([test "$enable_gconf" = "yes"], [fe_list="$fe_list gconf"])
AS_IF([test "$enable_mconf" = "yes"], [fe_list="$fe_list mconf"])
AS_IF([test "$enable_nconf" = "yes"], [fe_list="$fe_list nconf"])
AS_IF([test "$enable_qconf" = "yes"], [fe_list="$fe_list qconf"])
# The meta frontend is handled separatly, below, because we do not
# want it in the list of tools, kcfg_list.
[kcfg_list="$fe_list"]
AS_IF([test "$enable_utils" = "yes"], [kcfg_list="$kcfg_list diff merge tweak"])
AS_IF([test "$has_gettext" = "yes"], [kcfg_list="$kcfg_list gettext"])
AC_SUBST([kcfg_list], [${kcfg_list}])
AS_IF([test "$enable_kconfig" = "yes"], [fe_list=" kconfig$fe_list"])
[lib_list=]
AS_IF(
[test "$enable_shared" = "yes"],
[lib_list="$lib_list shared (version: $KCONFIGPARSER_LIB_VERSION)"])
AS_IF(
[test "$enable_static" = "yes"],
[lib_list="$lib_list${lib_list:+,} static"])
#----------------------------------------
# Finalise
# All generated files are generated by a Makefile rule, except Makefile
# itself of course.
# There is no generic solution in automake to generate a file from its
# .in source, so we'd have to provide custom, hand-made rules, which is
# not nice. So, we handle libs/parser/kconfig-parser.pc here.
AC_CONFIG_FILES([
Makefile
libs/parser/kconfig-parser.pc
])
AC_OUTPUT
AC_MSG_NOTICE()
AC_MSG_NOTICE([Configured with:])
AC_MSG_NOTICE([- parser library :$lib_list])
AC_MSG_NOTICE([ - root-menu prompt : $root_menu])
AC_MSG_NOTICE([ - config prefix : $config_prefix])
AC_MSG_NOTICE([- frontends :$fe_list])
AC_MSG_NOTICE([ - localised : $has_gettext])
AC_MSG_NOTICE([- install utilities : $enable_utils])
AC_MSG_NOTICE([- CFLAGS CXXFLAGS : $wall_CFLAGS $werror_CFLAGS])
|