]> git.ozlabs.org Git - petitboot/blobdiff - configure.ac
config: Add boot_device member to config
[petitboot] / configure.ac
index 758207125c1b9e50ba5447a8c5184bb093bb077a..3d2ec184c437246c1a9b1d77c2219a7978695c0f 100644 (file)
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #
 
-AC_INIT([petitboot], [0.3], [Geoff Levand <geoff@infradead.org>])
+AC_INIT([petitboot],
+    [m4_esyscmd_s([./version.sh])],
+    [Geoff Levand <geoff@infradead.org>])
 
-AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_FILES([Makefile])
+AC_CONFIG_MACRO_DIR([m4])
 
-default_CFLAGS="--std=gnu99 -O2 -g -Wall -W -Wunused -Wstrict-prototypes \
--Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Winline"
+AC_PREFIX_DEFAULT([/usr/local])
 
-if test "x$CFLAGS" = "x"; then
-    CFLAGS="$default_CFLAGS"
-fi
+AS_IF([test "x$CFLAGS" = "x"], [AC_SUBST([CFLAGS], [""])])
 
 AC_PROG_CC
+AC_PROG_LEX
+AC_PROG_YACC
 AC_PROG_INSTALL
 
+AM_INIT_AUTOMAKE
+AC_GNU_SOURCE
+LT_INIT
+
+AX_WITH_CURSES
+AX_WITH_CURSES_MENU
+AX_WITH_CURSES_FORM
+
+AM_CONDITIONAL([WITH_NCURSES], [test "x$ax_cv_curses" = "xyes"])
+
+if test "x$ax_cv_curses" = xyes; then
+       if test "x$ax_cv_menu" != xyes; then
+               AC_MSG_ERROR([--with-ncurses requires the ncurses menu library])
+       fi
+       if test "x$ax_cv_form" != xyes; then
+               AC_MSG_ERROR([--with-ncurses requires the ncurses form library])
+       fi
+fi
+
+AC_CHECK_LIB([udev], [udev_new],
+       [],
+       [AC_MSG_FAILURE([The libudev development library is required by petitboot.  Try installing the package libudev-dev or libudev-devel.])]
+)
+
 AC_CHECK_HEADERS([stdarg.h])
 AC_CHECK_HEADERS([varargs.h])
-#AC_CHECK_FUNCS([va_copy])
 
 dnl Checking for va_copy availability
 AC_MSG_CHECKING([for va_copy])
@@ -54,47 +77,200 @@ else
     fi
 fi
 
-AC_ARG_ENABLE([ps3],
-       [AS_HELP_STRING([--enable-ps3],
-               [build support for the PS3 game console])],
+AC_ARG_WITH(
+       [twin-x11],
+       [AS_HELP_STRING([--with-twin-x11],
+               [build x11 GUI programs using the twin window system [default=yes]]
+       )],
        [],
-       [enable_ps3=check])
+       [with_twin_x11=yes]
+)
+AM_CONDITIONAL([WITH_TWIN_X11], [test "x$with_twin_x11" = "xyes"])
 
-AS_IF([test "x$enable_ps3" != xno], [AC_SUBST([ENABLE_PS3], ["y"])], [])
-
-AC_ARG_WITH([twin],
-       [AS_HELP_STRING([--with-twin],
-               [build GUI versions using the twin window system])],
+AC_ARG_WITH(
+       [twin-fbdev],
+       [AS_HELP_STRING(
+               [--with-twin-fbdev],
+               [build frame buffer GUI programs using the twin window system [default=no]]
+       )],
        [],
-       [with_twin=check])
+       [with_twin_fbdev=yes]
+)
+AM_CONDITIONAL([WITH_TWIN_FBDEV], [test "x$with_twin_fbdev" = "xyes"])
+
+AM_CONDITIONAL(
+       [WITH_TWIN],
+       [test "x$with_twin_x11" = "xyes" || test "x$with_twin_fbdev" = "xyes"])
 
-PBTWIN=
-LIBTWIN=
-AS_IF([test "x$with_twin" != xno],
-       [PKG_CHECK_MODULES([twin], [libtwin], [],
+AS_IF(
+       [test "x$with_twin_x11" = "xyes" || test "x$with_twin_fbdev" = "xyes"],
+       [PKG_CHECK_MODULES(
+               [twin],
+               [libtwin],
+               [SAVE_LIBS="$LIBS" LIBS="$LIBS $twin_LIBS"
+                       AC_CHECK_LIB(
+                               [twin],
+                               [twin_feature_init],
+                               [],
+                               [AC_MSG_FAILURE([--with-twin was given but the test for libtwin failed.])]
+                       )
+                       LIBS="$SAVE_LIBS"
+               ],
                [AC_MSG_RESULT([$twin_PKG_ERRORS])
-               AC_MSG_RESULT([Consider adjusting PKG_CONFIG_PATH environment variable])])
-       AC_CHECK_LIB([twin], [main],
-               [AC_SUBST([LIBTWIN], ["-ltwin"])
-                       AC_SUBST([PBTWIN], ["y"])
-                       AC_DEFINE([HAVE_LIBTWIN], [1], [Define if you have libtwin])],
-               [if test "x$with_twin" != xcheck; then
-                       AC_MSG_FAILURE([--with-twin was given, but test for twin failed])
-               fi],
-               [${twin_LIBS}])
-       AC_CHECK_HEADERS([libtwin/twin_x11.h])
-       AC_CHECK_HEADERS([libtwin/twin_fbdev.h])])
-
-AC_ARG_ENABLE([x11],
-       [AS_HELP_STRING([--enable-x11],
-               [build for x11])],
+                       AC_MSG_FAILURE([ Consider adjusting PKG_CONFIG_PATH environment variable])
+               ]
+       )]
+)
+
+AS_IF(
+       [test "x$with_twin_x11" = "xyes"],
+       [SAVE_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $twin_CFLAGS"
+               AC_CHECK_HEADERS(
+                       [libtwin/twin_x11.h],
+                       [],
+                       [AC_MSG_FAILURE([ --with-twin-x11 given but libtwin/twin_x11.h not found])]
+               )
+               CPPFLAGS="$SAVE_CPPFLAGS"
+       ]
+)
+
+AS_IF(
+       [test "x$with_twin_fbdev" = "xyes"],
+       [SAVE_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $twin_CFLAGS"
+               AC_CHECK_HEADERS(
+                       [libtwin/twin_fbdev.h],
+                       [],
+                       [AC_MSG_FAILURE([ --with-twin-fbdev given but libtwin/twin_fbdev.h not found])]
+               )
+               CPPFLAGS="$SAVE_CPPFLAGS"
+       ]
+)
+
+AC_ARG_ENABLE(
+       [busybox],
+       [AS_HELP_STRING(
+               [--enable-busybox],
+               [build programs with extra support for busybox [default=no]])
+       ],
        [],
-       [enable_x11=check])
+       [enable_busybox=no]
+)
+#AM_CONDITIONAL([ENABLE_BUSYBOX], [test "x$enable_busybox" = "xyes"])
 
-AS_IF([test "x$enable_x11" != xno], [AC_SUBST([ENABLE_X11], ["y"])], [])
+AC_ARG_ENABLE(
+       [ps3],
+       [AS_HELP_STRING(
+               [--enable-ps3],
+               [build additional programs for the PS3 game console [default=no]]
+       )],
+       [],
+       [enable_ps3=no]
+)
+AM_CONDITIONAL([ENABLE_PS3], [test "x$enable_ps3" = "xyes"])
+
+AC_ARG_ENABLE(
+       [debug],
+       [AS_HELP_STRING([--enable-debug],
+               [build programs with extra debug info [default=no]]
+       )],
+       [],
+       [enable_debug=check]
+)
+#AM_CONDITIONAL([ENABLE_DEBUG], [test "x$enable_debug" = "xyes"])
+
+AC_ARG_ENABLE(
+       [test-valgrind],
+       [AS_HELP_STRING([--enable-test-valgrind],
+               [run all tests with valgrind]
+       )],
+)
+AM_CONDITIONAL([ENABLE_TEST_VALGRIND], [test "x$enable_test_valgrind" = "xyes"])
+
+# host program paths
+AC_DEFUN([DEFINE_HOST_PROG],
+       [
+               AC_ARG_VAR([HOST_PROG_$1], [Path to "$2" on the host [default $3]])
+               if test "x$HOST_PROG_$1" = "x"; then
+                       HOST_PROG_$1="$3"
+               fi
+               AC_DEFINE_UNQUOTED(HOST_PROG_$1, ["$HOST_PROG_$1"],
+                               [Path to "$2" on the host])
+       ])
+
+DEFINE_HOST_PROG(CP, cp, [/bin/cp])
+DEFINE_HOST_PROG(KEXEC, kexec, [/sbin/kexec])
+DEFINE_HOST_PROG(MOUNT, mount, [/bin/mount])
+DEFINE_HOST_PROG(SHUTDOWN, shutdown, [/sbin/shutdown])
+DEFINE_HOST_PROG(SFTP, sftp, [/usr/bin/sftp])
+DEFINE_HOST_PROG(TFTP, tftp, [/usr/bin/tftp])
+DEFINE_HOST_PROG(UMOUNT, umount, [/bin/umount])
+DEFINE_HOST_PROG(WGET, wget, [/usr/bin/wget])
+DEFINE_HOST_PROG(IP, ip, [/sbin/ip])
+DEFINE_HOST_PROG(UDHCPC, udhcpc, [/sbin/udhcpc])
+
+AC_ARG_WITH(
+    [tftp],
+    [AS_HELP_STRING([--with-tftp=TYPE],
+        [Use TYPE-type ftp client (either hpa or busybox) [default=runtime-check]]
+    )],
+    [],
+    [with_tftp=detect]
+)
 
+case x$with_tftp in
+'xhpa')
+    tftp_type='TFTP_TYPE_HPA'
+    ;;
+'xbusybox')
+    tftp_type='TFTP_TYPE_BUSYBOX'
+    ;;
+*)
+    tftp_type='TFTP_TYPE_UNKNOWN'
+    ;;
+esac
 
-mkdir -p discover lib/list lib/log lib/pb-protocol lib/system lib/talloc \
-       lib/waiter test ui/common ui/ncurses ui/test ui/twin utils
+AC_DEFINE_UNQUOTED(TFTP_TYPE, $tftp_type, [tftp client type])
+
+default_cflags="--std=gnu99 -g \
+       -Wall -W -Wunused -Wstrict-prototypes -Wmissing-prototypes \
+       -Wmissing-declarations -Wredundant-decls"
+
+AC_ARG_ENABLE(
+       [werror],
+       [AS_HELP_STRING([--enable-werror],
+               [build programs with -Werror]
+       )],
+       [default_cflags="$default_cflags -Werror"]
+)
+
+AS_IF(
+       [test "x$enable_debug" = "xyes"],
+       [AC_SUBST([DEFAULT_CFLAGS], ["$default_cflags -O0 -DDEBUG"])],
+       [AC_SUBST([DEFAULT_CFLAGS], ["$default_cflags -O2 -DNDEBUG"])]
+)
+
+AC_SUBST([LIBTOOL_DEPS])
+AC_SUBST([DESTDIR])
+AC_SUBST([pkgsysconfdir], ["${sysconfdir}/${package}"])
+
+AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_FILES([
+       Makefile
+       discover/Makefile
+       discover/grub2/Makefile
+       lib/Makefile
+       man/Makefile
+       test/Makefile
+       test/lib/Makefile
+       test/parser/Makefile
+       test/urls/Makefile
+       ui/Makefile
+       ui/common/Makefile
+       ui/ncurses/Makefile
+       ui/test/Makefile
+       ui/twin/Makefile
+       utils/Makefile
+])
 
 AC_OUTPUT