1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT([linux nfs-utils],[1.1.5],[linux-nfs@vger.kernel.org],[nfs-utils])
6 AC_CONFIG_MACRO_DIR(aclocal)
9 AC_PREFIX_DEFAULT(/usr)
12 dnl *************************************************************
13 dnl * Define the set of applicable options
14 dnl *************************************************************
16 [AC_HELP_STRING([--with-release=XXX], [set release to XXX [1]])],
21 [ --with-statedir=/foo use state dir /foo [/var/lib/nfs]],
23 statedir=/var/lib/nfs)
25 AC_ARG_WITH(statduser,
26 [AC_HELP_STRING([--with-statduser=rpcuser],
27 [statd to run under @<:@rpcuser or nobody@:>@]
30 if test "x$cross_compiling" = "xno"; then
31 if grep -s '^rpcuser:' /etc/passwd > /dev/null; then
40 AC_ARG_WITH(start-statd,
41 [AC_HELP_STRING([--with-start-statd=scriptname],
42 [When an nfs filesystems is mounted with locking, run this script]
45 startstatd=/usr/sbin/start-statd
48 AC_DEFINE_UNQUOTED(START_STATD, "$startstatd", [Define this to a script which can start statd on mount])
50 [AC_HELP_STRING([--enable-nfsv3],
51 [enable support for NFSv3 @<:@default=yes@:>@])],
52 enable_nfsv3=$enableval,
54 if test "$enable_nfsv3" = yes; then
55 AC_DEFINE(NFS3_SUPPORTED, 1, [Define this if you want NFSv3 support compiled in])
59 AC_SUBST(enable_nfsv3)
61 [AC_HELP_STRING([--enable-nfsv4],
62 [enable support for NFSv4 @<:@default=yes@:>@])],
63 enable_nfsv4=$enableval,
65 if test "$enable_nfsv4" = yes; then
66 AC_DEFINE(NFS4_SUPPORTED, 1, [Define this if you want NFSv4 support compiled in])
73 AC_SUBST(enable_nfsv4)
74 AM_CONDITIONAL(CONFIG_NFSV4, [test "$enable_nfsv4" = "yes"])
76 [AC_HELP_STRING([--enable-gss],
77 [enable support for rpcsec_gss @<:@default=yes@:>@])],
78 enable_gss=$enableval,
80 if test "$enable_gss" = yes; then
81 AC_DEFINE(GSS_SUPPORTED, 1, [Define this if you want rpcsec_gss support compiled in])
92 AM_CONDITIONAL(CONFIG_GSS, [test "$enable_gss" = "yes"])
93 AC_ARG_ENABLE(kprefix,
94 [AC_HELP_STRING([--enable-kprefix], [install progs as rpc.knfsd etc])],
95 test "$enableval" = "yes" && kprefix=k,
99 [AC_HELP_STRING([--with-rpcgen=internal], [use internal rpcgen instead of system one])],
100 rpcgen_path=$withval,
103 if test "$rpcgen_path" == "yes"; then
104 for p in /usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen
105 do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
106 elif test "$rpcgen_path" != "internal"; then
107 RPCGEN_PATH=$rpcgen_path
109 AC_SUBST(RPCGEN_PATH)
110 AM_CONDITIONAL(CONFIG_RPCGEN, [test "$RPCGEN_PATH" == ""])
112 [AC_HELP_STRING([--disable-uuid], [Exclude uuid support to avoid buggy libblkid])],
113 if test "$enableval" = "yes" ; then choose_blkid=yes; else choose_blkid=no; fi,
114 choose_blkid=default)
116 [AC_HELP_STRING([--enable-mount],
117 [Create mount.nfs and don't use the util-linux mount(8) functionality. @<:@default=yes@:>@])],
118 enable_mount=$enableval,
120 AM_CONDITIONAL(CONFIG_MOUNT, [test "$enable_mount" = "yes"])
122 [AC_HELP_STRING([--enable-ipv6],
123 [enable support for IPv6 @<:@default=no@:>@])],
124 enable_ipv6=$enableval,
126 if test "$enable_ipv6" = yes; then
127 AC_DEFINE(IPV6_SUPPORTED, 1, [Define this if you want IPv6 support compiled in])
131 AC_SUBST(enable_ipv6)
132 AM_CONDITIONAL(CONFIG_IPV6, [test "$enable_ipv6" = "yes"])
135 [AC_HELP_STRING([--enable-tirpc],
136 [enable use of TI-RPC @<:@default=no@:>@])],
137 enable_tirpc=$enableval,
139 AC_SUBST(enable_tirpc)
140 AM_CONDITIONAL(CONFIG_TIRPC, [test "$enable_tirpc" = "yes"])
142 # Check whether user wants TCP wrappers support
145 # Arrange for large-file support
148 AC_CONFIG_SRCDIR([support/include/config.h.in])
149 AC_CONFIG_HEADERS([support/include/config.h])
151 # Checks for programs.
161 if test "x$cross_compiling" = "xno"; then
162 CC_FOR_BUILD=${CC_FOR_BUILD-${CC-gcc}}
164 CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
167 AC_SUBST(CC_FOR_BUILD)
169 AC_CHECK_TOOL(AR, ar)
170 AC_CHECK_TOOL(LD, ld)
176 dnl *************************************************************
177 dnl * Check for required libraries
178 dnl *************************************************************
179 AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl, gethostbyname, [LIBNSL="-lnsl"])])
182 AC_CHECK_FUNC(connect, ,
183 AC_CHECK_LIB(socket, connect, [LIBSOCKET="-lsocket"],
184 AC_MSG_ERROR(Function 'socket' not found.), $LIBNSL))
186 AC_CHECK_FUNC(getaddrinfo, , ,
187 AC_MSG_ERROR(Function 'getaddrinfo' not found.))
189 AC_CHECK_FUNC(getrpcbynumber, , ,
190 AC_MSG_ERROR(Function 'getrpcbynumber' not found.))
192 AC_CHECK_FUNC(getservbyname, , ,
193 AC_MSG_ERROR(Function 'getservbyname' not found.))
195 AC_CHECK_LIB(crypt, crypt, [LIBCRYPT="-lcrypt"])
196 if test "$enable_nfsv4" = yes; then
197 AC_CHECK_LIB(event, event_dispatch, [libevent=1], AC_MSG_ERROR([libevent needed for nfsv4 support]))
198 AC_CHECK_LIB(nfsidmap, nfs4_init_name_mapping, [libnfsidmap=1], AC_MSG_ERROR([libnfsidmap needed for nfsv4 support]))
199 AC_CHECK_HEADERS(event.h, ,AC_MSG_ERROR([libevent needed for nfsv4 support]))
200 AC_CHECK_HEADERS(nfsidmap.h, ,AC_MSG_ERROR([libnfsidmap needed for nfsv4 support]))
201 dnl librpcsecgss already has a dependency on libgssapi,
202 dnl but we need to make sure we get the right version
203 if test "$enable_gss" = yes; then
204 PKG_CHECK_MODULES(RPCSECGSS, librpcsecgss >= 0.16, ,
205 [AC_MSG_ERROR([Unable to locate information required to use librpcsecgss. If you have pkgconfig installed, you might try setting environment variable PKG_CONFIG_PATH to /usr/local/lib/pkgconfig])
208 PKG_CHECK_MODULES(GSSGLUE, libgssglue >= 0.1)
212 if test "$knfsd_cv_glibc2" = no; then
213 AC_CHECK_LIB(bsd, daemon, [LIBBSD="-lbsd"])
216 if test "$choose_blkid" != no; then
217 AC_CHECK_LIB(blkid, blkid_get_library_version, [LIBBLKID="-lblkid"], AC_MSG_ERROR([libblkid needed]))
218 AC_CHECK_HEADER(blkid/blkid.h, , AC_MSG_ERROR([Cannot find libblkid header file blkid/blkid.h]))
220 if test $choose_blkid = yes; then
222 test $libblkid_cv_is_recent = no && AC_MSG_WARN([libblkid is old and may cause mountd to leak memory])
224 if test $libblkid_cv_is_recent = yes
227 AC_MSG_WARN([uuid support disabled as libblkid is too old])
230 AC_DEFINE_UNQUOTED(USE_BLKID, $use_blkid, [Define if you want to use blkid to find uuid of filesystems])
237 if test "$enable_gss" = yes; then
238 dnl 'gss' also depends on nfsidmap.h - at least for svcgssd_proc.c
239 AC_CHECK_HEADERS(nfsidmap.h, ,AC_MSG_ERROR([libnfsidmap needed for gss support]))
240 AC_CHECK_HEADERS(spkm3.h, ,AC_MSG_WARN([could not locate SPKM3 header; will not have SPKM3 support]))
241 dnl the nfs4_set_debug function doesn't appear in all version of the library
242 AC_CHECK_LIB(nfsidmap, nfs4_set_debug,
243 AC_DEFINE(HAVE_NFS4_SET_DEBUG,1,
244 [Whether nfs4_set_debug() is present in libnfsidmap]),)
246 dnl Check for Kerberos V5
249 dnl This is not done until here because we need to have KRBLIBS set
250 dnl ("librpcsecgss=1" is so that it doesn't get added to LIBS)
251 AC_CHECK_LIB(rpcsecgss, authgss_create_default, [librpcsecgss=1], AC_MSG_ERROR([librpcsecgss needed for nfsv4 support]), -lgssglue -ldl)
252 AC_CHECK_LIB(rpcsecgss, authgss_set_debug_level,
253 AC_DEFINE(HAVE_AUTHGSS_SET_DEBUG_LEVEL, 1, [Define this if the rpcsec_gss library has the function authgss_set_debug_level]),, -lgssglue -ldl)
257 AC_CHECK_DECL([AI_ADDRCONFIG],
258 AC_DEFINE([HAVE_DECL_AI_ADDRCONFIG], 1,
259 [Define this to 1 if AI_ADDRCONFIG macro is defined]), ,
260 [ #include <netdb.h> ] )
262 if test "$enable_tirpc" = yes; then
263 AC_CHECK_LIB(tirpc, clnt_tli_create, ,
264 AC_MSG_ERROR([libtirpc not found.]))
265 AC_CHECK_HEADERS(tirpc/netconfig.h, ,
266 AC_MSG_ERROR([libtirpc headers not found.]))
267 AC_CHECK_FUNCS([bindresvport_sa getnetconfig \
268 clnt_create clnt_create_timed \
269 clnt_vc_create clnt_dg_create xdr_rpcb])
272 if test "$enable_ipv6" = yes; then
273 if test "$enable_tirpc" = no; then
274 AC_MSG_ERROR('--enable-ipv6' requires '--enable-tirpc'.)
276 AC_CHECK_FUNC(getnameinfo, , ,
277 AC_MSG_ERROR(Function 'getnameinfo' not found.))
278 AC_CHECK_DECL([AI_ADDRCONFIG], ,
279 AC_MSG_ERROR([full getaddrinfo(3) implementation needed for IPv6 support]),
280 [ #include <netdb.h> ] )
283 dnl *************************************************************
284 dnl Check for headers
285 dnl *************************************************************
286 AC_CHECK_HEADERS([arpa/inet.h fcntl.h libintl.h limits.h \
287 malloc.h memory.h netdb.h netinet/in.h paths.h \
288 stdlib.h string.h sys/file.h sys/ioctl.h sys/mount.h \
289 sys/param.h sys/socket.h sys/time.h sys/vfs.h \
290 syslog.h unistd.h com_err.h et/com_err.h \
293 dnl *************************************************************
294 dnl Checks for typedefs, structures, and compiler characteristics
295 dnl *************************************************************
305 dnl *************************************************************
306 dnl Check for functions
307 dnl *************************************************************
309 AC_FUNC_CLOSEDIR_VOID
310 AC_FUNC_ERROR_AT_LINE
314 AC_PROG_GCC_TRADITIONAL
316 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
321 AC_FUNC_SELECT_ARGTYPES
325 AC_CHECK_FUNCS([alarm atexit dup2 fdatasync ftruncate getcwd \
326 gethostbyaddr gethostbyname gethostname getmntent \
327 getnameinfo getrpcbyname \
328 gettimeofday hasmntopt inet_ntoa innetgr memset mkdir pathconf \
329 realpath rmdir select socket strcasecmp strchr strdup \
330 strerror strrchr strtol strtoul sigprocmask])
333 dnl *************************************************************
334 dnl Check for data sizes
335 dnl *************************************************************
336 AC_CHECK_SIZEOF(short)
338 AC_CHECK_SIZEOF(long)
339 AC_CHECK_SIZEOF(size_t)
340 AC_CHECK_SIZEOF(socklen_t)
343 dnl *************************************************************
344 dnl Export some path names to config.h
345 dnl *************************************************************
346 AC_DEFINE_UNQUOTED(NFS_STATEDIR, "$statedir", [This defines the location of the NFS state files. Warning: this must match definitions in config.mk!])
348 if test "x$cross_compiling" = "xno"; then
349 CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-"$CFLAGS"}
350 CXXFLAGS_FOR_BUILD=${CXXFLAGS_FOR_BUILD-"$CXXFLAGS"}
351 CPPFLAGS_FOR_BUILD=${CPPFLAGS_FOR_BUILD-"$CPPFLAGS"}
352 LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD-"$LDFLAGS"}
354 CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-""}
355 CXXFLAGS_FOR_BUILD=${CXXFLAGS_FOR_BUILD-""}
356 CPPFLAGS_FOR_BUILD=${CPPFLAGS_FOR_BUILD-""}
357 LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD-""}
365 AC_SUBST(CFLAGS_FOR_BUILD)
366 AC_SUBST(CXXFLAGS_FOR_BUILD)
367 AC_SUBST(CPPFLAGS_FOR_BUILD)
368 AC_SUBST(LDFLAGS_FOR_BUILD)
370 dnl *************************************************************
371 dnl Set up "global" CFLAGS
372 dnl *************************************************************
373 dnl Use architecture-specific compile flags
374 dnl (We use $host and not $build in case we are cross-compiling)
375 dnl *************************************************************
376 dnl Note: we no longer have arch specific compile flags, but
377 dnl the stub is left here in case they are needed one day.
383 my_am_cflags="-Wall -Wstrict-prototypes $ARCHFLAGS -pipe"
385 AC_SUBST([AM_CFLAGS], ["$my_am_cflags"])
387 # Make sure that $ACLOCAL_FLAGS are used during a rebuild
388 AC_SUBST([ACLOCAL_AMFLAGS], ["-I $ac_macro_dir \$(ACLOCAL_FLAGS)"])
394 support/export/Makefile
395 support/include/nfs/Makefile
396 support/include/rpcsvc/Makefile
397 support/include/sys/fs/Makefile
398 support/include/sys/Makefile
399 support/include/Makefile
400 support/misc/Makefile
403 tools/locktest/Makefile
404 tools/nlmtest/Makefile
405 tools/rpcdebug/Makefile
406 tools/rpcgen/Makefile
408 utils/exportfs/Makefile
410 utils/idmapd/Makefile
412 utils/mountd/Makefile
414 utils/nfsstat/Makefile
415 utils/showmount/Makefile
416 utils/statd/Makefile])