-
Notifications
You must be signed in to change notification settings - Fork 201
/
configure.ac
306 lines (261 loc) · 8.67 KB
/
configure.ac
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
AC_PREREQ([2.71])
AC_INIT([libnfs],[6.0.0],[[email protected]])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects])
AC_CANONICAL_HOST
AC_CONFIG_MACRO_DIR([m4])
m4_pattern_allow([AM_PROG_AR])
AM_PROG_AR
# Work around stupid autoconf default cflags. pt 1
SAVE_CFLAGS="x${CFLAGS}"
AC_PROG_CC
LT_INIT
AM_PROG_CC_C_O
PKG_PROG_PKG_CONFIG
# Work around stupid autoconf default cflags. pt 2
if test "$SAVE_CFLAGS" = "x"; then
CFLAGS=""
fi
# We always want 64 bit file offsets
AC_SYS_LARGEFILE
#option: utils
MAYBE_UTILS="utils"
AC_ARG_ENABLE([utils],
[AS_HELP_STRING([--enable-utils],[Build util programs])],
[if test $enableval = no ; then
MAYBE_UTILS=""
fi])
AC_SUBST(MAYBE_UTILS)
#option: examples
AC_ARG_ENABLE([examples],
[AS_HELP_STRING([--enable-examples],[Build example programs])],
[ENABLE_EXAMPLES=$enableval],
[ENABLE_EXAMPLES="no"])
AC_ARG_WITH([libkrb5],
[AS_HELP_STRING([--without-libkrb5],
[Do not link with libkrb5 even if available.])])
AS_IF([test "x$with_libkrb5" != "xno"], [
MAYBE_LIBKRB5="-lgssapi_krb5"
AC_DEFINE([HAVE_LIBKRB5], [1], [Whether we use gssapi_krb5 or not])
AC_MSG_NOTICE([Build with gssapi_krb5 support])
dnl Check for gssapi/gssapi.h
AC_CHECK_HEADERS([gssapi/gssapi.h], [], [
AC_MSG_ERROR([You need gssapi development files to compile libsmb2.])
])
], [
MAYBE_LIBKRB5=""
AC_MSG_NOTICE([Build WITHOUT gssapi_krb5 support])
])
# We need popt to compile the examples
if test x$ENABLE_EXAMPLES = xyes; then
AC_MSG_CHECKING(whether libpopt is available)
ac_save_LIBS="$LIBS"
LIBS="$LIBS -lpopt"
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <popt.h>]], [[
/*
* Just see if we can compile/link with popt
*/
int _argc;
char **_argv;
struct poptOption popt_options[] = {
POPT_TABLEEND
};
poptGetContext(_argv[0], _argc, _argv, popt_options, POPT_CONTEXT_KEEP_FIRST);
]])],[ac_cv_have_popt=yes],[ac_cv_have_popt=no])
LIBS="$ac_save_LIBS"
if test "$ac_cv_have_popt" = yes ; then
AC_MSG_RESULT(yes)
MAYBE_EXAMPLES="examples"
else
AC_MSG_RESULT(no)
AC_MSG_NOTICE(You need libpopt to compile the sample libnfs clients.)
AC_MSG_NOTICE(Only the library will be compiled and installed.)
fi
fi
AC_SUBST(MAYBE_EXAMPLES)
#option: examples
AC_ARG_ENABLE([pthread],
[AS_HELP_STRING([--enable-pthread],[Build with pthread multithreading support])],
[ENABLE_PTHREAD=$enableval],
[ENABLE_PTHREAD="no"])
if test x$ENABLE_PTHREAD = xyes; then
# check for lpthread
AC_CACHE_CHECK([for pthread support],libnfs_cv_HAVE_PTHREAD,[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <pthread.h>]], [[pthread_t thread1, thread2;]])],[libnfs_cv_HAVE_PTHREAD=yes],[libnfs_cv_HAVE_PTHREAD=no])])
if test x"$libnfs_cv_HAVE_PTHREAD" = x"yes"; then
AC_DEFINE(HAVE_PTHREAD,1,[Whether we have pthread support])
AC_DEFINE(HAVE_MULTITHREADING,1,[Whether we have multithreading support])
fi
fi
AM_CONDITIONAL([HAVE_PTHREAD], [test x$libnfs_cv_HAVE_PTHREAD = xyes])
AC_MSG_CHECKING(whether SO_BINDTODEVICE is available)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <net/if.h>]], [[
int i = SO_BINDTODEVICE;
]])],[ac_cv_have_so_bindtodevice=yes],[ac_cv_have_so_bindtodevice=no])
if test "$ac_cv_have_so_bindtodevice" = yes ; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_SO_BINDTODEVICE, 1, [Whether our sockets support SO_BINDTODEVICE])
else
AC_MSG_RESULT(no)
AC_MSG_NOTICE(SO_BINDTODEVICE support for if= support is missing.)
AC_MSG_NOTICE(Compiling without if= support.)
fi
AC_MSG_CHECKING(whether getpwnam() is available)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <sys/types.h>
#include <pwd.h>
]], [[
struct passwd *pwd = getpwnam("nobody");
]])],[ac_cv_have_getpwnam=yes],[ac_cv_have_getpwnam=no])
if test "$ac_cv_have_getpwnam" = yes ; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_GETPWNAM, 1, [Whether we have getpwnam()])
else
AC_MSG_RESULT(no)
AC_MSG_NOTICE(getpwnam() support is missing.)
AC_MSG_NOTICE(Compiling without getpwnam() support.)
fi
AC_SUBST([MAYBE_LIBKRB5])
AC_ARG_ENABLE([werror], [AS_HELP_STRING([--disable-werror],
[Disables building with -Werror by default])])
if test "$ac_cv_c_compiler_gnu" = yes; then
WARN_CFLAGS="-Wall -Wshadow -Wno-write-strings -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wno-strict-aliasing"
if test "x$enable_werror" != "xno"; then
WARN_CFLAGS="$WARN_CFLAGS -Werror"
fi
fi
AC_SUBST(WARN_CFLAGS)
LIBSOCKET=
SYS=
case $host in
*solaris*)
AC_CHECK_HEADERS([sys/filio.h])
AC_CHECK_HEADERS([sys/sockio.h])
AC_CHECK_LIB([socket], [main], , [AC_MSG_ERROR([Can not find required library])])
AC_CHECK_LIB([nsl], [main], , [AC_MSG_ERROR([Can not find required library])])
;;
*mingw32* | *wince* | *mingwce*)
LIBSOCKET='-lws2_32'
SYS=mingw32
;;
*)
;;
esac
AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32")
AC_SUBST([LIBSOCKET])
# check for sys/sysmacros.h
dnl Check for sys/sysmacros.h
AC_CHECK_HEADERS([sys/sysmacros.h])
# check for poll.h
dnl Check for poll.h
AC_CHECK_HEADERS([poll.h])
# check for stdatomic.h
dnl Check for stdatomic.h
AC_CHECK_HEADERS([stdatomic.h])
# check for unistd.h
dnl Check for unistd.h
AC_CHECK_HEADERS([unistd.h])
# check for netdb.h
dnl Check for netdb.h
AC_CHECK_HEADERS([netdb.h])
# check for utime.h
dnl Check for utime.h
AC_CHECK_HEADERS([utime.h])
# check for net/if.h
dnl Check for net/if.h
AC_CHECK_HEADERS([net/if.h])
# check for sys/time.h
dnl Check for sys/time.h
AC_CHECK_HEADERS([sys/time.h])
# check for sys/ioctl.h
dnl Check for sys/ioctl.h
AC_CHECK_HEADERS([sys/ioctl.h])
# check for sys/vfs.h
dnl Check for sys/vfs.h
AC_CHECK_HEADERS([sys/vfs.h])
# check for sys/statvfs.h
dnl Check for sys/statvfs.h
AC_CHECK_HEADERS([sys/statvfs.h])
# check for fuse.h
dnl Check for fuse.h
AC_CHECK_HEADERS([fuse.h])
# check for sys/socket.h
dnl Check for sys/socket.h
AC_CHECK_HEADERS([sys/socket.h])
# check for netinet/tcp.h
dnl Check for netinet/tcp.h
AC_CHECK_HEADERS([netinet/tcp.h])
# check for netinet/in.h
dnl Check for netinet/in.h
AC_CHECK_HEADERS([netinet/in.h])
# check for arpa/inet.h
dnl Check for arpa/inet.h
AC_CHECK_HEADERS([arpa/inet.h])
# check for sys/uio.h
dnl Check for sys/uio.h
AC_CHECK_HEADERS([sys/uio.h])
# check for SA_LEN
dnl Check if sockaddr data structure includes a "sa_len"
AC_CHECK_MEMBER([struct sockaddr.sa_len],
[ AC_DEFINE(HAVE_SOCKADDR_LEN,1,[Whether sockaddr struct has sa_len]) ],
[],
[
#include <sys/types.h>
#include <sys/socket.h>
])
# check for sockaddr_storage
dnl Check if sockaddr structure includes a "ss_family"
AC_CHECK_MEMBER([struct sockaddr_storage.ss_family],
[ AC_DEFINE(HAVE_SOCKADDR_STORAGE,1,[Whether we have sockaddr_Storage]) ],
[],
[
#include <sys/types.h>
#include <sys/socket.h>
])
# check for clock_gettime(CLOCK_MONOTONIC_COARSE)
AC_MSG_CHECKING(if clock_gettime(CLOCK_MONOTONIC_COARSE) is available)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[
int i = clock_gettime(CLOCK_MONOTONIC_COARSE, NULL);
]])],[ac_cv_have_clock_gettime=yes],[ac_cv_have_clock_gettime=no])
if test "$ac_cv_have_clock_gettime" = yes ; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Whether we have clock_gettime])
else
AC_MSG_RESULT(no)
AC_MSG_NOTICE(clock_gettime(CLOCK_MONOTONIC_COARSE) support is missing.)
AC_MSG_NOTICE(Compiling without clock_gettime support..)
fi
# check for tevent + talloc
AC_CACHE_CHECK([for talloc and tevent support],libnfs_cv_HAVE_TALLOC_TEVENT,[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <talloc.h>
#include <tevent.h>]], [[struct tevent_context *ctx = tevent_context_init(NULL);
int major = talloc_version_major();]])],[libiscsi_cv_HAVE_TALLOC_TEVENT=yes],[libiscsi_cv_HAVE_TALLOC_TEVENT=no])])
if test x"$libiscsi_cv_HAVE_TALLOC_TEVENT" = x"yes"; then
AC_DEFINE(HAVE_TALLOC_TEVENT,1,[Whether we have talloc nad tevent support])
fi
AM_CONDITIONAL([HAVE_TALLOC_TEVENT], [test $libiscsi_cv_HAVE_TALLOC_TEVENT = yes])
AC_CHECK_MEMBERS([struct stat.st_mtim.tv_nsec])
AC_CHECK_HEADERS(dispatch/dispatch.h)
AC_CHECK_FUNCS(pthread_threadid_np)
# check where makedev is defined
AC_HEADER_MAJOR
#output
AC_CONFIG_FILES([Makefile]
[doc/Makefile]
[examples/Makefile]
[include/Makefile]
[lib/Makefile]
[mount/Makefile]
[nfs/Makefile]
[nfs4/Makefile]
[nlm/Makefile]
[nsm/Makefile]
[portmap/Makefile]
[rquota/Makefile]
[tests/Makefile]
[utils/Makefile]
)
AC_CONFIG_FILES([libnfs.pc])
AC_OUTPUT