1 ## configure.ac -- Process this file with autoconf to produce configure
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; version 2 of the License.
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
12 # You should have received a copy of the GNU General Public License
13 # along with this program; if not, write to the Free Software
14 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 [m4_esyscmd_s([./version.sh])],
19 [https://lists.ozlabs.org/listinfo/petitboot])
21 AC_CONFIG_MACRO_DIR([m4])
23 AC_PREFIX_DEFAULT([/usr/local])
25 AS_IF([test "x$CFLAGS" = "x"], [AC_SUBST([CFLAGS], [""])])
29 if test -z "$($LEX --version)"; then
30 AC_MSG_ERROR([[Please install flex/lex]])
33 if test -z "$($YACC --version)"; then
34 AC_MSG_ERROR([[Please install bison/yacc]])
40 AM_GNU_GETTEXT([external])
41 AM_GNU_GETTEXT_VERSION(0.18.1)
42 if test "$USE_NLS" = "yes" -a -z "$($MSGFMT --version)"; then
43 AC_MSG_ERROR([[Please install gettext]])
47 AM_SILENT_RULES([yes])
53 AM_CONDITIONAL([WITH_NCURSES], [test "x$ax_cv_curses" = "xyes"])
55 if test "x$ax_cv_curses" = xyes; then
56 if test "x$ax_cv_menu" != xyes; then
57 AC_MSG_ERROR([--with-ncurses requires the ncurses menu library])
59 if test "x$ax_cv_form" != xyes; then
60 AC_MSG_ERROR([--with-ncurses requires the ncurses form library])
64 AC_CHECK_LIB([udev], [udev_new],
66 [AC_MSG_FAILURE([The libudev development library is required by petitboot. Try installing the package libudev-dev or libudev-devel.])]
69 PKG_CHECK_EXISTS(libudev >= 218, [old_udev=no], [old_udev=yes])
70 if test "$old_udev" = "yes" ; then
71 AC_DEFINE(UDEV_LOGGING, 1, [Support old udev logging interface])
74 AC_CHECK_LIB([devmapper], [dm_task_create],
75 [DEVMAPPER_LIBS=-ldevmapper],
76 [AC_MSG_FAILURE([The libdevmapper development library is required by petitboot. Try installing the package libdevmapper-dev or device-mapper-devel.])]
80 AS_HELP_STRING([--without-fdt],
81 [Build without libfdt (default: no)]))
83 AS_IF([test "x$with_fdt" != "xno"],
84 AC_CHECK_LIB([fdt], [fdt_check_header],
85 [FDT_LIBS=-lfdt; have_libfdt=yes]))
87 AM_CONDITIONAL([HAVE_LIBFDT], [test x"$have_libfdt" = xyes])
89 AC_CHECK_HEADERS([stdarg.h])
90 AC_CHECK_HEADERS([varargs.h])
92 dnl Checking for va_copy availability
93 AC_MSG_CHECKING([for va_copy])
94 AC_TRY_LINK([#include <stdarg.h>
95 va_list ap1,ap2;], [va_copy(ap1,ap2);],
98 AC_MSG_RESULT($have_va_copy)
99 if test x"$have_va_copy" = x"yes"; then
100 AC_DEFINE(HAVE_VA_COPY,1,[Whether va_copy() is available])
102 AC_MSG_CHECKING([for __va_copy])
103 AC_TRY_LINK([#include <stdarg.h>
104 va_list ap1,ap2;], [__va_copy(ap1,ap2);],
107 AC_MSG_RESULT($have___va_copy)
108 if test x"$have___va_copy" = x"yes"; then
109 AC_DEFINE(HAVE___VA_COPY,1,[Whether __va_copy() is available])
115 [AS_HELP_STRING([--with-twin-x11],
116 [build x11 GUI programs using the twin window system [default=yes]]
121 AM_CONDITIONAL([WITH_TWIN_X11], [test "x$with_twin_x11" = "xyes"])
127 [build frame buffer GUI programs using the twin window system [default=no]]
132 AM_CONDITIONAL([WITH_TWIN_FBDEV], [test "x$with_twin_fbdev" = "xyes"])
136 [test "x$with_twin_x11" = "xyes" || test "x$with_twin_fbdev" = "xyes"])
139 [test "x$with_twin_x11" = "xyes" || test "x$with_twin_fbdev" = "xyes"],
143 [SAVE_LIBS="$LIBS" LIBS="$LIBS $twin_LIBS"
148 [AC_MSG_FAILURE([--with-twin was given but the test for libtwin failed.])]
152 [AC_MSG_RESULT([$twin_PKG_ERRORS])
153 AC_MSG_FAILURE([ Consider adjusting PKG_CONFIG_PATH environment variable])
159 [test "x$with_twin_x11" = "xyes"],
160 [SAVE_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $twin_CFLAGS"
162 [libtwin/twin_x11.h],
164 [AC_MSG_FAILURE([ --with-twin-x11 given but libtwin/twin_x11.h not found])]
166 CPPFLAGS="$SAVE_CPPFLAGS"
171 [test "x$with_twin_fbdev" = "xyes"],
172 [SAVE_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $twin_CFLAGS"
174 [libtwin/twin_fbdev.h],
176 [AC_MSG_FAILURE([ --with-twin-fbdev given but libtwin/twin_fbdev.h not found])]
178 CPPFLAGS="$SAVE_CPPFLAGS"
184 [AS_HELP_STRING([--with-signed-boot=@<:@no|yes|gpgme|openssl@:>@],
185 [Build kernel signature checking support with specified
186 crypto pacakge. A @<:@yes@:>@ value will first check
187 for gpgme then openssl and use the first found.
190 [AS_IF([test "x$with_signed_boot" = xno],[],
191 [test "x$with_signed_boot" = xyes],
192 [AM_PATH_GPGME([1.0.0],
196 [AC_MSG_FAILURE([--with-signed-boot=yes specified but gpgme or openssl not found])]
199 [test "x$with_signed_boot" = xgpgme],
200 [AM_PATH_GPGME([1.0.0],
202 [AC_MSG_FAILURE([--with-signed-boot=gpgme specified but gpgme not found])]
204 [test "x$with_signed_boot" = xopenssl],
207 [AC_MSG_FAILURE([--with-signed-boot=openssl specified but openssl not found])]
209 [AC_MSG_FAILURE([--with-signed-boot given invalid option: $with_signed_boot])]
211 [with_signed_boot=no]
214 AM_CONDITIONAL([WITH_GPGME], [test "x$sboot" = xgpgme])
215 AM_CONDITIONAL([WITH_OPENSSL], [test "x$sboot" = xopenssl])
216 AM_CONDITIONAL([WITH_SIGNED_BOOT], [test "x$with_signed_boot" != xno])
217 AM_COND_IF([WITH_SIGNED_BOOT],
218 [AC_DEFINE([SIGNED_BOOT], 1, [Define if you have signed boot enabled])],
223 [Location of authorized signature file [default = "/etc/pb-lockdown"]]
225 AS_IF([test "x$lockdown_file" = x], [lockdown_file="/etc/pb-lockdown"])
226 AC_DEFINE_UNQUOTED(LOCKDOWN_FILE, "$lockdown_file", [Lockdown file location])
230 [Path to keyring (gpgme home dir) @<:@default="/etc/gpg"@:>@]
232 AS_IF([test "x$KEYRING_PATH" = x], [KEYRING_PATH="/etc/gpg"])
233 AC_DEFINE_UNQUOTED(KEYRING_PATH, "$KEYRING_PATH", [gpgme home dir])
237 [Signed boot signature verification digest algorithm to use (only valid in openssl) @<:@default="sha256"@:>@]
239 AS_IF([test "x$VERIFY_DIGEST" = x], [VERIFY_DIGEST="sha256"])
240 AC_DEFINE_UNQUOTED(VERIFY_DIGEST, "$VERIFY_DIGEST", [openssl verify dgst])
246 [build programs with extra support for busybox [default=no]])
251 AM_CONDITIONAL([ENABLE_BUSYBOX], [test "x$enable_busybox" = "xyes"])
252 AS_IF([test "x$enable_busybox" = "xyes"],
253 [AC_DEFINE(WITH_BUSYBOX, 1, [Busybox environment enabled])],
261 [Add support for MTD devices on certain platforms [default=no]]
266 AM_CONDITIONAL([ENABLE_MTD], [test "x$enable_mtd" = "xyes"])
267 AS_IF([test "x$enable_mtd" = "xyes"],
268 [AC_DEFINE(MTD_SUPPORT, 1, [Enable MTD support])],
273 [test "x$enable_mtd" = "xyes"],
274 AC_CHECK_LIB([flash], [arch_flash_init],
275 [LIBFLASH_LIBS=-lflash],
276 [AC_MSG_FAILURE([--enable-mtd requires the libflash library])]
280 [test "x$enable_mtd" = "xyes"],
281 [SAVE_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $libflash_CFLAGS"
283 [libflash/libflash.h],
285 [AC_MSG_FAILURE([--enable-mtd given but libflash/libflash.h not found])]
287 CPPFLAGS="$SAVE_CPPFLAGS"
295 [build additional programs for the PS3 game console [default=no]]
300 AM_CONDITIONAL([ENABLE_PS3], [test "x$enable_ps3" = "xyes"])
304 [AS_HELP_STRING([--enable-debug],
305 [build programs with extra debug info [default=no]]
310 #AM_CONDITIONAL([ENABLE_DEBUG], [test "x$enable_debug" = "xyes"])
314 [AS_HELP_STRING([--enable-test-valgrind],
315 [run all tests with valgrind]
318 AM_CONDITIONAL([ENABLE_TEST_VALGRIND], [test "x$enable_test_valgrind" = "xyes"])
321 AC_DEFUN([DEFINE_HOST_PROG],
323 AC_ARG_VAR([HOST_PROG_$1], [Path to "$2" on the host [default $3]])
324 if test "x$HOST_PROG_$1" = "x"; then
327 AC_DEFINE_UNQUOTED(HOST_PROG_$1, ["$HOST_PROG_$1"],
328 [Path to "$2" on the host])
331 DEFINE_HOST_PROG(CP, cp, [/bin/cp])
332 DEFINE_HOST_PROG(KEXEC, kexec, [/sbin/kexec])
333 DEFINE_HOST_PROG(MOUNT, mount, [/bin/mount])
334 DEFINE_HOST_PROG(SHUTDOWN, shutdown, [/sbin/shutdown])
335 DEFINE_HOST_PROG(SFTP, sftp, [/usr/bin/sftp])
336 DEFINE_HOST_PROG(TFTP, tftp, [/usr/bin/tftp])
337 DEFINE_HOST_PROG(UMOUNT, umount, [/bin/umount])
338 DEFINE_HOST_PROG(WGET, wget, [/usr/bin/wget])
339 DEFINE_HOST_PROG(IP, ip, [/sbin/ip])
340 DEFINE_HOST_PROG(UDHCPC, udhcpc, [/sbin/udhcpc])
341 DEFINE_HOST_PROG(VGSCAN, vgscan, [/usr/sbin/vgscan])
342 DEFINE_HOST_PROG(VGCHANGE, vgchange, [/usr/sbin/vgchange])
343 DEFINE_HOST_PROG(PB_PLUGIN, pb-plugin, [/usr/sbin/pb-plugin])
344 DEFINE_HOST_PROG(PB_EXEC, pb-exec, [/usr/sbin/pb-exec])
345 DEFINE_HOST_PROG(SH, sh, [/bin/sh])
346 DEFINE_HOST_PROG(SCSI_RESCAN, scsi-rescan, [/usr/sbin/scsi-rescan])
350 [AS_HELP_STRING([--with-tftp=TYPE],
351 [Use TYPE-type ftp client (either hpa or busybox) [default=runtime-check]]
359 tftp_type='TFTP_TYPE_HPA'
362 tftp_type='TFTP_TYPE_BUSYBOX'
365 tftp_type='TFTP_TYPE_UNKNOWN'
369 AC_DEFINE_UNQUOTED(TFTP_TYPE, $tftp_type, [tftp client type])
371 default_cflags="--std=gnu99 -g \
372 -Wall -W -Wunused -Wstrict-prototypes -Wmissing-prototypes \
373 -Wmissing-declarations -Wredundant-decls"
377 [AS_HELP_STRING([--enable-werror],
378 [build programs with -Werror]
380 [default_cflags="$default_cflags -Werror"]
384 [test "x$enable_debug" = "xyes"],
386 AC_SUBST([DEFAULT_CFLAGS], ["$default_cflags -O0"])
387 AC_SUBST([DEFAULT_CPPFLAGS], ["-DDEBUG"])
390 AC_SUBST([DEFAULT_CFLAGS], ["$default_cflags -O2"])
391 AC_SUBST([DEFAULT_CPPFLAGS], ["-DNDEBUG"])
395 AC_SUBST([UDEV_LIBS])
396 AC_SUBST([DEVMAPPER_LIBS])
398 AC_SUBST([LIBFLASH_LIBS])
399 AC_SUBST([LIBTOOL_DEPS])
401 AC_SUBST([pkgsysconfdir], ["${sysconfdir}/${package}"])
403 AC_CONFIG_HEADERS([config.h])