1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT([linux nfs-utils],[1.1.0-rc2],[nfs@lists.sf.net],[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,
98 AC_ARG_ENABLE(secure-statd,
99 [AC_HELP_STRING([--enable-secure-statd],
100 [Only lockd can use statd (security)])],
101 test "$enableval" = "yes" && secure_statd=yes,
103 if test "$secure_statd" = yes; then
104 AC_DEFINE(RESTRICTED_STATD, 1, [Define this if you want to enable various security checks in statd. These checks basically keep anyone but lockd from using this service.])
106 AC_SUBST(secure_statd)
107 AC_ARG_ENABLE(rquotad,
108 [AC_HELP_STRING([--enable-rquotad],
109 [enable rquotad @<:@default=yes@:>@])],
110 enable_rquotad=$enableval,
112 if test "$enable_rquotad" = yes; then
117 AM_CONDITIONAL(CONFIG_RQUOTAD, [test "$enable_rquotad" = "yes"])
119 [AC_HELP_STRING([--with-rpcgen=internal], [use internal rpcgen instead of system one])],
120 rpcgen_path=$withval,
123 if test "$rpcgen_path" == "yes"; then
124 for p in /usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen
125 do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
126 elif test "$rpcgen_path" != "internal"; then
127 RPCGEN_PATH=$rpcgen_path
129 AC_SUBST(RPCGEN_PATH)
130 AM_CONDITIONAL(CONFIG_RPCGEN, [test "$RPCGEN_PATH" == ""])
132 [AC_HELP_STRING([--without-uuid], [Exclude uuid support and so avoid possibly buggy libblkid])],
133 if test "$enableval" = "yes" ; then use_blkid=1; else use_blkid=0; fi,
135 AC_DEFINE_UNQUOTED(USE_BLKID, $use_blkid, [Define if you want to use blkid to find uuid of filesystems])
137 [AC_HELP_STRING([--enable-mount],
138 [Create mount.nfs and don't use the util-linux mount(8) functionality. @<:@default=no@:>@])],
139 enable_mount=$enableval,
141 AM_CONDITIONAL(CONFIG_MOUNT, [test "$enable_mount" = "yes"])
143 # Check whether user wants TCP wrappers support
146 # Arrange for large-file support
149 AC_CONFIG_SRCDIR([support/include/config.h.in])
150 AC_CONFIG_HEADERS([support/include/config.h])
152 # Checks for programs.
162 if test "x$cross_compiling" = "xno"; then
163 CC_FOR_BUILD=${CC_FOR_BUILD-${CC-gcc}}
165 CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
168 AC_SUBST(CC_FOR_BUILD)
170 AC_CHECK_TOOL(AR, ar)
171 AC_CHECK_TOOL(LD, ld)
177 dnl *************************************************************
178 dnl * Check for required libraries
179 dnl *************************************************************
180 AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl, gethostbyname, [LIBNSL="-lnsl"])])
183 AC_CHECK_FUNC(connect, ,
184 AC_CHECK_LIB(socket, connect, [LIBSOCKET="-lsocket"],
185 AC_MSG_ERROR(Function 'socket' not found.), $LIBNSL))
187 AC_CHECK_LIB(crypt, crypt, [LIBCRYPT="-lcrypt"])
188 if test "$enable_nfsv4" = yes; then
189 AC_CHECK_LIB(event, event_dispatch, [libevent=1], AC_MSG_ERROR([libevent needed for nfsv4 support]))
190 AC_CHECK_LIB(nfsidmap, nfs4_init_name_mapping, [libnfsidmap=1], AC_MSG_ERROR([libnfsidmap needed for nfsv4 support]))
191 AC_CHECK_HEADERS(event.h, ,AC_MSG_ERROR([libevent needed for nfsv4 support]))
192 AC_CHECK_HEADERS(nfsidmap.h, ,AC_MSG_ERROR([libnfsidmap needed for nfsv4 support]))
193 dnl librpcsecgss already has a dependency on libgssapi,
194 dnl but we need to make sure we get the right version
195 if test "$enable_gss" = yes; then
196 PKG_CHECK_MODULES(RPCSECGSS, librpcsecgss >= 0.10, ,
197 [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])
200 PKG_CHECK_MODULES(GSSAPI, libgssapi >= 0.11)
204 if test "$knfsd_cv_glibc2" = no; then
205 AC_CHECK_LIB(bsd, daemon, [LIBBSD="-lbsd"])
207 if test "$use_blkid" = 1; then
208 AC_CHECK_LIB(blkid, blkid_get_cache, [LIBBLKID="-lblkid"], AC_MSG_ERROR([libblkid needed]))
209 AC_CHECK_HEADER(blkid/blkid.h, , AC_MSG_ERROR([Cannot file libblkid header file blkid/blkid.h]))
216 if test "$enable_gss" = yes; then
217 dnl 'gss' also depends on nfsidmap.h - at least for svcgssd_proc.c
218 AC_CHECK_HEADERS(nfsidmap.h, ,AC_MSG_ERROR([libnfsidmap needed for gss support]))
219 AC_CHECK_HEADERS(spkm3.h, ,AC_MSG_WARN([could not locate SPKM3 header; will not have SPKM3 support]))
220 dnl the nfs4_set_debug function doesn't appear in all version of the library
221 AC_CHECK_LIB(nfsidmap, nfs4_set_debug,
222 AC_DEFINE(HAVE_NFS4_SET_DEBUG,1,
223 [Whether nfs4_set_debug() is present in libnfsidmap]),)
225 dnl Check for Kerberos V5
228 dnl This is not done until here because we need to have KRBLIBS set
229 dnl ("librpcsecgss=1" is so that it doesn't get added to LIBS)
230 AC_CHECK_LIB(rpcsecgss, authgss_create_default, [librpcsecgss=1], AC_MSG_ERROR([librpcsecgss needed for nfsv4 support]), -lgssapi -ldl)
231 AC_CHECK_LIB(rpcsecgss, authgss_set_debug_level,
232 AC_DEFINE(HAVE_AUTHGSS_SET_DEBUG_LEVEL, 1, [Define this if the rpcsec_gss library has the function authgss_set_debug_level]),, -lgssapi -ldl)
236 dnl *************************************************************
237 dnl Check for headers
238 dnl *************************************************************
239 AC_CHECK_HEADERS([arpa/inet.h fcntl.h libintl.h limits.h \
240 malloc.h memory.h netdb.h netinet/in.h paths.h \
241 stdlib.h string.h sys/file.h sys/ioctl.h sys/mount.h \
242 sys/param.h sys/socket.h sys/time.h sys/vfs.h \
243 syslog.h unistd.h com_err.h et/com_err.h \
246 dnl *************************************************************
247 dnl Checks for typedefs, structures, and compiler characteristics
248 dnl *************************************************************
258 dnl *************************************************************
259 dnl Check for functions
260 dnl *************************************************************
262 AC_FUNC_CLOSEDIR_VOID
263 AC_FUNC_ERROR_AT_LINE
267 AC_PROG_GCC_TRADITIONAL
269 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
274 AC_FUNC_SELECT_ARGTYPES
278 AC_CHECK_FUNCS([alarm atexit dup2 fdatasync ftruncate getcwd \
279 gethostbyaddr gethostbyname gethostname getmntent \
280 gettimeofday hasmntopt inet_ntoa innetgr memset mkdir pathconf \
281 realpath rmdir select socket strcasecmp strchr strdup \
282 strerror strrchr strtol strtoul sigprocmask])
285 dnl *************************************************************
286 dnl Check for data sizes (XXX These should go away with libgssapi pkg-config)
287 dnl *************************************************************
288 AC_CHECK_SIZEOF(short)
290 AC_CHECK_SIZEOF(long)
291 AC_CHECK_SIZEOF(size_t)
292 AC_CHECK_SIZEOF(socklen_t)
295 dnl *************************************************************
296 dnl Export some path names to config.h
297 dnl *************************************************************
298 AC_DEFINE_UNQUOTED(NFS_STATEDIR, "$statedir", [This defines the location of the NFS state files. Warning: this must match definitions in config.mk!])
300 if test "x$cross_compiling" = "xno"; then
301 CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-"$CFLAGS"}
302 CXXFLAGS_FOR_BUILD=${CXXFLAGS_FOR_BUILD-"$CXXFLAGS"}
303 CPPFLAGS_FOR_BUILD=${CPPFLAGS_FOR_BUILD-"$CPPFLAGS"}
304 LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD-"$LDFLAGS"}
306 CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-""}
307 CXXFLAGS_FOR_BUILD=${CXXFLAGS_FOR_BUILD-""}
308 CPPFLAGS_FOR_BUILD=${CPPFLAGS_FOR_BUILD-""}
309 LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD-""}
317 AC_SUBST(CFLAGS_FOR_BUILD)
318 AC_SUBST(CXXFLAGS_FOR_BUILD)
319 AC_SUBST(CPPFLAGS_FOR_BUILD)
320 AC_SUBST(LDFLAGS_FOR_BUILD)
322 dnl *************************************************************
323 dnl Set up "global" CFLAGS
324 dnl *************************************************************
325 dnl Use architecture-specific compile flags
326 dnl (We use $host and not $build in case we are cross-compiling)
327 dnl *************************************************************
330 ARCHFLAGS="-mno-fp-regs -ffixed-8" ;;
335 my_am_cflags="-Wall $ARCHFLAGS -pipe"
337 AC_SUBST([AM_CPPFLAGS], ["-I\${top_srcdir}/support/include"])
338 AC_SUBST([AM_CFLAGS], ["$my_am_cflags"])
340 # Make sure that $ACLOCAL_FLAGS are used during a rebuild
341 AC_SUBST([ACLOCAL_AMFLAGS], ["-I $ac_macro_dir \$(ACLOCAL_FLAGS)"])
347 support/export/Makefile
348 support/include/nfs/Makefile
349 support/include/rpcsvc/Makefile
350 support/include/sys/fs/Makefile
351 support/include/sys/Makefile
352 support/include/Makefile
353 support/misc/Makefile
356 tools/locktest/Makefile
357 tools/nlmtest/Makefile
358 tools/rpcdebug/Makefile
359 tools/rpcgen/Makefile
361 utils/exportfs/Makefile
363 utils/idmapd/Makefile
365 utils/mountd/Makefile
367 utils/nfsstat/Makefile
368 utils/rquotad/Makefile
369 utils/showmount/Makefile
370 utils/statd/Makefile])