]> git.proxmox.com Git - grub2.git/blame - configure.ac
Use -Wl,--no-relax rather than -mno-relax for uniformity.
[grub2.git] / configure.ac
CommitLineData
76ed06b9
BC
1# -*- autoconf -*-
2
6a161fa9 3# Process this file with autoconf to produce a configure script.
4
2f1a3acf 5# Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009,2010 Free Software Foundation, Inc.
6a161fa9 6#
7# This configure.ac is free software; the author
8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14# PARTICULAR PURPOSE.
15
b977bf01 16dnl This configure script is complicated, because GRUB needs to deal
17dnl with three potentially different types:
18dnl
19dnl build -- the environment for building GRUB
20dnl host -- the environment for running utilities
21dnl target -- the environment for running GRUB
22dnl
23dnl In addition, GRUB needs to deal with a platform specification
24dnl which specifies the system running GRUB, such as firmware.
25dnl This is necessary because the target type in autoconf does not
26dnl describe such a system very well.
27dnl
28dnl The current strategy is to use variables with no prefix (such as
29dnl CC, CFLAGS, etc.) for the host type as well as the build type,
30dnl because GRUB does not need to use those variables for the build
31dnl type, so there is no conflict. Variables with the prefix "TARGET_"
32dnl (such as TARGET_CC, TARGET_CFLAGS, etc.) are used for the target
33dnl type.
34
5f91f701 35AC_INIT([GRUB],[2.00],[bug-grub@gnu.org])
6a161fa9 36
15c69261
YB
37AC_CONFIG_AUX_DIR([build-aux])
38
76ed06b9
BC
39# We don't want -g -O2 by default in CFLAGS
40: ${CFLAGS=""}
6a161fa9 41
b977bf01 42# Checks for host and target systems.
6a161fa9 43AC_CANONICAL_HOST
ee7fb780 44save_program_prefix="${program_prefix}"
b977bf01 45AC_CANONICAL_TARGET
ee7fb780 46program_prefix="${save_program_prefix}"
6a161fa9 47
6fe506b0 48AM_INIT_AUTOMAKE([1.10.1])
8c411768 49AC_PREREQ(2.60)
6304d292 50AC_CONFIG_SRCDIR([include/grub/dl.h])
742f9232 51AC_CONFIG_HEADER([config-util.h])
e52db1f7 52
1d543c3e 53# Program name transformations
54AC_ARG_PROGRAM
fd49ceb3
CW
55grub_TRANSFORM([grub-bios-setup])
56grub_TRANSFORM([grub-editenv])
57grub_TRANSFORM([grub-install])
58grub_TRANSFORM([grub-mkconfig])
59grub_TRANSFORM([grub-mkfont])
60grub_TRANSFORM([grub-mkimage])
67ab8353 61grub_TRANSFORM([grub-glue-efi])
fd49ceb3
CW
62grub_TRANSFORM([grub-mklayout])
63grub_TRANSFORM([grub-mkpasswd-pbkdf2])
64grub_TRANSFORM([grub-mkrelpath])
65grub_TRANSFORM([grub-mkrescue])
66grub_TRANSFORM([grub-probe])
67grub_TRANSFORM([grub-reboot])
68grub_TRANSFORM([grub-script-check])
69grub_TRANSFORM([grub-set-default])
fd49ceb3 70grub_TRANSFORM([grub-sparc64-setup])
a79b8a15 71grub_TRANSFORM([grub-render-label])
ec824e0f 72grub_TRANSFORM([grub-file])
1d543c3e 73
90d1e879
RM
74# Optimization flag. Allow user to override.
75if test "x$TARGET_CFLAGS" = x; then
76 TARGET_CFLAGS="$TARGET_CFLAGS -Os"
77fi
78
76ed06b9
BC
79# Default HOST_CPPFLAGS
80HOST_CPPFLAGS="$HOST_CPPFLAGS -Wall -W"
76ed06b9 81HOST_CPPFLAGS="$HOST_CPPFLAGS -I\$(top_builddir)/include"
76ed06b9 82HOST_CPPFLAGS="$HOST_CPPFLAGS -DGRUB_UTIL=1"
76ed06b9
BC
83
84TARGET_CPPFLAGS="$TARGET_CPPFLAGS -Wall -W"
85TARGET_CPPFLAGS="$TARGET_CPPFLAGS -I\$(top_srcdir)/include"
86TARGET_CPPFLAGS="$TARGET_CPPFLAGS -I\$(top_builddir)/include"
87
b977bf01 88case "$target_cpu" in
02164e1b 89 i[[3456]]86) target_cpu=i386 ;;
c7ef54aa 90 amd64) target_cpu=x86_64 ;;
02164e1b 91 sparc) target_cpu=sparc64 ;;
ade85305 92 mipsel|mips64el)
4959e111 93 target_cpu=mipsel;
c721825b 94 machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_CPU_MIPSEL=1";
4a1eefb6 95 ;;
ade85305 96 mips|mips64)
76ed06b9 97 target_cpu=mips;
c721825b 98 machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_CPU_MIPS=1";
4a1eefb6 99 ;;
389b31cd
LL
100 arm*)
101 target_cpu=arm;
102 ;;
15a463d7
LL
103 aarch64*)
104 target_cpu=arm64;
105 ;;
6a161fa9 106esac
107
05568c2e 108# Specify the platform (such as firmware).
109AC_ARG_WITH([platform],
110 AS_HELP_STRING([--with-platform=PLATFORM],
83b984de 111 [select the host platform [[guessed]]]))
05568c2e 112
113# Guess the platform if not specified.
114if test "x$with_platform" = x; then
b977bf01 115 case "$target_cpu"-"$target_vendor" in
05568c2e 116 i386-apple) platform=efi ;;
117 i386-*) platform=pc ;;
58393a2d 118 x86_64-apple) platform=efi ;;
737feb35 119 x86_64-*) platform=pc ;;
05568c2e 120 powerpc-*) platform=ieee1275 ;;
58393a2d 121 powerpc64-*) platform=ieee1275 ;;
05568c2e 122 sparc64-*) platform=ieee1275 ;;
4959e111
VS
123 mipsel-*) platform=loongson ;;
124 mips-*) platform=arc ;;
e68d3b24 125 ia64-*) platform=efi ;;
389b31cd 126 arm-*) platform=uboot ;;
15a463d7 127 arm64-*) platform=efi ;;
58393a2d 128 *) AC_MSG_ERROR([unsupported CPU: "$target_cpu"]) ;;
05568c2e 129 esac
130else
131 platform="$with_platform"
132fi
133
ec1dfd63
VS
134case "$target_cpu"-"$platform" in
135 x86_64-efi) ;;
136 x86_64-emu) ;;
9612ebc0 137 x86_64-xen) ;;
ec1dfd63
VS
138 x86_64-*) target_cpu=i386 ;;
139 powerpc64-ieee1275) target_cpu=powerpc ;;
140esac
20011694 141
58393a2d 142# Check if the platform is supported, make final adjustments.
b977bf01 143case "$target_cpu"-"$platform" in
05568c2e 144 i386-efi) ;;
3f4ce737 145 x86_64-efi) ;;
9612ebc0
VS
146 i386-xen) ;;
147 x86_64-xen) ;;
05568c2e 148 i386-pc) ;;
7210dca9 149 i386-multiboot) ;;
546f966a 150 i386-coreboot) ;;
58393a2d 151 i386-linuxbios) platform=coreboot ;;
3d04eab8 152 i386-ieee1275) ;;
8231fb77 153 i386-qemu) ;;
05568c2e 154 powerpc-ieee1275) ;;
155 sparc64-ieee1275) ;;
2c40cc78 156 ia64-efi) ;;
f440c33f 157 mips-qemu_mips) ;;
3666d5f6 158 mips-qemu-mips) platform=qemu_mips;;
8906c3dd 159 mips-arc) ;;
7f63a64f 160 mipsel-arc) ;;
4959e111
VS
161 mipsel-qemu_mips) ;;
162 mipsel-qemu-mips) platform=qemu_mips;;
163 mipsel-yeeloong) platform=loongson ;;
164 mipsel-fuloong) platform=loongson ;;
165 mipsel-loongson) ;;
389b31cd
LL
166 arm-uboot) ;;
167 arm-efi) ;;
15a463d7 168 arm64-efi) ;;
f84b481b 169 *-emu) ;;
58393a2d 170 *) AC_MSG_ERROR([platform "$platform" is not supported for target CPU "$target_cpu"]) ;;
6a161fa9 171esac
172
48145ea3 173if test x$platform != xemu ; then
dd614590
VS
174 case "$target_cpu" in
175 i386 | powerpc) target_m32=1 ;;
176 x86_64 | sparc64) target_m64=1 ;;
177 esac
178fi
3f4ce737 179
eaf01c25
VS
180if test x"$target_cpu-$platform" = xsparc64-emu ; then
181 target_m64=1 ;
182fi
183
fc97214f 184case "$target_os" in
c3302aa5 185 windows* | mingw32*) target_os=cygwin ;;
fc97214f
VS
186esac
187
9304eef1 188# This normalizes the names, and creates a new variable ("host_kernel")
189# while at it, since the mapping is not always 1:1 (e.g. different OSes
190# using the same kernel type).
191case "$host_os" in
192 gnu*) host_kernel=hurd ;;
193 linux*) host_kernel=linux ;;
67937d4d 194 freebsd* | kfreebsd*-gnu) host_kernel=kfreebsd ;;
2c7031b1 195 netbsd*) host_kernel=netbsd ;;
958ee221 196 solaris*) host_kernel=illumos ;;
b105df76 197 darwin*) host_kernel=xnu ;;
7e518ca8 198 cygwin | windows* | mingw32*) host_kernel=windows ;;
9304eef1 199esac
200
cd46aa6c
VS
201case "$host_os" in
202 cygwin | windows* | mingw32*) have_exec=n ;;
203 aros*) have_exec=n ;;
204 *) have_exec=y;;
205esac
206
f84b481b 207case "$platform" in
c721825b
BC
208 coreboot) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_COREBOOT=1" ;;
209 multiboot) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_MULTIBOOT=1" ;;
210 efi) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_EFI=1" ;;
9612ebc0 211 xen) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_XEN=1" ;;
c721825b 212 ieee1275) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_IEEE1275=1" ;;
389b31cd 213 uboot) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_UBOOT=1" ;;
c721825b
BC
214 qemu) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_QEMU=1" ;;
215 pc) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_PCBIOS=1" ;;
216 emu) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_EMU=1" ;;
54da1feb 217 loongson) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_MIPS_LOONGSON=1 -DGRUB_MACHINE_MIPS_BONITO=1" ;;
3666d5f6
VS
218 qemu_mips) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_MIPS_QEMU_MIPS=1 -DGRUB_MACHINE_MIPS_BONITO=1" ;;
219 arc) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_ARC=1" ;;
f84b481b 220esac
6bea3f89 221case "$target_cpu" in
389b31cd 222 arm) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_ARM=1" ;;
15a463d7 223 arm64) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_ARM64=1" ;;
4959e111 224 mips |mipsel) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_MIPS=1" ;;
c721825b 225 sparc64) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_SPARC64=1" ;;
6bea3f89 226esac
4959e111
VS
227if test x${target_cpu} = xmipsel ; then
228 machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE=`echo mips_$platform | sed y,abcdefghijklmnopqrstuvwxyz,ABCDEFGHIJKLMNOPQRSTUVWXYZ,`"
229else
3ec0fc1c 230 machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE=`echo ${target_cpu}_$platform | sed y,abcdefghijklmnopqrstuvwxyz,ABCDEFGHIJKLMNOPQRSTUVWXYZ,` -DGRUB_TARGET_CPU_`echo ${target_cpu} | sed y,abcdefghijklmnopqrstuvwxyz,ABCDEFGHIJKLMNOPQRSTUVWXYZ,`=1"
4959e111 231fi
6bea3f89 232
7f63a64f
VS
233case "${target_cpu}-$platform" in
234 mips-arc)
235 TARGET_LINK_ADDR=0x88200000
236 TARGET_DECOMPRESSOR_LINK_ADDR=0x88100000
237 ;;
238 mipsel-arc)
239 TARGET_LINK_ADDR=0x80700000
240 TARGET_DECOMPRESSOR_LINK_ADDR=0x80600000
241 ;;
5fe67f39 242 mips*-qemu_mips | mips*-loongson)
7f63a64f
VS
243 TARGET_DECOMPRESSOR_LINK_ADDR=0x80100000
244 ;;
245esac
246
247AC_SUBST(TARGET_LINK_ADDR)
248AC_SUBST(TARGET_DECOMPRESSOR_LINK_ADDR)
249
c721825b 250TARGET_CPPFLAGS="$TARGET_CPPFLAGS $machine_CPPFLAGS"
f84b481b 251
56978920 252AC_SUBST(host_cpu)
253AC_SUBST(host_os)
9304eef1 254AC_SUBST(host_kernel)
6e5a42fe 255
071114bb
VS
256AC_SUBST(target_cpu)
257AC_SUBST(platform)
258
d87aedff 259# Define default variables
7134247c
VS
260
261have_with_bootdir=n
262AC_ARG_WITH([bootdir],
263 AS_HELP_STRING([--with-bootdir=DIR],
264 [set the name of /boot directory [[guessed]]]),
265 [have_with_bootdir=y],
266 [have_with_bootdir=n])
267if test x$have_with_bootdir = xy; then
268 bootdirname="$with_bootdir"
269else
270 case "$host_os" in
271 netbsd* | openbsd*)
d87aedff 272 # Because /boot is used for the boot block in NetBSD and OpenBSD,
7134247c
VS
273 bootdirname='' ;;
274 *) bootdirname='boot' ;;
275 esac
276fi
277
d87aedff 278AC_SUBST(bootdirname)
a4c1d277
YB
279AC_DEFINE_UNQUOTED(GRUB_BOOT_DIR_NAME, "$bootdirname",
280 [Default boot directory name]")
d87aedff 281
7134247c
VS
282AC_ARG_WITH([grubdir],
283 AS_HELP_STRING([--with-grubdir=DIR],
284 [set the name of grub directory [[guessed]]]),
285 [grubdirname="$with_grubdir"],
286 [grubdirname="$PACKAGE"])
287
d87aedff 288AC_SUBST(grubdirname)
a4c1d277
YB
289AC_DEFINE_UNQUOTED(GRUB_DIR_NAME, "$grubdirname",
290 [Default grub directory name])
d87aedff 291
b977bf01 292#
293# Checks for build programs.
294#
144f1f98 295
6c826348 296# Although cmp is listed in the GNU Coding Standards as a command which
297# can used directly, OpenBSD lacks cmp in the default installation.
298AC_CHECK_PROGS([CMP], [cmp])
299if test "x$CMP" = x; then
300 AC_MSG_ERROR([cmp is not found])
301fi
302
144f1f98 303AC_CHECK_PROGS([YACC], [bison])
1569ec51 304if test "x$YACC" = x; then
6c826348 305 AC_MSG_ERROR([bison is not found])
1569ec51 306fi
307
76ed06b9 308AC_PROG_RANLIB
b977bf01 309AC_PROG_INSTALL
310AC_PROG_AWK
09220190 311AC_PROG_LEX
76ed06b9 312AC_PROG_YACC
b977bf01 313AC_PROG_MAKE_SET
ff420223 314AC_PROG_MKDIR_P
e1fd1939 315AC_PROG_LN_S
b977bf01 316
c7c75cf4 317if test "x$LEX" = "x:"; then
09220190
BC
318 AC_MSG_ERROR([flex is not found])
319else
2663fb5f 320 version=`$LEX --version | $AWK '{ split($NF,x,"."); print x[[1]]*10000+x[[2]]*100+x[[3]]; }'`
b777c18e 321 if test -n "$version" -a "$version" -ge 20535; then
09220190
BC
322 :
323 else
324 AC_MSG_ERROR([flex is too old. GRUB requires 2.5.35 or above])
325 fi
326fi
327
68807e5f 328# These are not a "must".
51fa856c 329AC_PATH_PROGS(MAKEINFO, makeinfo true)
6a161fa9 330
b977bf01 331#
332# Checks for host programs.
333#
334
335AC_PROG_CC
15c69261 336gl_EARLY
1eed0e6e 337AC_PROG_CXX
76ed06b9
BC
338AM_PROG_CC_C_O
339AM_PROG_AS
340
6a161fa9 341# Must be GCC.
342test "x$GCC" = xyes || AC_MSG_ERROR([GCC is required])
343
1eed0e6e
VS
344AC_CHECK_PROG(HAVE_CXX, $CXX, yes, no)
345
4889bdec 346AC_GNU_SOURCE
2f1a3acf 347AM_GNU_GETTEXT([external])
b977bf01 348AC_SYS_LARGEFILE
349
350# Identify characteristics of the host architecture.
7b780018
VS
351unset ac_cv_c_bigendian
352
eaf01c25
VS
353if test x"$target_cpu-$platform" = xsparc64-emu ; then
354 CFLAGS="$CFLAGS -m64"
355 HOST_CFLAGS="$HOST_CFLAGS -m64"
356fi
357
b977bf01 358AC_C_BIGENDIAN
359AC_CHECK_SIZEOF(void *)
360AC_CHECK_SIZEOF(long)
361
7e518ca8
VS
362case "$host_os" in
363 cygwin | windows* | mingw32*)
364 HOST_CPPFLAGS="$HOST_CPPFLAGS -DUNICODE=1 -D_WIN32_WINNT=0x0500"
365 CPPFLAGS="$CPPFLAGS -DUNICODE=1 -D_WIN32_WINNT=0x0500"
366 AC_CHECK_SIZEOF(TCHAR,,[#include <windows.h>])
367 ;;
368esac
369
aad32b14
VS
370if test x$USE_NLS = xno; then
371 HOST_CFLAGS="$HOST_CFLAGS -fno-builtin-gettext"
372fi
373
86695375 374if test "x$cross_compiling" = xyes; then
375 AC_MSG_WARN([cannot generate manual pages while cross compiling])
376else
377 AC_PATH_PROG(HELP2MAN, help2man)
378fi
379
3169f4c7 380# Check for functions and headers.
0f7e980b 381AC_CHECK_FUNCS(posix_memalign memalign getextmntent)
e4c498a1 382AC_CHECK_HEADERS(sys/param.h sys/mount.h sys/mnttab.h sys/mkdev.h limits.h)
7c4e16ff 383
fb90b546
RM
384AC_CHECK_MEMBERS([struct statfs.f_fstypename],,,[$ac_includes_default
385#include <sys/param.h>
386#include <sys/mount.h>])
387
388AC_CHECK_MEMBERS([struct statfs.f_mntfromname],,,[$ac_includes_default
389#include <sys/param.h>
390#include <sys/mount.h>])
391
2c7031b1
GS
392# For opendisk() and getrawpartition() on NetBSD.
393# Used in util/deviceiter.c and in util/hostdisk.c.
394AC_CHECK_HEADER([util.h], [
395 AC_CHECK_LIB([util], [opendisk], [
396 LIBUTIL="-lutil"
397 AC_DEFINE(HAVE_OPENDISK, 1, [Define if opendisk() in -lutil can be used])
398 ])
399 AC_CHECK_LIB([util], [getrawpartition], [
400 LIBUTIL="-lutil"
401 AC_DEFINE(HAVE_GETRAWPARTITION, 1, [Define if getrawpartition() in -lutil can be used])
402 ])
403])
404AC_SUBST([LIBUTIL])
405
19ce697d 406AC_CACHE_CHECK([whether -Wtrampolines work], [grub_cv_host_cc_wtrampolines], [
00c05e22 407 SAVED_CFLAGS="$CFLAGS"
b35ec299 408 CFLAGS="$HOST_CFLAGS -Wtrampolines -Werror"
00c05e22
VS
409 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdarg.h>
410int va_arg_func (int fixed, va_list args);]], [[]])],
19ce697d
VS
411 [grub_cv_host_cc_wtrampolines=yes],
412 [grub_cv_host_cc_wtrampolines=no])
00c05e22
VS
413 CFLAGS="$SAVED_CFLAGS"
414])
415
19ce697d
VS
416if test x"$grub_host_cv_cc_wtrampolines" = xyes ; then
417 HOST_CFLAGS="$HOST_CFLAGS -Wtrampolines"
00c05e22
VS
418fi
419
76ed06b9
BC
420#
421# Check for host and build compilers.
422#
423HOST_CC=$CC
816719c8
VS
424AC_CHECK_PROGS(BUILD_CC, [gcc egcs cc])
425test -z "$BUILD_CC" && AC_MSG_ERROR([none of gcc, egcs and cc is found. set BUILD_CC manually.])
b224c266 426BUILD_CPP="$BUILD_CC -E"
76ed06b9 427
29013cba
VS
428case "$build_os" in
429 haiku*) BUILD_LIBM= ;;
430 *) BUILD_LIBM=-lm ;;
431esac
15c69261
YB
432# For gnulib.
433gl_INIT
434
382b500e 435WARN_FLAGS="-Wall -W -Wshadow -Wpointer-arith -Wundef -Wchar-subscripts -Wcomment -Wdeprecated-declarations -Wdisabled-optimization -Wdiv-by-zero -Wfloat-equal -Wformat-extra-args -Wformat-security -Wformat-y2k -Wimplicit -Wimplicit-function-declaration -Wimplicit-int -Wmain -Wmissing-braces -Wmissing-format-attribute -Wmultichar -Wparentheses -Wpointer-arith -Wreturn-type -Wsequence-point -Wshadow -Wsign-compare -Wswitch -Wtrigraphs -Wundef -Wunknown-pragmas -Wunused -Wunused-function -Wunused-label -Wunused-parameter -Wunused-value -Wunused-variable -Wwrite-strings -Wnested-externs -Wstrict-prototypes"
c2be6f7e 436EXTRA_WARN_FLAGS="-Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign"
60d5e9cb
VS
437
438HOST_CFLAGS="$HOST_CFLAGS $WARN_FLAGS -Wcast-align"
439
440AC_CACHE_CHECK([which extra warnings work], [grub_cv_cc_w_extra_flags], [
441 SAVED_CFLAGS="$CFLAGS"
442 grub_cv_cc_w_extra_flags=
443 for x in $EXTRA_WARN_FLAGS; do
444 CFLAGS="$HOST_CFLAGS $x -Werror"
445 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])], [flag=1], [flag=0])
446 if test x$flag = x1 ; then
447 grub_cv_cc_w_extra_flags="$grub_cv_cc_w_extra_flags $x"
448 fi
449 done
450 CFLAGS="$SAVED_CFLAGS"
451])
452
453HOST_CFLAGS="$HOST_CFLAGS $grub_cv_cc_w_extra_flags"
454
b977bf01 455#
456# Check for target programs.
457#
458
5b5d4aa5 459# Find tools for the target.
460if test "x$target_alias" != x && test "x$host_alias" != "x$target_alias"; then
b977bf01 461 tmp_ac_tool_prefix="$ac_tool_prefix"
462 ac_tool_prefix=$target_alias-
463
464 AC_CHECK_TOOLS(TARGET_CC, [gcc egcs cc],
465 [AC_MSG_ERROR([none of gcc, egcs and cc is found. set TARGET_CC manually.])])
fc97214f
VS
466 AC_CHECK_TOOL(TARGET_OBJCOPY, objcopy)
467 AC_CHECK_TOOL(TARGET_STRIP, strip)
468 AC_CHECK_TOOL(TARGET_NM, nm)
0e8daad0 469 AC_CHECK_TOOL(TARGET_RANLIB, ranlib)
b977bf01 470
471 ac_tool_prefix="$tmp_ac_tool_prefix"
472else
473 if test "x$TARGET_CC" = x; then
474 TARGET_CC=$CC
475 fi
fc97214f
VS
476 AC_CHECK_TOOL(TARGET_OBJCOPY, objcopy)
477 AC_CHECK_TOOL(TARGET_STRIP, strip)
478 AC_CHECK_TOOL(TARGET_NM, nm)
0e8daad0 479 AC_CHECK_TOOL(TARGET_RANLIB, ranlib)
b977bf01 480fi
fc97214f 481
76ed06b9
BC
482AC_SUBST(HOST_CC)
483AC_SUBST(BUILD_CC)
7c9d0c39
VS
484AC_SUBST(BUILD_CFLAGS)
485AC_SUBST(BUILD_CPPFLAGS)
b977bf01 486AC_SUBST(TARGET_CC)
fc97214f 487AC_SUBST(TARGET_NM)
1bd73025 488AC_SUBST(TARGET_RANLIB)
fc97214f
VS
489AC_SUBST(TARGET_STRIP)
490AC_SUBST(TARGET_OBJCOPY)
b977bf01 491
b977bf01 492# Test the C compiler for the target environment.
493tmp_CC="$CC"
494tmp_CFLAGS="$CFLAGS"
495tmp_LDFLAGS="$LDFLAGS"
496tmp_CPPFLAGS="$CPPFLAGS"
aa6d7826 497tmp_LIBS="$LIBS"
b977bf01 498CC="$TARGET_CC"
499CFLAGS="$TARGET_CFLAGS"
500CPPFLAGS="$TARGET_CPPFLAGS"
501LDFLAGS="$TARGET_LDFLAGS"
aa6d7826 502LIBS=""
b977bf01 503
90d1e879 504# debug flags.
4e27343f 505TARGET_CFLAGS="$TARGET_CFLAGS $WARN_FLAGS -g -Wredundant-decls -Wmissing-prototypes -Wmissing-declarations"
76ed06b9 506TARGET_CCASFLAGS="$TARGET_CCASFLAGS -g"
6a161fa9 507
c12936c5
VS
508if test "x$target_cpu" != xi386 && test "x$target_cpu" != xx86_64; then
509TARGET_CFLAGS="$TARGET_CFLAGS -Wcast-align"
510fi
511
60d5e9cb
VS
512AC_CACHE_CHECK([which extra warnings work], [grub_cv_target_cc_w_extra_flags], [
513 LDFLAGS="$TARGET_LDFLAGS -nostdlib -static"
514
515 grub_cv_target_cc_w_extra_flags=
516 for x in $EXTRA_WARN_FLAGS; do
517 CFLAGS="$TARGET_CFLAGS $x -Werror"
37378f74
VS
518 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
519asm (".globl start; start:");
520void __main (void);
521void __main (void) {}
522int main (void);
523]], [[]])], [flag=1], [flag=0])
60d5e9cb
VS
524 if test x$flag = x1 ; then
525 grub_cv_target_cc_w_extra_flags="$grub_cv_target_cc_w_extra_flags $x"
526 fi
527 done
528])
529
530TARGET_CFLAGS="$TARGET_CFLAGS $grub_cv_target_cc_w_extra_flags"
531
60375a88 532AC_CACHE_CHECK([if compiling with clang], [grub_cv_cc_target_clang]
b73b70eb
VS
533[
534CFLAGS="$TARGET_CFLAGS"
535AC_COMPILE_IFELSE(
60375a88
VS
536[AC_LANG_PROGRAM([], [[
537#ifdef __clang__
538#error "is clang"
539#endif
540]])],
541[grub_cv_cc_target_clang=no], [grub_cv_cc_target_clang=yes])])
542
2312f06c
VS
543# on x86 clang doesn't support .code16
544# on arm clang doesn't support .arch directive
63a45330
VS
545# on mips clang doesn't support privilegied instructions, doubleword store/load
546# and crashes with hand-written assembly
547if test "x$grub_cv_cc_target_clang" = xyes && ( test "x$target_cpu" = xi386 \
548 || test "x$target_cpu" = xx86_64 || test "x$target_cpu" = xarm \
549 || test "x$target_cpu" = xmips || test "x$target_cpu" = xmipsel ); then
60375a88
VS
550 TARGET_CCASFLAGS="$TARGET_CCASFLAGS -no-integrated-as"
551fi
552
b73b70eb
VS
553if test "x$grub_cv_cc_target_clang" = xyes && test "x$target_cpu" = xpowerpc; then
554AC_CACHE_CHECK([if clang can handle ame instruction], [grub_cv_cc_target_clang_ame]
555[
556CFLAGS="$TARGET_CFLAGS"
557AC_COMPILE_IFELSE(
558[AC_LANG_PROGRAM([], [[
559 unsigned int a = 0, b = 0;
560 asm volatile ("{ame|addme} %0,%1" : "=r" (a) : "r" (b));
561 if (a)
562 return 1;
563]])],
564[grub_cv_cc_target_clang_ame=yes], [grub_cv_cc_target_clang_ame=no])])
565 # clang <= 3.3 doesn't handle most of ppc assembly, not even inline assembly
566 # used by gcrypt
567 if test x$grub_cv_cc_target_clang_ame = xno ; then
568 TARGET_CCASFLAGS="$TARGET_CCASFLAGS -no-integrated-as"
896f483d 569 TARGET_CFLAGS="$TARGET_CFLAGS -no-integrated-as"
b73b70eb
VS
570 fi
571fi
572
60375a88
VS
573if test "x$target_cpu" = xi386 && test "x$platform" != xemu; then
574 TARGET_CFLAGS="$TARGET_CFLAGS -march=i386"
575fi
576
577if test "x$target_m32" = x1; then
578 # Force 32-bit mode.
579 TARGET_CFLAGS="$TARGET_CFLAGS -m32"
580 TARGET_CCASFLAGS="$TARGET_CCASFLAGS -m32"
581 TARGET_CPPFLAGS="$TARGET_CPPFLAGS -m32"
582 TARGET_LDFLAGS="$TARGET_LDFLAGS -m32"
583 TARGET_MODULE_FORMAT="elf32"
584fi
585
586if test "x$target_m64" = x1; then
587 # Force 64-bit mode.
588 TARGET_CFLAGS="$TARGET_CFLAGS -m64"
589 TARGET_CCASFLAGS="$TARGET_CCASFLAGS -m64"
590 TARGET_CPPFLAGS="$TARGET_CPPFLAGS -m64"
591 TARGET_LDFLAGS="$TARGET_LDFLAGS -m64"
592 TARGET_MODULE_FORMAT="elf64"
593fi
594
595if test "x$grub_cv_cc_target_clang" = xno && test "x$target_cpu" = xi386 && test "x$platform" != xemu && test "x$platform" != xefi; then
596 TARGET_CFLAGS="$TARGET_CFLAGS -mrtd -mregparm=3"
597fi
598
f93ddcfd
VS
599# on mips redirect cache flushing function to non-existant one.
600if test "x$target_cpu" = xmips || test "x$target_cpu" = xmipsel ; then
601 AC_CACHE_CHECK([whether -mflush-func=grub_red_herring works], [grub_cv_cc_mflush_func], [
602 CFLAGS="$TARGET_CFLAGS -mflush-func=grub_red_herring -Werror"
603 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
604 [grub_cv_cc_mflush_func=yes],
605 [grub_cv_cc_mflush_func=no])
606 ])
607
608 if test "x$grub_cv_cc_mflush_func" = xyes; then
609 TARGET_CFLAGS="$TARGET_CFLAGS -mflush-func=grub_red_herring"
610 fi
611fi
612
613
90d1e879
RM
614# Force no alignment to save space on i386.
615if test "x$target_cpu" = xi386; then
616 AC_CACHE_CHECK([whether -falign-loops works], [grub_cv_cc_falign_loop], [
b35ec299 617 CFLAGS="$TARGET_CFLAGS -falign-loops=1 -Werror"
eb73121d 618 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
90d1e879
RM
619 [grub_cv_cc_falign_loop=yes],
620 [grub_cv_cc_falign_loop=no])
6a161fa9 621 ])
6a161fa9 622
c966a489 623 AC_CACHE_CHECK([whether -malign-loops works], [grub_cv_cc_malign_loop], [
b35ec299 624 CFLAGS="$TARGET_CFLAGS -malign-loops=1 -Werror"
c966a489
VS
625 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
626 [grub_cv_cc_malign_loop=yes],
627 [grub_cv_cc_malign_loop=no])
628 ])
629
90d1e879
RM
630 if test "x$grub_cv_cc_falign_loop" = xyes; then
631 TARGET_CFLAGS="$TARGET_CFLAGS -falign-jumps=1 -falign-loops=1 -falign-functions=1"
c966a489 632 elif test "x$grub_cv_cc_malign_loop" = xyes; then
90d1e879 633 TARGET_CFLAGS="$TARGET_CFLAGS -malign-jumps=1 -malign-loops=1 -malign-functions=1"
6a161fa9 634 fi
89e0240c 635fi
6a161fa9 636
cdc17f60
VS
637AC_CACHE_CHECK([whether -freg-struct-return works], [grub_cv_cc_freg_struct_return], [
638 CFLAGS="$TARGET_CFLAGS -freg-struct-return -Werror"
639 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
640 [grub_cv_cc_freg_struct_return=yes],
641 [grub_cv_cc_freg_struct_return=no])
642])
643
644if test "x$grub_cv_cc_freg_struct_return" = xyes; then
645 TARGET_CFLAGS="$TARGET_CFLAGS -freg-struct-return"
646fi
647
ee0220bc 648if ( test "x$target_cpu" = xi386 || test "x$target_cpu" = xx86_64 ) && test "x$platform" != xemu; then
90d1e879
RM
649 # Some toolchains enable these features by default, but they need
650 # registers that aren't set up properly in GRUB.
651 TARGET_CFLAGS="$TARGET_CFLAGS -mno-mmx -mno-sse -mno-sse2 -mno-3dnow"
652fi
77c55a87 653
90d1e879
RM
654# By default, GCC 4.4 generates .eh_frame sections containing unwind
655# information in some cases where it previously did not. GRUB doesn't need
656# these and they just use up vital space. Restore the old compiler
657# behaviour.
658AC_CACHE_CHECK([whether -fno-dwarf2-cfi-asm works], [grub_cv_cc_fno_dwarf2_cfi_asm], [
24f4e57c 659 CFLAGS="$TARGET_CFLAGS -fno-dwarf2-cfi-asm"
90d1e879
RM
660 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
661 [grub_cv_cc_fno_dwarf2_cfi_asm=yes],
662 [grub_cv_cc_fno_dwarf2_cfi_asm=no])
90d1e879 663])
77c55a87 664
90d1e879
RM
665if test "x$grub_cv_cc_fno_dwarf2_cfi_asm" = xyes; then
666 TARGET_CFLAGS="$TARGET_CFLAGS -fno-dwarf2-cfi-asm"
b977bf01 667fi
6a161fa9 668
1c1f31e5
VS
669if test x"$target_os" = xcygwin; then
670 AC_CACHE_CHECK([whether option -fno-reorder-functions works], grub_cv_cc_no_reorder_functions, [
24f4e57c 671 CFLAGS="$TARGET_CFLAGS -fno-reorder-functions"
1c1f31e5
VS
672 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
673 [grub_cv_cc_no_reorder_functions=yes],
674 [grub_cv_cc_no_reorder_functions=no])
675 ])
676fi
677
678if test x"$target_os" = xcygwin && test "x$grub_cv_cc_no_reorder_functions" = xyes; then
679 TARGET_CFLAGS="$TARGET_CFLAGS -fno-reorder-functions"
680fi
681
e9d3421c
VS
682# By default, GCC 4.6 generates .eh_frame sections containing unwind
683# information in some cases where it previously did not. GRUB doesn't need
684# these and they just use up vital space. Restore the old compiler
685# behaviour.
686AC_CACHE_CHECK([whether -fno-asynchronous-unwind-tables works], [grub_cv_cc_fno_asynchronous_unwind_tables], [
24f4e57c 687 CFLAGS="$TARGET_CFLAGS -fno-dwarf2-cfi-asm"
e9d3421c
VS
688 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
689 [grub_cv_cc_fno_asynchronous_unwind_tables=yes],
690 [grub_cv_cc_fno_asynchronous_unwind_tables=no])
e9d3421c
VS
691])
692
693if test "x$grub_cv_cc_fno_asynchronous_unwind_tables" = xyes; then
694 TARGET_CFLAGS="$TARGET_CFLAGS -fno-asynchronous-unwind-tables"
695fi
696
30c7d3ce
VS
697AC_ARG_ENABLE([efiemu],
698 [AS_HELP_STRING([--enable-efiemu],
699 [build and install the efiemu runtimes (default=guessed)])])
700if test x"$enable_efiemu" = xno ; then
701 efiemu_excuse="explicitly disabled"
702fi
6f1f6a0c 703if test x"$grub_cv_target_cc_link_format" = x-mi386pe || test x"$grub_cv_target_cc_link_format" = x-mi386pep ; then
1c1f31e5
VS
704 efiemu_excuse="not available on cygwin"
705fi
30c7d3ce
VS
706if test x"$target_cpu" != xi386 ; then
707 efiemu_excuse="only available on i386"
708fi
709if test x"$platform" = xefi ; then
710 efiemu_excuse="not available on efi"
711fi
712if test x"$efiemu_excuse" = x ; then
713 AC_CACHE_CHECK([whether options required for efiemu work], grub_cv_cc_efiemu, [
3c2304d5 714 CFLAGS="-m64 -nostdlib -O2 -mcmodel=large -mno-red-zone"
30c7d3ce
VS
715 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
716 [grub_cv_cc_efiemu=yes],
717 [grub_cv_cc_efiemu=no])
718 ])
719 if test x$grub_cv_cc_efiemu = xno; then
720 efiemu_excuse="cannot compile with -m64 -mcmodel=large -mno-red-zone -nostdlib"
721 fi
722fi
c2b70d09
AB
723if test x"$efiemu_excuse" = x ; then
724 AC_CACHE_CHECK([for efiemu64 linking format], [grub_cv_target_cc_efiemu64_link_format], [
725 grub_cv_target_cc_efiemu64_link_format=unknown
726 for format in -melf_x86_64 -melf_x86_64_fbsd -melf_x86_64_obsd -melf_x86_64_haiku -arch,x86_64; do
727 CFLAGS="-m64 -nostdlib -O2 -mcmodel=large -mno-red-zone"
728 LDFLAGS="-m64 -Wl,$format -nostdlib -static"
729 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
730 asm (".globl start; start:");
731 asm (".globl _start; _start:");
732 asm (".globl __start; __start:");
733 void __main (void);
734 void __main (void) {}
735 ]], [[]])], [flag=1], [flag=0])
736 if test x"$flag" = x1; then
737 grub_cv_target_cc_efiemu64_link_format="$format"
738 break;
739 fi
740 done])
741 if test x"$grub_cv_target_cc_efiemu64_link_format" = xunknown; then
742 efiemu_excuse="no suitable link format for efiemu64 found"
743 else
744 EFIEMU64_LINK_FORMAT="-Wl,$grub_cv_target_cc_efiemu64_link_format"
745 fi
746fi
30c7d3ce
VS
747if test x"$enable_efiemu" = xyes && test x"$efiemu_excuse" != x ; then
748 AC_MSG_ERROR([efiemu runtime was explicitly requested but can't be compiled])
749fi
750if test x"$efiemu_excuse" = x ; then
751enable_efiemu=yes
752else
753enable_efiemu=no
754fi
755AC_SUBST([enable_efiemu])
c2b70d09 756AC_SUBST([EFIEMU64_LINK_FORMAT])
30c7d3ce 757
a9f25a08
VS
758CFLAGS="$TARGET_CFLAGS"
759
760if test x"$target_cpu" = xi386 || test x"$target_cpu" = xx86_64; then
c2b70d09 761 AC_CACHE_CHECK([for target linking format], [grub_cv_target_cc_link_format], [
a9f25a08 762 grub_cv_target_cc_link_format=unknown
6f1f6a0c
VS
763 for format in -melf_${target_cpu} -melf_${target_cpu}_fbsd -melf_${target_cpu}_obsd -melf_${target_cpu}_haiku -mi386pe -mi386pep -arch,${target_cpu}; do
764 if test x${target_cpu} != xi386 && test x$format = xi386pe; then
765 continue
766 fi
767 if test x${target_cpu} != xx86_64 && test x$format = xi386pep; then
a9f25a08
VS
768 continue
769 fi
246a434f
VS
770 CFLAGS="$TARGET_CFLAGS"
771 LDFLAGS="$TARGET_LDFLAGS -Wl,$format -nostdlib -static"
a9f25a08
VS
772 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
773 asm (".globl start; start:");
774 asm (".globl _start; _start:");
775 asm (".globl __start; __start:");
776 void __main (void);
777 void __main (void) {}
c2b70d09 778 ]], [[]])], [flag=1], [flag=0])
a9f25a08
VS
779 if test x"$flag" = x1; then
780 grub_cv_target_cc_link_format="$format"
781 break;
782 fi
783 done])
784 if test x"$grub_cv_target_cc_link_format" = xunknown; then
785 AC_MSG_ERROR([no suitable link format found])
786 fi
787 TARGET_LDFLAGS="$TARGET_LDFLAGS -Wl,$grub_cv_target_cc_link_format"
6f1f6a0c 788 if test x"$grub_cv_target_cc_link_format" = x-mi386pe ; then
a9f25a08
VS
789 TARGET_OBJ2ELF='./build-grub-pe2elf';
790 fi
6f1f6a0c
VS
791 if test x"$grub_cv_target_cc_link_format" = x-mi386pep ; then
792 TARGET_OBJ2ELF='./build-grub-pep2elf';
793 fi
a9f25a08
VS
794fi
795
796if test x$grub_cv_target_cc_link_format = x-arch,i386 || test x$grub_cv_target_cc_link_format = x-arch,x86_64; then
797 TARGET_APPLE_LINKER=1
798 AC_CHECK_PROG([TARGET_OBJCONV], [objconv], [objconv], [])
799 if test "x$TARGET_OBJCONV" = x ; then
800 AC_CHECK_PROG([TARGET_OBJCONV], [objconv], [./objconv], [], [.])
801 fi
802 if test "x$TARGET_OBJCONV" = x ; then
803 AC_MSG_ERROR([objconv not found which is required when building with apple compiler])
804 fi
805 TARGET_IMG_LDSCRIPT=
806 TARGET_IMG_CFLAGS="-static"
807 TARGET_IMG_LDFLAGS='-nostdlib -static -Wl,-preload -Wl,-segalign,20'
808 TARGET_IMG_LDFLAGS_AC='-nostdlib -static -Wl,-preload -Wl,-segalign,20'
809 TARGET_IMG_BASE_LDOPT="-Wl,-image_base"
810 TARGET_LDFLAGS_OLDMAGIC=""
6f1f6a0c 811elif test x$grub_cv_target_cc_link_format = x-mi386pe || test x$grub_cv_target_cc_link_format = x-mi386pep ; then
a9f25a08
VS
812 TARGET_APPLE_LINKER=0
813 TARGET_LDFLAGS_OLDMAGIC="-Wl,-N"
60b967be 814 TARGET_IMG_LDSCRIPT='$(top_srcdir)'"/${grub_coredir}/conf/i386-cygwin-img-ld.sc"
a9f25a08 815 TARGET_IMG_LDFLAGS="-Wl,-T${TARGET_IMG_LDSCRIPT}"
60b967be 816 TARGET_IMG_LDFLAGS_AC="-Wl,-T${srcdir}/${grub_coredir}/conf/i386-cygwin-img-ld.sc"
a9f25a08
VS
817 TARGET_IMG_BASE_LDOPT="-Wl,-Ttext"
818 TARGET_IMG_CFLAGS=
819else
820 TARGET_APPLE_LINKER=0
821 TARGET_LDFLAGS_OLDMAGIC="-Wl,-N"
822 TARGET_IMG_LDSCRIPT=
823 TARGET_IMG_LDFLAGS='-Wl,-N'
824 TARGET_IMG_LDFLAGS_AC='-Wl,-N'
825 TARGET_IMG_BASE_LDOPT="-Wl,-Ttext"
826 TARGET_IMG_CFLAGS=
827fi
828
829AC_SUBST(TARGET_LDFLAGS_OLDMAGIC)
830
831
832LDFLAGS="$TARGET_LDFLAGS"
8f0baaac 833
eaf01c25 834if test "$target_cpu" = x86_64 || test "$target_cpu-$platform" = sparc64-emu ; then
7e9ca17a 835 # Use large model to support 4G memory
6e09b8b7 836 AC_CACHE_CHECK([whether option -mcmodel=large works], grub_cv_cc_mcmodel, [
24f4e57c 837 CFLAGS="$TARGET_CFLAGS -m64 -mcmodel=large"
6e09b8b7 838 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
839 [grub_cv_cc_mcmodel=yes],
840 [grub_cv_cc_mcmodel=no])
841 ])
a3ba7410 842 if test "x$grub_cv_cc_mcmodel" = xyes; then
c8600122 843 TARGET_CFLAGS="$TARGET_CFLAGS -mcmodel=large"
eaf01c25
VS
844 elif test "$target_cpu-$platform" = sparc64-emu; then
845 TARGET_CFLAGS="$TARGET_CFLAGS -mcmodel=medany"
6e09b8b7 846 fi
46546fc5 847fi
7e9ca17a 848
46546fc5 849if test "$target_cpu"-"$platform" = x86_64-efi; then
7e9ca17a 850 # EFI writes to stack below %rsp, we must not use the red zone
851 AC_CACHE_CHECK([whether option -mno-red-zone works], grub_cv_cc_no_red_zone, [
24f4e57c 852 CFLAGS="$TARGET_CFLAGS -m64 -mno-red-zone"
7e9ca17a 853 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
854 [grub_cv_cc_no_red_zone=yes],
855 [grub_cv_cc_no_red_zone=no])
856 ])
857 if test "x$grub_cv_cc_no_red_zone" = xno; then
858 AC_MSG_ERROR([-mno-red-zone not supported, upgrade your gcc])
859 fi
860
c8600122 861 TARGET_CFLAGS="$TARGET_CFLAGS -mno-red-zone"
20011694 862fi
863
41822625
VS
864if test "x$target_cpu" = xarm; then
865 AC_CACHE_CHECK([whether option -mlong-calls works], grub_cv_cc_mlong_calls, [
866 CFLAGS="$TARGET_CFLAGS -mlong-calls -Werror"
867 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
868 [grub_cv_cc_mlong_calls=yes],
869 [grub_cv_cc_mlong_calls=no])
870 ])
871 if test "x$grub_cv_cc_mlong_calls" = xyes; then
872 TARGET_CFLAGS="$TARGET_CFLAGS -mlong-calls"
873 fi
874fi
875
baa2a121 876#
877# Compiler features.
878#
879
28668d80
VS
880CFLAGS="$TARGET_CFLAGS"
881
93a81088 882# Position independent executable.
883grub_CHECK_PIE
884[# Need that, because some distributions ship compilers that include
885# `-fPIE' in the default specs.
886if [ x"$pie_possible" = xyes ]; then
887 TARGET_CFLAGS="$TARGET_CFLAGS -fno-PIE"
888fi]
889
28668d80
VS
890CFLAGS="$TARGET_CFLAGS"
891
7bd8b0c7
VS
892# Position independent executable.
893grub_CHECK_PIC
9cf12b20
VS
894[# On most platforms we don't want PIC as it only makes relocations harder
895# and code less efficient. On mips we want to have one got table per module
896# and reload $gp in every function.
897# GCC implements it using symbol __gnu_local_gp in non-PIC as well.
898# However with clang we need PIC for this reloading to happen.
899# Since default varies across dictributions use either -fPIC or -fno-PIC
900# explicitly.
901if ( test x$target_cpu = xmips || test x$target_cpu = xmipsel ) && test "x$grub_cv_cc_target_clang" = xyes ; then
902 TARGET_CFLAGS="$TARGET_CFLAGS -fPIC"
903elif [ x"$pic_possible" = xyes ]; then
904 TARGET_CFLAGS="$TARGET_CFLAGS -fno-PIC"
7bd8b0c7
VS
905fi]
906
28668d80
VS
907CFLAGS="$TARGET_CFLAGS"
908
baa2a121 909# Smashing stack protector.
910grub_CHECK_STACK_PROTECTOR
c3db8364 911# Need that, because some distributions ship compilers that include
baa2a121 912# `-fstack-protector' in the default specs.
c3db8364 913if test "x$ssp_possible" = xyes; then
914 TARGET_CFLAGS="$TARGET_CFLAGS -fno-stack-protector"
915fi
28668d80
VS
916
917CFLAGS="$TARGET_CFLAGS"
918
2a8a80e4 919grub_CHECK_STACK_ARG_PROBE
920# Cygwin's GCC uses alloca() to probe the stackframe on static
921# stack allocations above some threshold.
922if test x"$sap_possible" = xyes; then
923 TARGET_CFLAGS="$TARGET_CFLAGS -mno-stack-arg-probe"
924fi
baa2a121 925
28668d80
VS
926CFLAGS="$TARGET_CFLAGS"
927
d74b9a1d 928# -mno-unaligned-access -mstrict-align
bb9f92b9 929if test "$target_cpu" = arm; then
d74b9a1d 930 AC_CACHE_CHECK([for compile options to get strict alignment], [grub_cv_target_cc_strict_align], [
bdb6090d 931 grub_cv_target_cc_strict_align=
d74b9a1d
VS
932 for arg in -mno-unaligned-access "-Xclang -mstrict-align" -mstrict-align; do
933 CFLAGS="$TARGET_CFLAGS $arg -Werror"
934 LDFLAGS="$TARGET_LDFLAGS"
935 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])], [flag=1], [flag=0])
936 if test x"$flag" = x1; then
937 grub_cv_target_cc_strict_align="$arg"
938 break;
939 fi
940 done])
941
d74b9a1d
VS
942 TARGET_CFLAGS="$TARGET_CFLAGS $grub_cv_target_cc_strict_align"
943 if test x"$grub_cv_target_cc_strict_align" = x"-Xclang -mstrict-align"; then
944 TARGET_LDFLAGS="$TARGET_LDFLAGS -Qunused-arguments"
bb9f92b9 945 fi
bdb6090d
VS
946 AC_CACHE_CHECK([if compiler generates unaligned accesses], [grub_cv_cc_target_emits_unaligned],
947 [CFLAGS="$TARGET_CFLAGS"
948 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [[
949#ifdef __ARM_FEATURE_UNALIGNED
950#error "unaligned"
951#endif
952 ]])],
953 [grub_cv_cc_target_emits_unaligned=no], [grub_cv_cc_target_emits_unaligned=yes])])
954 if test x$grub_cv_cc_target_emits_unaligned = xyes; then
955 AC_MSG_ERROR([compiler generates unaligned accesses])
956 fi
bb9f92b9
LL
957fi
958
aa6d7826 959# Set them to their new values for the tests below.
960CC="$TARGET_CC"
a9f25a08 961if test "x$TARGET_APPLE_LINKER" = x1 ; then
246a434f 962CFLAGS="$TARGET_CFLAGS -nostdlib -static -Wno-error"
26de2bcd 963else
37378f74 964CFLAGS="$TARGET_CFLAGS -nostdlib -Wno-error"
26de2bcd 965fi
aa6d7826 966CPPFLAGS="$TARGET_CPPFLAGS"
d5524ca8
VS
967if test x$target_cpu = xi386 || test x$target_cpu = xx86_64 || test "x$grub_cv_cc_target_clang" = xyes ; then
968TARGET_LIBGCC=
03f80960 969else
d5524ca8 970TARGET_LIBGCC=-lgcc
03f80960 971fi
69be5b74 972
d5524ca8
VS
973LIBS="$TARGET_LIBGCC"
974
01fcf061 975grub_ASM_USCORE
a9f25a08 976if test "x$TARGET_APPLE_LINKER" = x0 ; then
01fcf061 977if test x$grub_cv_asm_uscore = xyes; then
37378f74 978DEFSYM="-Wl,--defsym,_abort=_main -Wl,--defsym,__main=_main"
01fcf061 979else
37378f74 980DEFSYM="-Wl,--defsym,abort=main -Wl,--defsym,_main=main -Wl,--defsym,__main=main"
01fcf061 981fi
37378f74 982CFLAGS="$TARGET_CFLAGS -nostdlib $DEFSYM"
a9f25a08 983fi
01fcf061 984
69be5b74 985# Check for libgcc symbols
6fcec439 986AC_CHECK_FUNCS(__bswapsi2 __bswapdi2 __ashldi3 __ashrdi3 __lshrdi3 __ucmpdi2 _restgpr_14_x)
69be5b74 987
a9f25a08 988if test "x$TARGET_APPLE_LINKER" = x1 ; then
246a434f 989CFLAGS="$TARGET_CFLAGS -nostdlib -static"
69be5b74 990else
37378f74 991CFLAGS="$TARGET_CFLAGS -nostdlib"
69be5b74 992fi
42e0cba3 993LIBS=""
aa6d7826 994
6a161fa9 995# Defined in aclocal.m4.
f6130a12 996grub_PROG_TARGET_CC
a9f25a08 997if test "x$TARGET_APPLE_LINKER" != x1 ; then
b977bf01 998grub_PROG_OBJCOPY_ABSOLUTE
2b167a72 999fi
cb71ba20 1000grub_PROG_LD_BUILD_ID_NONE
b977bf01 1001if test "x$target_cpu" = xi386; then
a9f25a08 1002 if test "$platform" != emu && test "x$TARGET_APPLE_LINKER" != x1 ; then
2aec1692
CF
1003 if test ! -z "$TARGET_IMG_LDSCRIPT"; then
1004 # Check symbols provided by linker script.
37378f74 1005 CFLAGS="$TARGET_CFLAGS -nostdlib ${TARGET_IMG_LDFLAGS_AC} ${TARGET_IMG_BASE_LDOPT},0x8000"
2aec1692 1006 fi
2a8a80e4 1007 grub_CHECK_BSS_START_SYMBOL
1008 grub_CHECK_END_SYMBOL
1009 fi
1010 CFLAGS="$TARGET_CFLAGS"
4b13b216 1011 grub_I386_ASM_PREFIX_REQUIREMENT
1012 grub_I386_ASM_ADDR32
6a161fa9 1013fi
1014
20aea949
VS
1015grub_PROG_NM_WORKS
1016grub_PROG_NM_MINUS_P
1017grub_PROG_NM_DEFINED_ONLY
1018AC_SUBST(TARGET_NMFLAGS_MINUS_P)
1019AC_SUBST(TARGET_NMFLAGS_DEFINED_ONLY)
1020
016a671b 1021if test "$platform" != emu; then
8f9a632b
VS
1022AC_CACHE_CHECK([whether -nostdinc -isystem works], [grub_cv_cc_isystem], [
1023 SAVED_CPPFLAGS="$CPPFLAGS"
1024 CPPFLAGS="$TARGET_CPPFLAGS -nostdinc -isystem `$TARGET_CC -print-file-name=include`"
1025 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdarg.h>
ce938140 1026#include <stddef.h>
8f9a632b
VS
1027int va_arg_func (int fixed, va_list args);]], [[]])],
1028 [grub_cv_cc_isystem=yes],
1029 [grub_cv_cc_isystem=no])
1030 CPPFLAGS="$SAVED_CPPFLAGS"
1031])
1032
1033if test x"$grub_cv_cc_isystem" = xyes ; then
1034 TARGET_CPPFLAGS="$TARGET_CPPFLAGS -nostdinc -isystem `$TARGET_CC -print-file-name=include`"
1035fi
dae79b6b 1036fi
5ce5507f 1037
19ce697d 1038AC_CACHE_CHECK([whether -Wtrampolines work], [grub_cv_cc_wtrampolines], [
24f4e57c 1039 CFLAGS="$TARGET_CFLAGS -Wtrampolines -Werror"
779dc15b
VS
1040 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdarg.h>
1041int va_arg_func (int fixed, va_list args);]], [[]])],
19ce697d
VS
1042 [grub_cv_cc_wtrampolines=yes],
1043 [grub_cv_cc_wtrampolines=no])
779dc15b
VS
1044])
1045
19ce697d
VS
1046if test x"$grub_cv_cc_wtrampolines" = xyes ; then
1047 TARGET_CFLAGS="$TARGET_CFLAGS -Wtrampolines"
779dc15b
VS
1048fi
1049
c9a86192 1050# Restore the flags.
9962ed99 1051CC="$tmp_CC"
1052CFLAGS="$tmp_CFLAGS"
1053CPPFLAGS="$tmp_CPPFLAGS"
c9a86192 1054LDFLAGS="$tmp_LDFLAGS"
aa6d7826 1055LIBS="$tmp_LIBS"
6a161fa9 1056
4fe9862e 1057#
2965c7cc 1058# Check for options.
4fe9862e 1059#
1060
1061# Memory manager debugging.
b39f9d20 1062AC_ARG_ENABLE([mm-debug],
2965c7cc 1063 AS_HELP_STRING([--enable-mm-debug],
90ce5d56 1064 [include memory manager debugging]),
2965c7cc 1065 [AC_DEFINE([MM_DEBUG], [1],
1066 [Define to 1 if you enable memory manager debugging.])])
1067
c5dc1690
SJ
1068AC_ARG_ENABLE([cache-stats],
1069 AS_HELP_STRING([--enable-cache-stats],
055e2b8b 1070 [enable disk cache statistics collection]))
c5dc1690
SJ
1071
1072if test x$enable_cache_stats = xyes; then
1073 DISK_CACHE_STATS=1
1074else
1075 DISK_CACHE_STATS=0
1076fi
1077AC_SUBST([DISK_CACHE_STATS])
1078
e744219b
VS
1079AC_ARG_ENABLE([boot-time],
1080 AS_HELP_STRING([--enable-boot-time],
1081 [enable boot time statistics collection]))
1082
1083if test x$enable_boot_time = xyes; then
1084 BOOT_TIME_STATS=1
1085else
1086 BOOT_TIME_STATS=0
1087fi
1088AC_SUBST([BOOT_TIME_STATS])
1089
d64399b5 1090AC_ARG_ENABLE([grub-emu-usb],
1091 [AS_HELP_STRING([--enable-grub-emu-usb],
5ce5507f 1092 [build and install the `grub-emu' debugging utility with USB support (default=guessed)])])
5ce5507f 1093
927d0134
VS
1094AC_ARG_ENABLE([grub-emu-sdl],
1095 [AS_HELP_STRING([--enable-grub-emu-sdl],
1096 [build and install the `grub-emu' debugging utility with SDL support (default=guessed)])])
1097
3affd0ec 1098AC_ARG_ENABLE([grub-emu-pci],
1099 [AS_HELP_STRING([--enable-grub-emu-pci],
1100 [build and install the `grub-emu' debugging utility with PCI support (potentially dangerous) (default=no)])])
1101
f84b481b 1102if test "$platform" = emu; then
f84b481b 1103
62a747cb
VS
1104if test x"$enable_grub_emu_usb" != xyes ; then
1105 grub_emu_usb_excuse="not enabled"
5ce5507f 1106fi
325c8258 1107
0e848909
VS
1108if test x"$enable_grub_emu_pci" = xyes ; then
1109 grub_emu_usb_excuse="conflicts with PCI support"
1110fi
1111
5ce5507f 1112[if [ x"$grub_emu_usb_excuse" = x ]; then
d64399b5 1113 # Check for libusb libraries.]
5ce5507f 1114AC_CHECK_LIB([usb], [usb_claim_interface], [LIBUSB="-lusb"],
e98cd0c2 1115 [grub_emu_usb_excuse=["need libusb library"]])
d64399b5 1116 AC_SUBST([LIBUSB])
5ce5507f 1117[fi]
1118[if [ x"$grub_emu_usb_excuse" = x ]; then
1119 # Check for headers.]
d64399b5 1120 AC_CHECK_HEADERS([usb.h], [],
e98cd0c2 1121 [grub_emu_usb_excuse=["need libusb headers"]])
4fe9862e 1122[fi]
c6f3b249 1123if test x"$enable_grub_emu_usb" = xyes && test x"$grub_emu_usb_excuse" != x ; then
ce7a733d 1124 AC_MSG_ERROR([USB support for grub-emu was explicitly requested but can't be compiled])
5ce5507f 1125fi
1126if test x"$grub_emu_usb_excuse" = x ; then
1127enable_grub_emu_usb=yes
1128else
1129enable_grub_emu_usb=no
1130fi
1131
927d0134
VS
1132if test x"$enable_grub_emu_sdl" = xno ; then
1133 grub_emu_sdl_excuse="explicitely disabled"
1134fi
1135[if [ x"$grub_emu_sdl_excuse" = x ]; then
1136 # Check for libSDL libraries.]
1137AC_CHECK_LIB([SDL], [SDL_Init], [LIBSDL="-lSDL"],
1138 [grub_emu_sdl_excuse=["libSDL libraries are required to build \`grub-emu' with SDL support"]])
1139 AC_SUBST([LIBSDL])
1140[fi]
9f293ab0 1141
927d0134
VS
1142[if [ x"$grub_emu_sdl_excuse" = x ]; then
1143 # Check for headers.]
1144 AC_CHECK_HEADERS([SDL/SDL.h], [],
1145 [grub_emu_sdl_excuse=["libSDL header file is required to build \`grub-emu' with SDL support"]])
1146[fi]
9f293ab0 1147
927d0134
VS
1148if test x"enable_grub_emu_sdl" = xyes && test x"$grub_emu_sdl_excuse" != x ; then
1149 AC_MSG_ERROR([SDL support for grub-emu was explicitely requested but can't be compiled])
1150fi
1151if test x"$grub_emu_sdl_excuse" = x ; then
1152enable_grub_emu_sdl=yes
1153else
1154enable_grub_emu_sdl=no
1155fi
1156
3affd0ec 1157if test x"$enable_grub_emu_pci" != xyes ; then
325c8258 1158 grub_emu_pci_excuse="not enabled"
1159fi
1160
1161if test x"$enable_grub_emu_usb" = xyes ; then
1162 grub_emu_pci_excuse="conflicts with USB support"
1163fi
1164
1165[if [ x"$grub_emu_pci_excuse" = x ]; then
1166 # Check for libpci libraries.]
459fed4b 1167 AC_CHECK_LIB([pciaccess], [pci_system_init], [LIBPCIACCESS="-lpciaccess"],
1168 [grub_emu_pci_excuse=["need libpciaccess library"]])
1169 AC_SUBST([LIBPCIACCESS])
325c8258 1170[fi]
1171[if [ x"$grub_emu_pci_excuse" = x ]; then
1172 # Check for headers.]
1173 AC_CHECK_HEADERS([pci/pci.h], [],
459fed4b 1174 [grub_emu_pci_excuse=["need libpciaccess headers"]])
325c8258 1175[fi]
1176
1177if test x"$grub_emu_pci_excuse" = x ; then
1178enable_grub_emu_pci=yes
1179else
9f293ab0 1180
325c8258 1181enable_grub_emu_pci=no
3affd0ec 1182fi
1183
927d0134 1184AC_SUBST([enable_grub_emu_sdl])
d64399b5 1185AC_SUBST([enable_grub_emu_usb])
3affd0ec 1186AC_SUBST([enable_grub_emu_pci])
e7d09ac4
AB
1187
1188else
1189
1190# Ignore --enable-emu-* if platform is not emu
1191enable_grub_emu_sdl=no
1192enable_grub_emu_usb=no
1193enable_grub_emu_pci=no
f84b481b 1194fi
4fe9862e 1195
e52db1f7 1196AC_ARG_ENABLE([grub-mkfont],
1197 [AS_HELP_STRING([--enable-grub-mkfont],
5ce5507f 1198 [build and install the `grub-mkfont' utility (default=guessed)])])
1199if test x"$enable_grub_mkfont" = xno ; then
ce7a733d 1200 grub_mkfont_excuse="explicitly disabled"
5ce5507f 1201fi
1202
1203if test x"$grub_mkfont_excuse" = x ; then
e52db1f7 1204 # Check for freetype libraries.
a5b55c4b 1205 AC_CHECK_TOOLS([FREETYPE], [freetype-config])
e52db1f7 1206 if test "x$FREETYPE" = x ; then
e98cd0c2 1207 grub_mkfont_excuse=["need freetype2 library"]
e52db1f7 1208 fi
e52db1f7 1209fi
660960d6 1210
7b780018
VS
1211unset ac_cv_header_ft2build_h
1212
660960d6
VS
1213if test x"$grub_mkfont_excuse" = x ; then
1214 # Check for freetype libraries.
a5b55c4b
DM
1215 freetype_cflags=`$FREETYPE --cflags`
1216 freetype_libs=`$FREETYPE --libs`
d1e8a02f 1217 SAVED_CPPFLAGS="$CPPFLAGS"
b75db69a 1218 SAVED_LIBS="$LIBS"
d1e8a02f 1219 CPPFLAGS="$CPPFLAGS $freetype_cflags"
b75db69a 1220 LIBS="$LIBS $freetype_libs"
660960d6
VS
1221 AC_CHECK_HEADERS([ft2build.h], [],
1222 [grub_mkfont_excuse=["need freetype2 headers"]])
b75db69a 1223 AC_LINK_IFELSE([AC_LANG_CALL([], [FT_Load_Glyph])], [], [grub_mkfont_excuse=["freetype2 library unusable"]])
d1e8a02f 1224 CPPFLAGS="$SAVED_CPPFLAGS"
b75db69a 1225 LIBS="$SAVED_LIBS"
660960d6
VS
1226fi
1227
5ce5507f 1228if test x"$enable_grub_mkfont" = xyes && test x"$grub_mkfont_excuse" != x ; then
ce7a733d 1229 AC_MSG_ERROR([grub-mkfont was explicitly requested but can't be compiled])
5ce5507f 1230fi
1231if test x"$grub_mkfont_excuse" = x ; then
1232enable_grub_mkfont=yes
1233else
1234enable_grub_mkfont=no
1235fi
e52db1f7 1236AC_SUBST([enable_grub_mkfont])
1237AC_SUBST([freetype_cflags])
1238AC_SUBST([freetype_libs])
1239
7c9d0c39 1240SAVED_CC="$CC"
b224c266 1241SAVED_CPP="$CPP"
7c9d0c39
VS
1242SAVED_CFLAGS="$CFLAGS"
1243SAVED_CPPFLAGS="$CPPFLAGS"
1244CC="$BUILD_CC"
b224c266 1245CPP="$BUILD_CPP"
7c9d0c39 1246CFLAGS="$BUILD_CFLAGS"
7b780018
VS
1247CPPFLAGS="$BUILD_CPPFLAGS"
1248
1249unset ac_cv_c_bigendian
1250unset ac_cv_header_ft2build_h
1251
1252AC_COMPUTE_INT([BUILD_SIZEOF_VOID_P], [sizeof (void *)])
1253AC_COMPUTE_INT([BUILD_SIZEOF_LONG], [sizeof (long)])
1254AC_C_BIGENDIAN([BUILD_WORDS_BIGENDIAN=1], [BUILD_WORDS_BIGENDIAN=0], [BUILD_WORDS_BIGENDIAN=err], [BUILD_WORDS_BIGENDIAN=err])
1255
1256if test x$BUILD_WORDS_BIGENDIAN = xerr ; then
1257 AC_MSG_ERROR([couldnt determine build endianness])
1258fi
1259
1260AC_SUBST([BUILD_SIZEOF_LONG])
1261AC_SUBST([BUILD_SIZEOF_VOID_P])
1262AC_SUBST([BUILD_WORDS_BIGENDIAN])
c5884973 1263
7c9d0c39
VS
1264if test x"$grub_build_mkfont_excuse" = x ; then
1265 # Check for freetype libraries.
7b780018 1266 AC_CHECK_PROGS([BUILD_FREETYPE], [freetype-config])
7c9d0c39
VS
1267 if test "x$BUILD_FREETYPE" = x ; then
1268 grub_build_mkfont_excuse=["need freetype2 library"]
1269 fi
1270fi
c5884973 1271
7c9d0c39
VS
1272if test x"$grub_build_mkfont_excuse" = x ; then
1273 # Check for freetype libraries.
1274 build_freetype_cflags=`$BUILD_FREETYPE --cflags`
1275 build_freetype_libs=`$BUILD_FREETYPE --libs`
1276 SAVED_CPPFLAGS_2="$CPPFLAGS"
b75db69a 1277 SAVED_LIBS="$LIBS"
7c9d0c39 1278 CPPFLAGS="$CPPFLAGS $build_freetype_cflags"
b75db69a 1279 LIBS="$LIBS $build_freetype_libs"
7c9d0c39
VS
1280 AC_CHECK_HEADERS([ft2build.h], [],
1281 [grub_build_mkfont_excuse=["need freetype2 headers"]])
b75db69a
VS
1282 AC_LINK_IFELSE([AC_LANG_CALL([], [FT_Load_Glyph])], [], [grub_build_mkfont_excuse=["freetype2 library unusable"]])
1283 LIBS="$SAVED_LIBS"
7c9d0c39
VS
1284 CPPFLAGS="$SAVED_CPPFLAGS_2"
1285fi
1286
1287if test x"$enable_build_grub_mkfont" = xyes && test x"$grub_build_mkfont_excuse" != x ; then
1288 AC_MSG_ERROR([build-grub-mkfont was explicitly requested but can't be compiled])
1289fi
1290if test x"$grub_build_mkfont_excuse" = x ; then
1291 enable_build_grub_mkfont=yes
1292else
1293 enable_build_grub_mkfont=no
c5884973 1294fi
71669c3b
VS
1295if test x"$enable_build_grub_mkfont" = xno && ( test "x$platform" = xqemu || test "x$platform" = xloongson || test "x$platform" = xqemu_mips || test "x$target_cpu"-"$platform" = xpowerpc-ieee1275 || test "x$platform" = xxen || test "x$platform" = xcoreboot ); then
1296 AC_MSG_ERROR([qemu, powerpc-ieee1275, coreboot, xen and loongson ports needs build-time grub-mkfont])
7c9d0c39
VS
1297fi
1298
1299AC_SUBST([build_freetype_cflags])
1300AC_SUBST([build_freetype_libs])
1301
1302CC="$SAVED_CC"
b224c266 1303CPP="$SAVED_CPP"
7c9d0c39
VS
1304CFLAGS="$SAVED_CFLAGS"
1305CPPFLAGS="$SAVED_CPPFLAGS"
1306
1307
1308DJVU_FONT_SOURCE=
1309
1310starfield_excuse=
c5884973 1311
300f48c5
VS
1312AC_ARG_ENABLE([grub-themes],
1313 [AS_HELP_STRING([--enable-grub-themes],
1314 [build and install GRUB themes (default=guessed)])])
1315if test x"$enable_grub_themes" = xno ; then
1316 starfield_excuse="explicitly disabled"
1317fi
1318
1319if test x"$starfield_excuse" = x && test x"$enable_build_grub_mkfont" = xno ; then
7b966834
VS
1320 starfield_excuse="No build-time grub-mkfont"
1321fi
1322
501b9e4b 1323if test x"$starfield_excuse" = x; then
c5884973 1324 for ext in pcf pcf.gz bdf bdf.gz ttf ttf.gz; do
32745f51 1325 for dir in . /usr/src /usr/share/fonts/X11/misc /usr/share/fonts/truetype/ttf-dejavu /usr/share/fonts/dejavu; do
c5884973
DO
1326 if test -f "$dir/DejaVuSans.$ext"; then
1327 DJVU_FONT_SOURCE="$dir/DejaVuSans.$ext"
1328 break 2
1329 fi
1330 done
1331 done
1332
1333 if test "x$DJVU_FONT_SOURCE" = x; then
1334 starfield_excuse="No DejaVu found"
1335 fi
1336fi
1337
300f48c5
VS
1338if test x"$enable_grub_themes" = xyes && test x"$starfield_excuse" != x; then
1339 AC_MSG_ERROR([themes were explicitly requested but requirements are not satisfied])
1340fi
1341
c5884973
DO
1342AC_SUBST([DJVU_FONT_SOURCE])
1343
7c9d0c39
VS
1344FONT_SOURCE=
1345
1346for ext in pcf pcf.gz bdf bdf.gz ttf ttf.gz; do
1347 for dir in . /usr/src /usr/share/fonts/X11/misc /usr/share/fonts/unifont /usr/share/fonts/uni /usr/share/fonts/truetype/unifont /usr/share/fonts/misc; do
1348 if test -f "$dir/unifont.$ext"; then
0277eab7
VS
1349 md5="$(md5sum "$dir/unifont.$ext"|awk '{ print $1; }')"
1350 # PCF and BDF from version 6.3 isn't hanled properly by libfreetype.
1351 if test "$md5" = 0a54834d2788c83886a3e1785a6a1e61 || test "$md5" = 28f2565c7a41d8d407e2551159385edb || test "$md5" = dae5e588461b3b92b87b6ffee734f936 || test "$md5" = 4a3d687aa5bb329ed05f4263a1016791 ; then
1352 continue;
1353 fi
7c9d0c39
VS
1354 FONT_SOURCE="$dir/unifont.$ext"
1355 break 2
1356 fi
1357 done
1358done
1359
7b966834
VS
1360if test x"$enable_build_grub_mkfont" = xno ; then
1361 FONT_SOURCE=
1362fi
1363
71669c3b
VS
1364if test "x$FONT_SOURCE" = x && ( test "x$platform" = xqemu || test "x$platform" = xloongson || test "x$platform" = xqemu_mips || test "x$target_cpu"-"$platform" = xpowerpc-ieee1275 || test "x$platform" = xxen || test "x$platform" = xcoreboot ); then
1365 AC_MSG_ERROR([qemu, powerpc-ieee1275, xen, coreboot and loongson ports need unifont])
7c9d0c39
VS
1366fi
1367
1368AC_SUBST([FONT_SOURCE])
1369
7b780018 1370if test x"$FONT_SOURCE" = x && test x"$DJVU_FONT_SOURCE" = x && test x"$grub_build_mkfont_excuse" = x; then
7c9d0c39
VS
1371 grub_build_mkfont_excuse="no fonts"
1372fi
1373
1374
897e6207
CW
1375AC_ARG_ENABLE([grub-mount],
1376 [AS_HELP_STRING([--enable-grub-mount],
1377 [build and install the `grub-mount' utility (default=guessed)])])
1378if test x"$enable_grub_mount" = xno ; then
1379 grub_mount_excuse="explicitly disabled"
92bb0786
VS
1380fi
1381
897e6207 1382if test x"$grub_mount_excuse" = x ; then
92bb0786 1383 AC_CHECK_LIB([fuse], [fuse_main_real], [],
897e6207 1384 [grub_mount_excuse="need FUSE library"])
92bb0786
VS
1385fi
1386
897e6207 1387if test x"$grub_mount_excuse" = x ; then
92bb0786
VS
1388 # Check for fuse headers.
1389 SAVED_CPPFLAGS="$CPPFLAGS"
338c7fab 1390 CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26"
92bb0786 1391 AC_CHECK_HEADERS([fuse/fuse.h], [],
897e6207 1392 [grub_mount_excuse=["need FUSE headers"]])
92bb0786
VS
1393 CPPFLAGS="$SAVED_CPPFLAGS"
1394fi
1395
897e6207 1396if test x"$enable_grub_mount" = xyes && test x"$grub_mount_excuse" != x ; then
89644ef1 1397 AC_MSG_ERROR([grub-mount was explicitly requested but can't be compiled])
92bb0786 1398fi
897e6207
CW
1399if test x"$grub_mount_excuse" = x ; then
1400enable_grub_mount=yes
92bb0786 1401else
897e6207 1402enable_grub_mount=no
92bb0786 1403fi
897e6207 1404AC_SUBST([enable_grub_mount])
92bb0786 1405
7181e228
CW
1406AC_ARG_ENABLE([device-mapper],
1407 [AS_HELP_STRING([--enable-device-mapper],
1408 [enable Linux device-mapper support (default=guessed)])])
1409if test x"$enable_device_mapper" = xno ; then
1410 device_mapper_excuse="explicitly disabled"
1411fi
1412
53798c4b
GS
1413if test x"$device_mapper_excuse" = x ; then
1414 # Check for device-mapper header.
1415 AC_CHECK_HEADER([libdevmapper.h], [],
1416 [device_mapper_excuse="need libdevmapper header"])
1417fi
1418
7181e228
CW
1419if test x"$device_mapper_excuse" = x ; then
1420 # Check for device-mapper library.
61d720e5 1421 AC_CHECK_LIB([devmapper], [dm_task_create], [],
7181e228 1422 [device_mapper_excuse="need devmapper library"])
7181e228 1423fi
61d720e5
VS
1424
1425if test x"$device_mapper_excuse" = x ; then
1426 # Check for device-mapper library.
1427 AC_CHECK_LIB([devmapper], [dm_log_with_errno_init],
1428 [],
1429 [device_mapper_excuse="need devmapper library"])
1430fi
1431
1432if test x"$device_mapper_excuse" = x ; then
1433 LIBDEVMAPPER="-ldevmapper";
1434 AC_DEFINE([HAVE_DEVICE_MAPPER], [1],
1435 [Define to 1 if you have the devmapper library.])
1436fi
1437
62f7d208 1438AC_SUBST([LIBDEVMAPPER])
76ed06b9 1439
f4727da9
VS
1440LIBGEOM=
1441if test x$host_kernel = xkfreebsd; then
1442 AC_CHECK_LIB([geom], [geom_gettree], [],
1443 [AC_MSG_ERROR([Your platform requires libgeom])])
1444 LIBGEOM="-lgeom"
1445fi
1446
1447AC_SUBST([LIBGEOM])
1448
0d2d30bb
VS
1449AC_ARG_ENABLE([liblzma],
1450 [AS_HELP_STRING([--enable-liblzma],
1451 [enable liblzma integration (default=guessed)])])
1452if test x"$enable_liblzma" = xno ; then
1453 liblzma_excuse="explicitly disabled"
1454fi
1455
1456if test x"$liblzma_excuse" = x ; then
2c44e493 1457AC_CHECK_LIB([lzma], [lzma_code],
0d2d30bb
VS
1458 [],[liblzma_excuse="need lzma library"])
1459fi
1460if test x"$liblzma_excuse" = x ; then
1461AC_CHECK_HEADER([lzma.h], [], [liblzma_excuse="need lzma header"])
1462fi
1463
1464if test x"$enable_liblzma" = xyes && test x"$liblzma_excuse" != x ; then
1465 AC_MSG_ERROR([liblzma support was explicitly requested but requirements are not satisfied])
1466fi
1467
1468
1469if test x"$liblzma_excuse" = x ; then
1470 LIBLZMA="-llzma"
1471 AC_DEFINE([USE_LIBLZMA], [1],
1472 [Define to 1 if you have the LZMA library.])
1473fi
1474
2c44e493
VS
1475AC_SUBST([LIBLZMA])
1476
e4c498a1
MG
1477AC_ARG_ENABLE([libzfs],
1478 [AS_HELP_STRING([--enable-libzfs],
1479 [enable libzfs integration (default=guessed)])])
1480if test x"$enable_libzfs" = xno ; then
1481 libzfs_excuse="explicitly disabled"
1482fi
16c7cb32 1483
e4c498a1
MG
1484if test x"$libzfs_excuse" = x ; then
1485 # Only check for system headers if libzfs support has not been disabled.
1486 AC_CHECK_HEADERS(libzfs.h libnvpair.h)
1487fi
1488
1489if test x"$libzfs_excuse" = x ; then
1490 AC_CHECK_LIB([zfs], [libzfs_init],
1491 [],
1492 [libzfs_excuse="need zfs library"])
1493fi
1494
1495if test x"$libzfs_excuse" = x ; then
27f9d02e 1496 AC_CHECK_LIB([nvpair], [nvlist_lookup_string],
e4c498a1
MG
1497 [],
1498 [libzfs_excuse="need nvpair library"])
1499fi
1500
1501if test x"$enable_libzfs" = xyes && test x"$libzfs_excuse" != x ; then
1502 AC_MSG_ERROR([libzfs support was explicitly requested but requirements are not satisfied])
1503fi
1504
1505if test x"$libzfs_excuse" = x ; then
1506 # We need both libzfs and libnvpair for a successful build.
1507 LIBZFS="-lzfs"
1508 AC_DEFINE([HAVE_LIBZFS], [1],
1509 [Define to 1 if you have the ZFS library.])
1510 LIBNVPAIR="-lnvpair"
1511 AC_DEFINE([HAVE_LIBNVPAIR], [1],
1512 [Define to 1 if you have the NVPAIR library.])
1513fi
1514
1515AC_SUBST([LIBZFS])
16c7cb32
BC
1516AC_SUBST([LIBNVPAIR])
1517
9f915872
VS
1518LIBS=""
1519
76ed06b9 1520AC_SUBST([FONT_SOURCE])
76ed06b9
BC
1521AS_IF([test x$target_cpu = xi386 -a x$platform = xqemu],
1522 [AC_SUBST([GRUB_BOOT_MACHINE_LINK_ADDR], 0xffe00)])
7181e228 1523
742f9232
VS
1524AC_SUBST(HAVE_ASM_USCORE)
1525AC_SUBST(ADDR32)
1526AC_SUBST(DATA32)
1527AC_SUBST(BSS_START_SYMBOL)
1528AC_SUBST(END_SYMBOL)
1529AC_SUBST(PACKAGE)
1530AC_SUBST(VERSION)
742f9232
VS
1531AC_SUBST(NEED_REGISTER_FRAME_INFO)
1532
d5524ca8
VS
1533AC_ARG_ENABLE([werror],
1534 [AS_HELP_STRING([--disable-werror],
1535 [do not use -Werror when building GRUB])])
1536if test x"$enable_werror" != xno ; then
1537 TARGET_CFLAGS="$TARGET_CFLAGS -Werror"
1538 HOST_CFLAGS="$HOST_CFLAGS -Werror"
1539fi
1540
1541if test "x$grub_cv_cc_target_clang" = xno; then
1542 TARGET_LDFLAGS_STATIC_LIBGCC="-static-libgcc"
1543else
1544 TARGET_LDFLAGS_STATIC_LIBGCC=
1545fi
1546
1547TARGET_CPP="$TARGET_CC -E"
1548TARGET_CCAS=$TARGET_CC
1549
1550GRUB_TARGET_CPU="${target_cpu}"
1551GRUB_PLATFORM="${platform}"
1552
1553AC_SUBST(GRUB_TARGET_CPU)
1554AC_SUBST(GRUB_PLATFORM)
1555
1556AC_SUBST(TARGET_OBJCONV)
1557AC_SUBST(TARGET_LIBGCC)
1558AC_SUBST(TARGET_LDFLAGS_STATIC_LIBGCC)
1559AC_SUBST(TARGET_CPP)
1560AC_SUBST(TARGET_CCAS)
1561AC_SUBST(TARGET_OBJ2ELF)
d5524ca8
VS
1562AC_SUBST(TARGET_MODULE_FORMAT)
1563
1564AC_SUBST(TARGET_CFLAGS)
1565AC_SUBST(TARGET_LDFLAGS)
1566AC_SUBST(TARGET_CPPFLAGS)
1567AC_SUBST(TARGET_CCASFLAGS)
1568
d5524ca8
VS
1569AC_SUBST(TARGET_IMG_LDFLAGS)
1570AC_SUBST(TARGET_IMG_CFLAGS)
1571AC_SUBST(TARGET_IMG_BASE_LDOPT)
a9f25a08 1572AC_SUBST(TARGET_APPLE_LINKER)
d5524ca8
VS
1573
1574AC_SUBST(HOST_CFLAGS)
1575AC_SUBST(HOST_LDFLAGS)
1576AC_SUBST(HOST_CPPFLAGS)
1577AC_SUBST(HOST_CCASFLAGS)
1578
1579AC_SUBST(BUILD_LIBM)
1580
76ed06b9
BC
1581#
1582# Automake conditionals
1583#
8c411768 1584
76ed06b9 1585AM_CONDITIONAL([COND_emu], [test x$platform = xemu])
d59849b2 1586AM_CONDITIONAL([COND_clang], [test x$grub_cv_cc_target_clang = xyes])
76ed06b9
BC
1587AM_CONDITIONAL([COND_i386_pc], [test x$target_cpu = xi386 -a x$platform = xpc])
1588AM_CONDITIONAL([COND_i386_efi], [test x$target_cpu = xi386 -a x$platform = xefi])
6585de4c 1589AM_CONDITIONAL([COND_ia64_efi], [test x$target_cpu = xia64 -a x$platform = xefi])
76ed06b9
BC
1590AM_CONDITIONAL([COND_i386_qemu], [test x$target_cpu = xi386 -a x$platform = xqemu])
1591AM_CONDITIONAL([COND_i386_ieee1275], [test x$target_cpu = xi386 -a x$platform = xieee1275])
1592AM_CONDITIONAL([COND_i386_coreboot], [test x$target_cpu = xi386 -a x$platform = xcoreboot])
1593AM_CONDITIONAL([COND_i386_multiboot], [test x$target_cpu = xi386 -a x$platform = xmultiboot])
1594AM_CONDITIONAL([COND_x86_64_efi], [test x$target_cpu = xx86_64 -a x$platform = xefi])
9612ebc0
VS
1595AM_CONDITIONAL([COND_i386_xen], [test x$target_cpu = xi386 -a x$platform = xxen])
1596AM_CONDITIONAL([COND_x86_64_xen], [test x$target_cpu = xx86_64 -a x$platform = xxen])
4959e111
VS
1597AM_CONDITIONAL([COND_mips_loongson], [test x$target_cpu = xmipsel -a x$platform = xloongson])
1598AM_CONDITIONAL([COND_mips_qemu_mips], [test "(" x$target_cpu = xmips -o x$target_cpu = xmipsel ")" -a x$platform = xqemu_mips])
7f63a64f 1599AM_CONDITIONAL([COND_mips_arc], [test "(" x$target_cpu = xmips -o x$target_cpu = xmipsel ")" -a x$platform = xarc])
76ed06b9 1600AM_CONDITIONAL([COND_sparc64_ieee1275], [test x$target_cpu = xsparc64 -a x$platform = xieee1275])
eaf01c25 1601AM_CONDITIONAL([COND_sparc64_emu], [test x$target_cpu = xsparc64 -a x$platform = xemu])
76ed06b9 1602AM_CONDITIONAL([COND_powerpc_ieee1275], [test x$target_cpu = xpowerpc -a x$platform = xieee1275])
4959e111 1603AM_CONDITIONAL([COND_mips], [test x$target_cpu = xmips -o x$target_cpu = xmipsel])
37ba07eb
VS
1604AM_CONDITIONAL([COND_mipsel], [test x$target_cpu = xmipsel])
1605AM_CONDITIONAL([COND_mipseb], [test x$target_cpu = xmips])
389b31cd
LL
1606AM_CONDITIONAL([COND_arm], [test x$target_cpu = xarm ])
1607AM_CONDITIONAL([COND_arm_uboot], [test x$target_cpu = xarm -a x$platform = xuboot])
1608AM_CONDITIONAL([COND_arm_efi], [test x$target_cpu = xarm -a x$platform = xefi])
15a463d7
LL
1609AM_CONDITIONAL([COND_arm64], [test x$target_cpu = xarm64 ])
1610AM_CONDITIONAL([COND_arm64_efi], [test x$target_cpu = xarm64 -a x$platform = xefi])
f7711f5e 1611
f7711f5e 1612AM_CONDITIONAL([COND_HOST_WINDOWS], [test x$host_kernel = xwindows])
2d465fb0 1613
76ed06b9
BC
1614AM_CONDITIONAL([COND_MAN_PAGES], [test x$cross_compiling = xno -a x$HELP2MAN != x])
1615AM_CONDITIONAL([COND_GRUB_EMU_USB], [test x$enable_grub_emu_usb = xyes])
1616AM_CONDITIONAL([COND_GRUB_EMU_SDL], [test x$enable_grub_emu_sdl = xyes])
1617AM_CONDITIONAL([COND_GRUB_EMU_PCI], [test x$enable_grub_emu_pci = xyes])
1618AM_CONDITIONAL([COND_GRUB_MKFONT], [test x$enable_grub_mkfont = xyes])
897e6207 1619AM_CONDITIONAL([COND_GRUB_MOUNT], [test x$enable_grub_mount = xyes])
76ed06b9 1620AM_CONDITIONAL([COND_HAVE_FONT_SOURCE], [test x$FONT_SOURCE != x])
6f07c4e4
VS
1621if test x$FONT_SOURCE != x ; then
1622 HAVE_FONT_SOURCE=1
1623else
1624 HAVE_FONT_SOURCE=0
1625fi
1626AC_SUBST(HAVE_FONT_SOURCE)
a9f25a08 1627AM_CONDITIONAL([COND_APPLE_LINKER], [test x$TARGET_APPLE_LINKER = x1])
76ed06b9 1628AM_CONDITIONAL([COND_ENABLE_EFIEMU], [test x$enable_efiemu = xyes])
c5dc1690 1629AM_CONDITIONAL([COND_ENABLE_CACHE_STATS], [test x$DISK_CACHE_STATS = x1])
e744219b 1630AM_CONDITIONAL([COND_ENABLE_BOOT_TIME_STATS], [test x$BOOT_TIME_STATS = x1])
fc45fb58 1631
1eed0e6e
VS
1632AM_CONDITIONAL([COND_HAVE_CXX], [test x$HAVE_CXX = xyes])
1633
742f9232 1634AM_CONDITIONAL([COND_HAVE_ASM_USCORE], [test x$HAVE_ASM_USCORE = x1])
c5884973 1635AM_CONDITIONAL([COND_STARFIELD], [test "x$starfield_excuse" = x])
cd46aa6c
VS
1636AM_CONDITIONAL([COND_HAVE_EXEC], [test "x$have_exec" = xy])
1637
1638test "x$prefix" = xNONE && prefix="$ac_default_prefix"
1639test "x$exec_prefix" = xNONE && exec_prefix="${prefix}"
1640datarootdir="$(eval echo "$datarootdir")"
1641grub_libdir="$(eval echo "$libdir")"
1642grub_localedir="$(eval echo "$localedir")"
1643grub_datadir="$(eval echo "$datadir")"
1644grub_sysconfdir="$(eval echo "$sysconfdir")"
1645AC_DEFINE_UNQUOTED(LOCALEDIR, "$grub_localedir", [Locale dir])
1646AC_DEFINE_UNQUOTED(GRUB_LIBDIR, "$grub_libdir", [Library dir])
1647AC_DEFINE_UNQUOTED(GRUB_DATADIR, "$grub_datadir", [Data dir])
1648AC_DEFINE_UNQUOTED(GRUB_SYSCONFDIR, "$grub_sysconfdir", [Configuration dir])
1649
742f9232 1650
6a161fa9 1651# Output files.
4959e111
VS
1652cpudir="${target_cpu}"
1653if test x${cpudir} = xmipsel; then
1654 cpudir=mips;
1655fi
1f4147aa 1656grub_CHECK_LINK_DIR
1657if test x"$link_dir" = xyes ; then
4959e111 1658 AC_CONFIG_LINKS([include/grub/cpu:include/grub/$cpudir])
f84b481b 1659 if test "$platform" != emu ; then
4959e111 1660 AC_CONFIG_LINKS([include/grub/machine:include/grub/$cpudir/$platform])
f84b481b 1661 fi
1f4147aa 1662else
1663 mkdir -p include/grub 2>/dev/null
1664 rm -rf include/grub/cpu
4959e111 1665 cp -rp $srcdir/include/grub/$cpudir include/grub/cpu 2>/dev/null
f84b481b
RM
1666 if test "$platform" != emu ; then
1667 rm -rf include/grub/machine
4959e111 1668 cp -rp $srcdir/include/grub/$cpudir/$platform include/grub/machine 2>/dev/null
f84b481b 1669 fi
1f4147aa 1670fi
6304d292 1671
8c411768 1672AC_CONFIG_FILES([Makefile])
6304d292 1673AC_CONFIG_FILES([grub-core/Makefile])
15c69261 1674AC_CONFIG_FILES([grub-core/gnulib/Makefile])
269004c1 1675AC_CONFIG_FILES([po/Makefile.in])
8c411768 1676AC_CONFIG_FILES([docs/Makefile])
b23ffd70 1677AC_CONFIG_FILES([util/bash-completion.d/Makefile])
6a161fa9 1678AC_CONFIG_FILES([stamp-h], [echo timestamp > stamp-h])
742f9232 1679AC_CONFIG_FILES([config.h])
8c411768 1680
6a161fa9 1681AC_OUTPUT
5ce5507f 1682[
1683echo "*******************************************************"
1684echo GRUB2 will be compiled with following components:
1685echo Platform: "$target_cpu"-"$platform"
f84b481b 1686if [ x"$platform" = xemu ]; then
5ce5507f 1687if [ x"$grub_emu_usb_excuse" = x ]; then
1688echo USB support for grub-emu: Yes
1689else
1690echo USB support for grub-emu: No "($grub_emu_usb_excuse)"
1691fi
927d0134
VS
1692if [ x"$grub_emu_sdl_excuse" = x ]; then
1693echo SDL support for grub-emu: Yes
1694else
1695echo SDL support for grub-emu: No "($grub_emu_sdl_excuse)"
1696fi
325c8258 1697if [ x"$grub_emu_pci_excuse" = x ]; then
1698echo PCI support for grub-emu: Yes
1699else
1700echo PCI support for grub-emu: No "($grub_emu_pci_excuse)"
1701fi
f84b481b 1702fi
61d720e5
VS
1703if test x"$device_mapper_excuse" = x ; then
1704echo With devmapper support: Yes
1705else
1706echo With devmapper support: No "($device_mapper_excuse)"
1707fi
5ce5507f 1708if [ x"$enable_mm_debug" = xyes ]; then
1709echo With memory debugging: Yes
1710else
1711echo With memory debugging: No
1712fi
c5dc1690
SJ
1713if [ x"$enable_cache_stats" = xyes ]; then
1714echo With disk cache statistics: Yes
1715else
1716echo With disk cache statistics: No
1717fi
e744219b
VS
1718
1719if [ x"$enable_boot_time" = xyes ]; then
1720echo With boot time statistics: Yes
1721else
1722echo With boot time statistics: No
1723fi
1724
5ce5507f 1725if [ x"$efiemu_excuse" = x ]; then
1726echo efiemu runtime: Yes
1727else
1728echo efiemu runtime: No "($efiemu_excuse)"
1729fi
5ce5507f 1730if [ x"$grub_mkfont_excuse" = x ]; then
1731echo grub-mkfont: Yes
1732else
1733echo grub-mkfont: No "($grub_mkfont_excuse)"
1734fi
897e6207 1735if [ x"$grub_mount_excuse" = x ]; then
89644ef1 1736echo grub-mount: Yes
92bb0786 1737else
897e6207 1738echo grub-mount: No "($grub_mount_excuse)"
92bb0786 1739fi
c5884973
DO
1740if [ x"$starfield_excuse" = x ]; then
1741echo starfield theme: Yes
1742else
1743echo starfield theme: No "($starfield_excuse)"
1744fi
e4c498a1
MG
1745if [ x"$libzfs_excuse" = x ]; then
1746echo With libzfs support: Yes
1747else
1748echo With libzfs support: No "($libzfs_excuse)"
1749fi
7b780018 1750if [ x"$grub_build_mkfont_excuse" = x ]; then
7c9d0c39
VS
1751 echo Build-time grub-mkfont: Yes
1752 if test "x$FONT_SOURCE" = x ; then
1753 echo "Without unifont"
1754 else
1755 echo "With unifont from $FONT_SOURCE"
1756 fi
4b80e43c 1757else
7b780018 1758 echo Build-time grub-mkfont: No "($grub_build_mkfont_excuse)"
7c9d0c39 1759 echo "Without unifont (no build-time grub-mkfont)"
4b80e43c 1760fi
0d2d30bb
VS
1761if test x"$liblzma_excuse" != x ; then
1762echo "Without liblzma (no support for XZ-compressed mips images) ($liblzma_excuse)"
64fce2d8
VS
1763else
1764echo "With liblzma from $LIBLZMA (support for XZ-compressed mips images)"
1765fi
5ce5507f 1766echo "*******************************************************"
1767]