1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
AC_PREREQ([2.65])
AC_INIT([portage-utils], [git])
AM_INIT_AUTOMAKE([1.11 dist-xz no-dist-gzip silent-rules -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AC_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([autotools/m4])
AC_PROG_CC_C99
AM_PROG_CC_C_O
AC_USE_SYSTEM_EXTENSIONS
gl_EARLY
gl_INIT
AM_PROG_AR
LT_INIT
AC_SUBST([LIBTOOL_DEPS])
AC_CHECK_LIB([kvm], [kvm_open])
AC_CHECK_FUNCS_ONCE(m4_flatten([
scandirat
]))
AC_ARG_WITH([eprefix], [AS_HELP_STRING([--with-eprefix], [path for Gentoo/Prefix project])])
# ensure eprefix ends with a slash, since the code base expects that
case "$with_eprefix" in
*/) with_eprefix="$with_eprefix" ;;
*) with_eprefix="${with_eprefix}/" ;;
esac
AC_DEFINE_UNQUOTED([CONFIG_EPREFIX], ["$with_eprefix"], [path for Gentoo/Prefix project])
AX_CFLAGS_WARN_ALL
AC_DEFUN([PT_CHECK_CFLAG],[AX_CHECK_COMPILER_FLAGS([$1],[CFLAGS="$CFLAGS $1"])])
m4_foreach_w([flag], [
-Wunused
-Wimplicit
-Wshadow
-Wformat=2
-Wmissing-declarations
-Wno-missing-prototypes
-Wwrite-strings
-Wbad-function-cast
-Wnested-externs
-Wcomment
-Winline
-Wchar-subscripts
-Wcast-align
-Wno-format-nonliteral
-Wsequence-point
-Wold-style-definition
-Wextra
], [
AX_CHECK_COMPILE_FLAG(flag, AS_VAR_APPEND([CFLAGS], " flag"))
])
AC_CONFIG_FILES([
Makefile
libq/Makefile
autotools/gnulib/Makefile
])
AC_OUTPUT
|