]> git.decadent.org.uk Git - nfs-utils.git/blob - configure.ac
gssd: avoid double-free upon write failure
[nfs-utils.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2 dnl
3 AC_INIT([linux nfs-utils],[1.2.5],[linux-nfs@vger.kernel.org],[nfs-utils])
4 AC_CANONICAL_BUILD([])
5 AC_CANONICAL_HOST([])
6 AC_CONFIG_MACRO_DIR(aclocal)
7 AM_INIT_AUTOMAKE
8 AC_PREREQ(2.59)
9 AC_PREFIX_DEFAULT(/usr)
10 AM_MAINTAINER_MODE
11
12 dnl *************************************************************
13 dnl * Define the set of applicable options
14 dnl *************************************************************
15 AC_ARG_WITH(release,
16         [AC_HELP_STRING([--with-release=XXX], [set release to XXX [1]])],
17         RELEASE=$withval,
18         RELEASE=1)
19         AC_SUBST(RELEASE)
20 AC_ARG_WITH(statedir,
21         [AC_HELP_STRING([--with-statedir=/foo],
22                         [use state dir /foo @<:@default=/var/lib/nfs@:>@])],
23         statedir=$withval,
24         statedir=/var/lib/nfs)
25         AC_SUBST(statedir)
26 AC_ARG_WITH(statdpath,
27         [AC_HELP_STRING([--with-statdpath=/foo @<:@default=/var/lib/nfs@:>@],
28                 [define statd's state dir as /foo instead of the NFS statedir]
29         )],
30         statdpath=$withval,
31         statdpath=$statedir
32         )
33         AC_SUBST(statdpath)
34 AC_ARG_WITH(statduser,
35         [AC_HELP_STRING([--with-statduser=rpcuser],
36                         [statd to run under @<:@rpcuser or nobody@:>@]
37         )],
38         statduser=$withval,
39         if test "x$cross_compiling" = "xno"; then
40                 if grep -s '^rpcuser:' /etc/passwd > /dev/null; then
41                         statduser=rpcuser
42                 else
43                         statduser=nobody
44                 fi
45         else
46                 statduser=nobody
47         fi)
48         AC_SUBST(statduser)
49 AC_ARG_WITH(start-statd,
50         [AC_HELP_STRING([--with-start-statd=scriptname],
51                         [When an nfs filesystems is mounted with locking, run this script]
52         )],
53         startstatd=$withval,
54         startstatd=/usr/sbin/start-statd
55         )
56         AC_SUBST(startstatd)
57         AC_DEFINE_UNQUOTED(START_STATD, "$startstatd", [Define this to a script which can start statd on mount])
58 AC_ARG_ENABLE(nfsv4,
59         [AC_HELP_STRING([--enable-nfsv4],
60                         [enable support for NFSv4 @<:@default=yes@:>@])],
61         enable_nfsv4=$enableval,
62         enable_nfsv4=yes)
63         if test "$enable_nfsv4" = yes; then
64                 IDMAPD=idmapd
65         else
66                 enable_nfsv4=
67                 IDMAPD=
68         fi
69         AC_SUBST(IDMAPD)
70         AC_SUBST(enable_nfsv4)
71         AM_CONDITIONAL(CONFIG_NFSV4, [test "$enable_nfsv4" = "yes"])
72
73 AC_ARG_ENABLE(nfsv41,
74         [AC_HELP_STRING([--enable-nfsv41],
75                         [enable support for NFSv41 @<:@default=yes@:>@])],
76         enable_nfsv41=$enableval,
77         enable_nfsv41=yes)
78         if test "$enable_nfsv41" = yes; then
79                 if test "$enable_nfsv4" != yes; then
80                         AC_MSG_ERROR([NFS v4.1 is enabled but NFS v4 is not. Use --disable-nfsv41])
81                 fi
82                 BLKMAPD=blkmapd
83         else
84                 enable_nfsv41=
85                 BLKMAPD=
86         fi
87         AC_SUBST(enable_nfsv41)
88         AM_CONDITIONAL(CONFIG_NFSV41, [test "$enable_nfsv41" = "yes"])
89
90 AC_ARG_ENABLE(gss,
91         [AC_HELP_STRING([--enable-gss],
92                         [enable support for rpcsec_gss @<:@default=yes@:>@])],
93         enable_gss=$enableval,
94         enable_gss=yes)
95         if test "$enable_gss" = yes; then
96                 GSSD=gssd
97                 SVCGSSD=svcgssd
98         else
99                 enable_gss=
100                 GSSD=
101                 SVCGSSD=
102         fi
103         AC_SUBST(GSSD)
104         AC_SUBST(SVCGSSD)
105         AC_SUBST(enable_gss)
106         AM_CONDITIONAL(CONFIG_GSS, [test "$enable_gss" = "yes"])
107 AC_ARG_ENABLE(kprefix,
108         [AC_HELP_STRING([--enable-kprefix], [install progs as rpc.knfsd etc])],
109         test "$enableval" = "yes" && kprefix=k,
110         kprefix=)
111         AC_SUBST(kprefix)
112 AC_ARG_WITH(rpcgen,
113         [AC_HELP_STRING([--with-rpcgen=internal], [use internal rpcgen instead of system one])],
114         rpcgen_path=$withval,
115         rpcgen_path=yes )
116         RPCGEN_PATH=
117         if test "$rpcgen_path" = "yes"; then
118             for p in /usr/local/bin/rpcgen /usr/bin/rpcgen /bin/rpcgen
119             do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
120         elif test "$rpcgen_path" != "internal"; then
121             RPCGEN_PATH=$rpcgen_path
122         fi
123         AC_SUBST(RPCGEN_PATH)
124         AM_CONDITIONAL(CONFIG_RPCGEN, [test "$RPCGEN_PATH" = ""])
125 AC_ARG_ENABLE(uuid,
126         [AC_HELP_STRING([--disable-uuid], [Exclude uuid support to avoid buggy libblkid])],
127         if test "$enableval" = "yes" ; then choose_blkid=yes; else choose_blkid=no; fi,
128         choose_blkid=default)
129 AC_ARG_ENABLE(mount,
130         [AC_HELP_STRING([--enable-mount],
131                         [Create mount.nfs and do not use the util-linux mount(8) functionality. @<:@default=yes@:>@])],
132         enable_mount=$enableval,
133         enable_mount=yes)
134         AM_CONDITIONAL(CONFIG_MOUNT, [test "$enable_mount" = "yes"])
135
136 if test "$enable_mount" = yes; then
137         AC_ARG_ENABLE(libmount-mount,
138                 [AC_HELP_STRING([--enable-libmount-mount],
139                                 [Link mount.nfs with libmount (EXPERIMENTAL)])],
140                 enable_libmount=$enableval,
141                 enable_libmount=no)
142 fi
143
144 AC_ARG_ENABLE(tirpc,
145         [AC_HELP_STRING([--enable-tirpc],
146                         [enable use of TI-RPC @<:@default=yes@:>@])],
147         enable_tirpc=$enableval,
148         enable_tirpc='')
149 AC_ARG_ENABLE(ipv6,
150         [AC_HELP_STRING([--enable-ipv6],
151                         [enable support for IPv6 @<:@default=no@:>@])],
152         enable_ipv6=$enableval,
153         enable_ipv6=no)
154         if test "$enable_ipv6" = yes; then
155                 AC_DEFINE(IPV6_SUPPORTED, 1, [Define this if you want IPv6 support compiled in])
156         else
157                 enable_ipv6=
158         fi
159         AC_SUBST(enable_ipv6)
160         AM_CONDITIONAL(CONFIG_IPV6, [test "$enable_ipv6" = "yes"])
161
162 if test "$enable_mount" = yes; then
163         AC_ARG_ENABLE(mountconfig,
164         [AC_HELP_STRING([--enable-mountconfig],
165                         [enable mount to use a configuration file])],
166         mountconfig=$enableval,
167         mountconfig=no)
168         if test "$enable_mountconfig" = yes; then
169                 AC_DEFINE(MOUNT_CONFIG, 1, 
170                         [Define this if you want mount to read a configuration file])
171                 AC_ARG_WITH(mountfile,
172                         [AC_HELP_STRING([--with-mountfile=filename],
173                         [Using filename as the NFS mount options file [/etc/nfsmounts.conf]]
174                         )],
175                 mountfile=$withval,
176                 mountfile=/etc/nfsmount.conf)
177                 AC_SUBST(mountfile)
178                 AC_DEFINE_UNQUOTED(MOUNTOPTS_CONFFILE, "$mountfile", 
179                         [This defines the location of the NFS mount configuration file])
180         else
181                 enable_mountconfig=
182         fi
183         AC_SUBST(enable_mountconfig)
184         AM_CONDITIONAL(MOUNT_CONFIG, [test "$enable_mountconfig" = "yes"])
185 else
186         AM_CONDITIONAL(MOUNT_CONFIG, [test "$enable_mount" = "yes"])
187 fi
188
189 dnl Check for TI-RPC library and headers
190 AC_LIBTIRPC
191
192 dnl Check for -lcap
193 AC_LIBCAP
194
195 # Check whether user wants TCP wrappers support
196 AC_TCP_WRAPPERS
197
198 # Arrange for large-file support
199 AC_SYS_LARGEFILE
200
201 AC_CONFIG_SRCDIR([support/include/config.h.in])
202 AC_CONFIG_HEADERS([support/include/config.h])
203
204 # Checks for programs.
205 AC_PROG_CXX
206 AC_PROG_CC
207 AC_PROG_CPP
208 AC_PROG_INSTALL
209 AC_PROG_LN_S
210 AC_PROG_MAKE_SET
211 AC_PROG_LIBTOOL
212 AM_PROG_CC_C_O
213
214 if test "x$cross_compiling" = "xno"; then
215         CC_FOR_BUILD=${CC_FOR_BUILD-${CC-gcc}}
216 else
217         CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
218 fi
219
220 AC_SUBST(CC_FOR_BUILD)
221
222 AC_CHECK_TOOL(AR, ar)
223 AC_CHECK_TOOL(LD, ld)
224
225 AC_HEADER_STDC([])
226 AC_GNULIBC
227 AC_BSD_SIGNALS
228
229 dnl *************************************************************
230 dnl * Check for required libraries
231 dnl *************************************************************
232
233 AC_CHECK_FUNC([gethostbyname], ,
234               [AC_CHECK_LIB([nsl], [gethostbyname], [LIBNSL="-lnsl"])])
235 AC_SUBST(LIBNSL)
236
237 AC_CHECK_FUNC([connect], ,
238               [AC_CHECK_LIB([socket], [connect], [LIBSOCKET="-lsocket"],
239                     [AC_MSG_ERROR([Function 'socket' not found.])], [$LIBNSL])])
240
241 AC_CHECK_FUNC([getaddrinfo], ,
242               [AC_MSG_ERROR([Function 'getaddrinfo' not found.])])
243
244 AC_CHECK_FUNC([getrpcbynumber], ,
245               [AC_MSG_ERROR([Function 'getrpcbynumber' not found.])])
246
247 AC_CHECK_FUNC([getservbyname], ,
248               [AC_MSG_ERROR([Function 'getservbyname' not found.])])
249
250 AC_CHECK_LIB([crypt], [crypt], [LIBCRYPT="-lcrypt"])
251
252 if test "$enable_nfsv4" = yes; then
253   dnl check for libevent libraries and headers
254   AC_LIBEVENT
255
256   dnl check for nfsidmap libraries and headers
257   AC_LIBNFSIDMAP
258
259   dnl check for the keyutils libraries and headers
260   AC_KEYUTILS
261
262   dnl librpcsecgss already has a dependency on libgssapi,
263   dnl but we need to make sure we get the right version
264   if test "$enable_gss" = yes; then
265     AC_RPCSEC_VERSION
266   fi
267 fi
268
269 if test "$enable_nfsv41" = yes; then
270   AC_CHECK_LIB([devmapper], [dm_task_create], [LIBDEVMAPPER="-ldevmapper"], AC_MSG_ERROR([libdevmapper needed]))
271   AC_CHECK_HEADER(libdevmapper.h, , AC_MSG_ERROR([Cannot find devmapper header file libdevmapper.h]))
272 fi
273
274 dnl enable nfsidmap when its support by libnfsidmap
275 AM_CONDITIONAL(CONFIG_NFSIDMAP, [test "$ac_cv_header_keyutils_h$ac_cv_lib_nfsidmap_nfs4_owner_to_uid" = "yesyes"])
276
277
278 if test "$knfsd_cv_glibc2" = no; then
279     AC_CHECK_LIB(bsd, daemon, [LIBBSD="-lbsd"])
280 fi
281
282 if test "$choose_blkid" != no; then 
283    AC_CHECK_LIB(blkid, blkid_get_library_version, [LIBBLKID="-lblkid"], AC_MSG_ERROR([libblkid needed]))
284    AC_CHECK_HEADER(blkid/blkid.h, , AC_MSG_ERROR([Cannot find libblkid header file blkid/blkid.h]))
285    AC_BLKID_VERS
286    if test $choose_blkid = yes; then
287       use_blkid=1
288       test $libblkid_cv_is_recent = no && AC_MSG_WARN([libblkid is old and may cause mountd to leak memory])
289    else
290       if test $libblkid_cv_is_recent = yes
291       then use_blkid=1
292       else use_blkid=0
293            AC_MSG_WARN([uuid support disabled as libblkid is too old])
294       fi
295     fi
296     AC_DEFINE_UNQUOTED(USE_BLKID, $use_blkid, [Define if you want to use blkid to find uuid of filesystems])
297 fi
298 AC_SUBST(LIBSOCKET)
299 AC_SUBST(LIBCRYPT)
300 AC_SUBST(LIBBSD)
301 AC_SUBST(LIBBLKID)
302
303 if test "$enable_libmount" != no; then
304    AC_CHECK_LIB(mount, mnt_context_do_mount, [LIBMOUNT="-lmount"], AC_MSG_ERROR([libmount needed]))
305    AC_CHECK_HEADER(libmount/libmount.h, , AC_MSG_ERROR([Cannot find libmount header file libmount/libmount.h]))
306 fi
307 AM_CONDITIONAL(CONFIG_LIBMOUNT, [test "$enable_libmount" = "yes"])
308 AC_SUBST(LIBMOUNT)
309
310 if test "$enable_gss" = yes; then
311   dnl 'gss' requires getnameinfo - at least for gssd_proc.c
312   AC_CHECK_FUNC([getnameinfo], , [AC_MSG_ERROR([GSSAPI support requires 'getnameinfo' function])])
313
314   dnl 'gss' also depends on nfsidmap.h - at least for svcgssd_proc.c
315   AC_LIBNFSIDMAP
316
317   AC_CHECK_HEADERS([spkm3.h], ,
318                    [AC_MSG_WARN([Could not locate SPKM3 header; will not have SPKM3 support])])
319
320   dnl Check for Kerberos V5
321   AC_KERBEROS_V5
322
323   dnl Invoked after AC_KERBEROS_V5; AC_LIBRPCSECGSS needs to have KRBLIBS set
324   AC_LIBRPCSECGSS
325
326 fi
327
328 dnl Check for IPv6 support
329 AC_IPV6
330
331 dnl *************************************************************
332 dnl Check for headers
333 dnl *************************************************************
334 AC_CHECK_HEADERS([arpa/inet.h fcntl.h libintl.h limits.h \
335                  malloc.h memory.h netdb.h netinet/in.h paths.h \
336                  stdlib.h string.h sys/file.h sys/ioctl.h sys/mount.h \
337                  sys/param.h sys/socket.h sys/time.h sys/vfs.h \
338                  syslog.h unistd.h com_err.h et/com_err.h \
339                  ifaddrs.h])
340
341 dnl *************************************************************
342 dnl Checks for typedefs, structures, and compiler characteristics
343 dnl *************************************************************
344 AC_C_CONST
345 AC_TYPE_UID_T
346 AC_C_INLINE
347 AC_TYPE_OFF_T
348 AC_TYPE_PID_T
349 AC_TYPE_SIZE_T
350 AC_HEADER_TIME
351 AC_STRUCT_TM
352
353 dnl *************************************************************
354 dnl Check for functions
355 dnl *************************************************************
356 AC_FUNC_ALLOCA
357 AC_FUNC_CLOSEDIR_VOID
358 AC_FUNC_ERROR_AT_LINE
359 AC_FUNC_FORK
360 AC_FUNC_GETGROUPS
361 AC_FUNC_GETMNTENT
362 AC_PROG_GCC_TRADITIONAL
363 AC_FUNC_LSTAT
364 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
365 AC_HEADER_MAJOR
366 #AC_FUNC_MALLOC
367 AC_FUNC_MEMCMP
368 #AC_FUNC_REALLOC
369 AC_FUNC_SELECT_ARGTYPES
370 AC_TYPE_SIGNAL
371 AC_FUNC_STAT
372 AC_FUNC_VPRINTF
373 AC_CHECK_FUNCS([alarm atexit dup2 fdatasync ftruncate getcwd \
374                gethostbyaddr gethostbyname gethostname getmntent \
375                getnameinfo getrpcbyname getifaddrs \
376                gettimeofday hasmntopt inet_ntoa innetgr memset mkdir pathconf \
377                realpath rmdir select socket strcasecmp strchr strdup \
378                strerror strrchr strtol strtoul sigprocmask])
379
380
381 dnl *************************************************************
382 dnl Check for data sizes
383 dnl *************************************************************
384 AC_CHECK_SIZEOF(short)
385 AC_CHECK_SIZEOF(int)
386 AC_CHECK_SIZEOF(long)
387 AC_CHECK_SIZEOF(size_t)
388 AC_CHECK_SIZEOF(socklen_t)
389
390
391 dnl *************************************************************
392 dnl Export some path names to config.h
393 dnl *************************************************************
394 AC_DEFINE_UNQUOTED(NFS_STATEDIR, "$statedir", [This defines the location of the NFS state files. Warning: this must match definitions in config.mk!])
395 AC_DEFINE_UNQUOTED(NSM_DEFAULT_STATEDIR, "$statdpath", [Define this to the pathname where statd keeps its state file])
396
397 if test "x$cross_compiling" = "xno"; then
398         CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-"$CFLAGS"}
399         CXXFLAGS_FOR_BUILD=${CXXFLAGS_FOR_BUILD-"$CXXFLAGS"}
400         CPPFLAGS_FOR_BUILD=${CPPFLAGS_FOR_BUILD-"$CPPFLAGS"}
401         LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD-"$LDFLAGS"}
402 else
403         CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-""}
404         CXXFLAGS_FOR_BUILD=${CXXFLAGS_FOR_BUILD-""}
405         CPPFLAGS_FOR_BUILD=${CPPFLAGS_FOR_BUILD-""}
406         LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD-""}
407 fi
408
409 AC_SUBST(CFLAGS)
410 AC_SUBST(CXXFLAGS)
411 AC_SUBST(CPPFLAGS)
412 AC_SUBST(LDFLAGS)
413
414 AC_SUBST(CFLAGS_FOR_BUILD)
415 AC_SUBST(CXXFLAGS_FOR_BUILD)
416 AC_SUBST(CPPFLAGS_FOR_BUILD)
417 AC_SUBST(LDFLAGS_FOR_BUILD)
418
419 dnl *************************************************************
420 dnl Set up "global" CFLAGS
421 dnl *************************************************************
422 dnl Use architecture-specific compile flags
423 dnl (We use $host and not $build in case we are cross-compiling)
424 dnl *************************************************************
425 dnl Note: we no longer have arch specific compile flags, but 
426 dnl the stub is left here in case they are needed one day.
427 case $host in
428   *)
429     ARCHFLAGS="" ;;
430 esac
431
432 my_am_cflags="-Wall -Wextra -Wstrict-prototypes $ARCHFLAGS -pipe"
433
434 AC_SUBST([AM_CFLAGS], ["$my_am_cflags"])
435
436 # Make sure that $ACLOCAL_FLAGS are used during a rebuild
437 AC_SUBST([ACLOCAL_AMFLAGS], ["-I $ac_macro_dir \$(ACLOCAL_FLAGS)"])
438
439 AC_CONFIG_FILES([
440         Makefile
441         linux-nfs/Makefile
442         support/Makefile
443         support/export/Makefile
444         support/include/nfs/Makefile
445         support/include/rpcsvc/Makefile
446         support/include/sys/fs/Makefile
447         support/include/sys/Makefile
448         support/include/Makefile
449         support/misc/Makefile
450         support/nfs/Makefile
451         support/nsm/Makefile
452         tools/Makefile
453         tools/locktest/Makefile
454         tools/nlmtest/Makefile
455         tools/rpcdebug/Makefile
456         tools/rpcgen/Makefile
457         tools/mountstats/Makefile
458         tools/nfs-iostat/Makefile
459         utils/Makefile
460         utils/blkmapd/Makefile
461         utils/exportfs/Makefile
462         utils/gssd/Makefile
463         utils/idmapd/Makefile
464         utils/mount/Makefile
465         utils/mountd/Makefile
466         utils/nfsd/Makefile
467         utils/nfsstat/Makefile
468         utils/nfsidmap/Makefile
469         utils/showmount/Makefile
470         utils/statd/Makefile
471         tests/Makefile
472         tests/nsm_client/Makefile])
473 AC_OUTPUT
474