]> git.sur5r.net Git - kconfig-frontends/blobdiff - configure.ac
configure: allow passing extra libs per-frontend
[kconfig-frontends] / configure.ac
index 2396271d182ba25d2df0ba9377a4cd6d7692c6d7..f856c21e397619b6de5ce9c5256854dfbe6c1e2a 100644 (file)
@@ -1,6 +1,11 @@
 #                                               -*- Autoconf -*-
 # Process this file with autoconf to produce a configure script.
 
+#---------------------------------------------------------------------------
+# Global initialisation
+
+#----------------------------------------
+# Prepare autoconf
 AC_PREREQ([2.67])
 AC_INIT(
     [kconfig-frontends],
@@ -8,39 +13,50 @@ AC_INIT(
     [nobody@nowhere.org])
 AC_CONFIG_SRCDIR([frontends/conf/conf.c])
 # Use a config.h to avoid brazilions -DHAVE_FOO on compile lines
-AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_AUX_DIR([scripts])
-
-# Checks for programs.
-AC_PROG_CC
-AC_PROG_CXX
-AC_PROG_MAKE_SET
-
-# Checks for libraries.
-# (none)
+AC_CONFIG_HEADERS([scripts/.autostuff/config.h])
+AC_CONFIG_AUX_DIR([scripts/.autostuff/scritps])
+AC_CONFIG_MACRO_DIR([scripts/.autostuff/m4])
 
-# Checks for header files.
-AC_HEADER_STDC
-# The folowing AC_CHECK_HEADERS was a single big line
-AC_CHECK_HEADERS([ fcntl.h libintl.h limits.h locale.h ])
-AC_CHECK_HEADERS([ stdlib.h string.h sys/time.h unistd.h ])
-
-# Checks for typedefs, structures, and compiler characteristics.
-AC_HEADER_STDBOOL
-AC_C_INLINE
-AC_TYPE_SIZE_T
+#----------------------------------------
+# Prepare automake
+AM_INIT_AUTOMAKE
 
-# Checks for library functions.
-AC_FUNC_MALLOC
-AC_FUNC_REALLOC
-AC_FUNC_ALLOCA
-# The following AC_CHECK_FUNCS was a single big line
-AC_CHECK_FUNCS([ bzero memmove memset ])
-AC_CHECK_FUNCS([ strcasecmp strchr strcspn strdup strncasecmp strpbrk strrchr strspn strtol ])
-AC_CHECK_FUNCS([ gettimeofday mkdir regcomp setlocale uname ])
+#----------------------------------------
+# Prepare libtool
+LT_PREREQ([2.2.6])
+LT_INIT([disable-static])
 
-# End of the autoscan-detected stuff
 #---------------------------------------------------------------------------
+# Set misc options
+# 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
+                # Also, append a space at the end, to separate the package
+                # name from the literal 'Configuration'
+                root_menu="$( echo "$enableval" |sed -r -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_}])
 
 #----------------------------------------
 # Options to selectively enable/disable frontends
@@ -49,46 +65,109 @@ AC_ARG_ENABLE(
     [conf],
     [AS_HELP_STRING(
         [--disable-conf],
-        [conf, the stdin-based frontend (default=enabled)])])
+        [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=enabled)])])
+        [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=enabled)])])
+        [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=enabled)])])
+        [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=enabled)])])
+        [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])
+
+#----------------------------------------
+# 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_LEX
-AC_PROG_YACC
+AC_PROG_CC
+AM_PROG_CC_C_O
+AC_PROG_CXX
+AC_C_INLINE
+AC_PROG_MAKE_SET
 AC_CHECK_PROGS(
     [GPERF],
     [gperf])
 AS_IF(
     [test -z "$GPERF"],
     [AC_MSG_ERROR([can not find gperf])])
+AS_IF(
+    [test "$need_pkgconfig" = "yes"],
+    [PKG_PROG_PKG_CONFIG()])
+AC_PROG_LEX
 AC_SUBST([AM_LFLAGS], ["-L -P zconf"])
+AC_PROG_YACC
 AC_SUBST([AM_YFLAGS], ["-t -l -p zconf"])
 
+#----------------------------------------
+# Check for standard headers
+AC_HEADER_STDC
+AC_HEADER_STDBOOL
+AC_CHECK_HEADERS([ fcntl.h libintl.h limits.h locale.h ])
+AC_CHECK_HEADERS([ stdlib.h string.h sys/time.h unistd.h ])
+AC_TYPE_SIZE_T
+
+#----------------------------------------
+# Checks for library functions.
+AC_FUNC_MALLOC
+AC_FUNC_REALLOC
+AC_FUNC_ALLOCA
+AC_CHECK_FUNCS([ bzero memmove memset ])
+AC_CHECK_FUNCS([ strcasecmp strchr strcspn strdup strncasecmp strpbrk strrchr strspn strtol ])
+AC_CHECK_FUNCS([ gettimeofday mkdir regcomp setlocale uname ])
+
 #----------------------------------------
 # Check for gettext, for the kconfig frontends
 AC_SUBST([GETTEXT])
@@ -106,19 +185,12 @@ AS_IF(
 
 #----------------------------------------
 # Check for ncurses, for the mconf & nconf frontends
-AS_CASE(
-    ["$enable_mconf":"$enable_nconf"],
-    [yes:*],  [need_curses=yes],
-    [*:yes],  [need_curses=yes],
-    [auto:*], [need_curses=auto],
-    [*:auto], [need_curses=auto],
-              [need_curses=no])
-
 AS_IF(
     [test "$need_curses" = "yes" -o "$need_curses" = "auto"],
     [AC_SUBST([CURSES_LOC])
      AC_SUBST([ncurses_LIBS])
      LIBS_old="$LIBS"
+     LIBS=
      AC_CHECK_HEADERS(
         [ncurses/ncurses.h ncurses/curses.h ncursesw/curses.h ncurses.h curses.h],
         [CURSES_LOC=$ac_header; break])
@@ -147,16 +219,16 @@ AS_IF(
 
 #----------------------------------------
 # Check for libpanel and libmenu, for the nconf frontend
-[need_panel_menu="$enable_nconf"]
-
 AS_IF(
     [test "$need_panel_menu" = "yes" -o "$need_panel_menu" = "auto"],
     [AC_SUBST([ncurses_extra_LIBS])
      LIBS_old="$LIBS"
+     LIBS=
      AC_SEARCH_LIBS(
         [new_panel],
-        [panel],
-        [ac_ct_panel_lib_found=yes; break])
+        [panelw panel],
+        [ac_ct_panel_lib_found=yes; break],,
+        [$ncurses_LIBS])
      AS_IF(
         [test -z "$ac_ct_panel_lib_found"],
         [AS_IF(
@@ -165,8 +237,9 @@ AS_IF(
             [has_panel_menu=no])])
      AC_SEARCH_LIBS(
         [menu_init],
-        [menu],
-        [ac_ct_menu_lib_found=yes; break])
+        [menuw menu],
+        [ac_ct_menu_lib_found=yes; break],,
+        [$ncurses_LIBS])
      AS_IF(
         [test -z "$ac_ct_panel_lib_found"],
         [AS_IF(
@@ -180,31 +253,8 @@ AS_IF(
     [test "$has_panel_menu" = "no" ],
     [enable_nconf=no])
 
-#----------------------------------------
-# Check if the lxdialog library should be built
-AS_IF(
-    [test "$enable_mconf" = "yes" -o "$enable_mconf" = "auto"],
-    [need_lxdialog=yes],
-    [need_lxdialog=no])
-
-#----------------------------------------
-# Check pkg-config if needed
-AS_CASE(
-    ["$enable_gconf":"$enable_qconf"],
-    [yes:*],  [need_pkgconfig=yes],
-    [*:yes],  [need_pkgconfig=yes],
-    [auto:*], [need_pkgconfig=yes],
-    [*:auto], [need_pkgconfig=yes],
-              [need_pkgconfig=no ])
-
-AS_IF(
-    [test "$need_pkgconfig" = "yes"],
-    [PKG_PROG_PKG_CONFIG()])
-
 #----------------------------------------
 # Check headers and libs for gconf
-[need_gtk="$enable_gconf"]
-
 AS_IF(
     [test "$need_gtk" = "yes" -o "$need_gtk" = "auto"],
     [PKG_CHECK_MODULES(
@@ -221,9 +271,7 @@ AS_IF(
     [enable_gconf=no])
 
 #----------------------------------------
-# Check headers and libs for gconf
-[need_qt="$enable_qconf"]
-
+# Check headers and libs for qconf
 AS_IF(
     [test "$need_qt" = "yes" -o "$need_qt" = "auto"],
     [PKG_CHECK_MODULES(
@@ -239,6 +287,14 @@ AS_IF(
     [test "$has_qt" = "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 ])
@@ -247,10 +303,15 @@ 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])
 
-#---------------------------------------------------------------------------
-# Prepare automake
-AM_INIT_AUTOMAKE
-AM_PROG_CC_C_O
+#----------------------------------------
+# Check if the lxdialog library should be built
+AS_IF(
+    [test "$enable_mconf" = "yes"],
+    [need_lxdialog=yes],
+    [need_lxdialog=no])
+
+#----------------------------------------
+# Setup automake conditional build
 AM_CONDITIONAL(
     [COND_conf],
     [test "$enable_conf" = "yes"])
@@ -270,10 +331,6 @@ AM_CONDITIONAL(
     [COND_lxdialog],
     [test "$need_lxdialog" = "yes"])
 
-#---------------------------------------------------------------------------
-# Prepare libtool
-LT_INIT([disable-static])
-
 #----------------------------------------
 # Get the version to apply to the parser shared library
 AC_SUBST(
@@ -285,6 +342,7 @@ AC_SUBST(
 AC_CONFIG_FILES([
     Makefile
     libs/Makefile
+    libs/images/Makefile
     libs/lxdialog/Makefile
     libs/parser/Makefile
     frontends/Makefile
@@ -296,7 +354,10 @@ AC_CONFIG_FILES([
 ])
 AC_OUTPUT
 
+AC_MSG_NOTICE()
 AC_MSG_NOTICE([Configured with:])
+AC_MSG_NOTICE([- root-menu prompt: '$root_menu'])
+AC_MSG_NOTICE([- config prefix:    '$config_prefix'])
 AC_MSG_NOTICE([- frontends:])
 AS_IF([test "$enable_conf" = "yes"],
       [AC_MSG_NOTICE([  - conf:  yes])],