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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
# Copyright © 2004 Scott James Remnant <scott@netsplit.com>
# Copyright © 2007 Nicolas François <nicolas.francois@centraliens.net>
# Copyright © 2006, 2009-2012, 2014-2015 Guillem Jover <guillem@debian.org>
# DPKG_LIB_MD
# -----------
# Check for the message digest library.
AC_DEFUN([DPKG_LIB_MD], [
AC_ARG_VAR([MD_LIBS], [linker flags for md library])
AC_CHECK_HEADERS([md5.h], [
AC_CHECK_LIB([md], [MD5Init], [have_libmd=yes], [
AC_MSG_FAILURE([md5 digest not found in libmd])
])
])
AS_IF([test "x$have_libmd" = "xyes"], [MD_LIBS="-lmd"])
AM_CONDITIONAL([HAVE_LIBMD_MD5], [test "x$ac_cv_lib_md_MD5Init" = "xyes"])
])# DPKG_LIB_MD
# DPKG_WITH_COMPRESS_LIB(NAME, HEADER, FUNC, LINK)
# -------------------------------------------------
# Check for availability of a compression library.
AC_DEFUN([DPKG_WITH_COMPRESS_LIB], [
AC_ARG_VAR(AS_TR_CPP($1)[_LIBS], [linker flags for $1 library])
AC_ARG_WITH($1,
AS_HELP_STRING([--with-$1],
[use $1 library for compression and decompression]))
if test "x$with_$1" != "xno"; then
AC_CHECK_LIB([$4], [$3], [
AC_DEFINE([WITH_]AS_TR_CPP($1), 1,
[Define to 1 to use $1 rather than console tool])
if test "x$with_$1" = "xstatic"; then
dpkg_$1_libs="-Wl,-Bstatic -l$4 -Wl,-Bdynamic"
else
dpkg_$1_libs="-l$4"
fi
AS_TR_CPP($1)_LIBS="${AS_TR_CPP($1)_LIBS:+$AS_TR_CPP($1)_LIBS }$dpkg_$1_libs"
with_$1="yes"
], [
if test -n "$with_$1"; then
AC_MSG_FAILURE([$1 library not found])
fi
])
AC_CHECK_HEADER([$2], [], [
if test -n "$with_$1"; then
AC_MSG_FAILURE([$1 header not found])
fi
])
fi
])# DPKG_WITH_COMPRESS_LIB
# DPKG_LIB_ZLIB
# -------------
# Check for zlib library.
AC_DEFUN([DPKG_LIB_ZLIB], [
DPKG_WITH_COMPRESS_LIB([zlib], [zlib.h], [gzdopen], [z])
])# DPKG_LIB_ZLIB
# DPKG_LIB_LZMA
# -------------
# Check for lzma library.
AC_DEFUN([DPKG_LIB_LZMA], [
DPKG_WITH_COMPRESS_LIB([liblzma], [lzma.h], [lzma_alone_decoder], [lzma])
])# DPKG_LIB_LZMA
# DPKG_LIB_BZ2
# ------------
# Check for bz2 library.
AC_DEFUN([DPKG_LIB_BZ2], [
DPKG_WITH_COMPRESS_LIB([bz2], [bzlib.h], [BZ2_bzdopen], [bz2])
])# DPKG_LIB_BZ2
# DPKG_LIB_SELINUX
# ----------------
# Check for selinux library.
AC_DEFUN([DPKG_LIB_SELINUX], [
AC_REQUIRE([PKG_PROG_PKG_CONFIG])
m4_ifndef([PKG_PROG_PKG_CONFIG], [m4_fatal([missing pkg-config macros])])
AC_ARG_VAR([SELINUX_LIBS], [linker flags for selinux library])dnl
AC_ARG_WITH(selinux,
AS_HELP_STRING([--with-selinux],
[use selinux library to set security contexts]))
if test "x$with_selinux" != "xno"; then
AC_CHECK_LIB([selinux], [is_selinux_enabled],
[AC_DEFINE(WITH_SELINUX, 1,
[Define to 1 to compile in SELinux support])
PKG_CHECK_EXISTS([libselinux], [
if test "x$with_selinux" = "xstatic"; then
dpkg_selinux_libs="-Wl,-Bstatic "$($PKG_CONFIG --static --libs libselinux)" -Wl,-Bdynamic"
else
dpkg_selinux_libs=$($PKG_CONFIG --libs libselinux)
fi
], [
if test "x$with_selinux" = "xstatic"; then
dpkg_selinux_libs="-Wl,-Bstatic -lselinux -lsepol -Wl,-Bdynamic"
else
dpkg_selinux_libs="-lselinux"
fi
])
SELINUX_LIBS="${SELINUX_LIBS:+$SELINUX_LIBS }$dpkg_selinux_libs"
with_selinux="yes"],
[if test -n "$with_selinux"; then
AC_MSG_FAILURE([selinux library not found])
fi])
AC_CHECK_LIB([selinux], [setexecfilecon],
[AC_DEFINE([HAVE_SETEXECFILECON], [1],
[Define to 1 if SELinux setexecfilecon is present])
])
AC_CHECK_HEADER([selinux/selinux.h],,
[if test -n "$with_selinux"; then
AC_MSG_FAILURE([selinux header not found])
fi])
fi
AM_CONDITIONAL(WITH_SELINUX, [test "x$with_selinux" = "xyes"])
AM_CONDITIONAL(HAVE_SETEXECFILECON,
[test "x$ac_cv_lib_selinux_setexecfilecon" = "xyes"])
])# DPKG_LIB_SELINUX
# _DPKG_CHECK_LIB_CURSES_NARROW
# -----------------------------
# Check for narrow curses library.
AC_DEFUN([_DPKG_CHECK_LIB_CURSES_NARROW], [
AC_CHECK_LIB([ncurses], [initscr],
[CURSES_LIBS="${CURSES_LIBS:+$CURSES_LIBS }-lncurses"],
[AC_CHECK_LIB([curses], [initscr],
[CURSES_LIBS="${CURSES_LIBS:+$CURSES_LIBS }-lcurses"],
[AC_MSG_ERROR([no curses library found])])])])
])# DPKG_CHECK_LIB_CURSES_NARROW
# DPKG_LIB_CURSES
# ---------------
# Check for curses library.
AC_DEFUN([DPKG_LIB_CURSES], [
AC_REQUIRE([DPKG_UNICODE])
AC_ARG_VAR([CURSES_LIBS], [linker flags for curses library])dnl
AC_CHECK_HEADERS([ncurses/ncurses.h ncurses.h curses.h ncurses/term.h term.h],
[have_curses_header=yes])
if test "x$USE_UNICODE" = "xyes"; then
AC_CHECK_HEADERS([ncursesw/ncurses.h ncursesw/term.h],
[have_curses_header=yes])
AC_CHECK_LIB([ncursesw], [initscr],
[CURSES_LIBS="${CURSES_LIBS:+$CURSES_LIBS }-lncursesw"],
[_DPKG_CHECK_LIB_CURSES_NARROW()])
else
_DPKG_CHECK_LIB_CURSES_NARROW()
fi
if test "x$have_curses_header" != "xyes"; then
AC_MSG_FAILURE([curses header not found])
fi
])# DPKG_LIB_CURSES
# DPKG_LIB_SSD
# ------------
# Check for start-stop-daemon libraries.
AC_DEFUN([DPKG_LIB_SSD],
[AC_ARG_VAR([SSD_LIBS], [linker flags for start-stop-daemon])dnl
AC_CHECK_LIB([ps], [proc_stat_list_create], [SSD_LIBS="${SSD_LIBS:+$SSD_LIBS }-lps"])
AC_CHECK_LIB([kvm], [kvm_openfiles], [SSD_LIBS="${SSD_LIBS:+$SSD_LIBS }-lkvm"])
])# DPKG_LIB_SSD
|