]> git.ipfire.org Git - ipfire-2.x.git/blame - src/installer/configure.ac
installer: Drop user to an emergency shell if the installer crashes.
[ipfire-2.x.git] / src / installer / configure.ac
CommitLineData
5315fae6
MT
1# This file is part of the installer.
2#
3# installer is free software; you can redistribute it and/or modify it
4# under the terms of the GNU Lesser General Public License as published by
5# the Free Software Foundation; either version 2.1 of the License, or
6# (at your option) any later version.
7
8AC_PREREQ([2.64])
9
10AC_INIT([installer],
11 [001],
12 [],
13 [installer],
14 [http://git.ipfire.org/?p=ipfire-2.x.git;a=summary])
15
16AC_CONFIG_MACRO_DIR([m4])
17AC_CONFIG_HEADERS([config.h])
18AC_CONFIG_AUX_DIR([build-aux])
19
20AM_INIT_AUTOMAKE([
21 foreign
22 1.11
23 -Wall
24 -Wno-portability
25 silent-rules
26 tar-pax
27 no-dist-gzip
28 dist-xz
29 subdir-objects
30])
31AM_SILENT_RULES([yes])
32
33LT_PREREQ(2.2)
34LT_INIT([disable-static])
35
36AC_PROG_SED
37
38AC_PROG_CC
39AC_PROG_CC_C99
40AC_PROG_CC_C_O
41
42AC_PATH_PROG([M4], [m4])
43
44AC_CHECK_HEADERS([libintl.h])
45
46# This makes sure pkg.m4 is available.
47m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
48
49save_LIBS="$LIBS"
50
51# newt
52LIBS=
53AC_SEARCH_LIBS([newtWinMenu], [newt], [], [AC_MSG_ERROR([*** newt library not found])])
54NEWT_LIBS="$LIBS"
55AC_SUBST(NEWT_LIBS)
56
57LIBS="$save_LIBS"
58
59PKG_CHECK_MODULES(BLKID, [blkid])
60PKG_CHECK_MODULES(PCI, [libpci])
61PKG_CHECK_MODULES(LIBSMOOTH, [libsmooth])
62PKG_CHECK_MODULES(UDEV, [libudev])
63
64AC_ARG_WITH([distro-name],
65 AS_HELP_STRING([--with-distro-name] [The name of the distribution]),
66 AC_DEFINE_UNQUOTED([NAME], "$withval", [The name of the distribution]),
67 AC_MSG_ERROR([*** you need to set the name with --with-distro-name=]))
68
69AC_ARG_WITH([distro-sname],
70 AS_HELP_STRING([--with-distro-sname] [The short name of the distribution]),
71 AC_DEFINE_UNQUOTED([SNAME], "$withval", [The sname of the distribution]),
72 AC_MSG_ERROR([*** you need to set the sname with --with-distro-sname=]))
73
74AC_ARG_WITH([distro-slogan],
75 AS_HELP_STRING([--with-distro-slogan] [The slogan of the distribution]),
76 AC_DEFINE_UNQUOTED([SLOGAN], "$withval", [The slogan of the distribution]),
77 AC_MSG_ERROR([*** you need to set the slogan with --with-distro-slogan=]))
78
79AC_ARG_WITH([config-root],
80 AS_HELP_STRING([--with-distro-config-root] [The configuration directory]),
81 AC_DEFINE_UNQUOTED([CONFIG_ROOT], "$withval", [The config-root]),
82 AC_MSG_ERROR([*** you need to set CONFIG_ROOT with --with-config-root=]))
83
84AC_CONFIG_FILES([
85 Makefile
86])
87
88AC_OUTPUT
89AC_MSG_RESULT([
90 $PACKAGE_NAME $VERSION
91
92 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
93 CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
94 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
95])