~ubuntu-branches/debian/stretch/nfs-utils/stretch

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar, Anibal Monsalve Salazar, Ben Hutchings
  • Date: 2010-04-06 16:11:22 UTC
  • mfrom: (1.2.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20100406161122-x7erw0q8xiitoyp6
Tags: 1:1.2.2-1
[ Anibal Monsalve Salazar ]
* New upstream release 
  Build depend on libcap-dev
  Set configure option --enable-nfsv41
* X-ref nfsd({7,8})
  02-524255-manpages.patch by Cyril Brulebois
  Closes: 524255

[ Ben Hutchings ]
* Change maintainer to Debian kernel team; move Aníbal to uploaders and
  add myself to uploaders
* Check for nfsd in /proc/filesystems rather than looking for signs of it in
  /proc/kallsyms (Closes: #563104, #572736)
* Document the -n option to svcgssd, thanks to Alberto Gonzalez Iniesta
  (Closes: #451402, #550270)
* Replace upstream reference in package descriptions with Homepage fields,
  and do not refer to the obsolete CVS repository
* Update policy version to 3.8.4; no changes required
* Override lintian error 'init.d-script-missing-dependency-on-remote_fs';
  the init script does work without /usr mounted

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl Process this file with autoconf to produce a configure script.
2
2
dnl
3
 
AC_INIT([linux nfs-utils],[1.2.1],[linux-nfs@vger.kernel.org],[nfs-utils])
 
3
AC_INIT([linux nfs-utils],[1.2.2],[linux-nfs@vger.kernel.org],[nfs-utils])
4
4
AC_CANONICAL_BUILD([])
5
5
AC_CANONICAL_HOST([])
6
6
AC_CONFIG_MACRO_DIR(aclocal)
72
72
        AC_SUBST(IDMAPD)
73
73
        AC_SUBST(enable_nfsv4)
74
74
        AM_CONDITIONAL(CONFIG_NFSV4, [test "$enable_nfsv4" = "yes"])
 
75
 
 
76
AC_ARG_ENABLE(nfsv41,
 
77
        [AC_HELP_STRING([--enable-nfsv41],
 
78
                        [enable support for NFSv41 @<:@default=no@:>@])],
 
79
        enable_nfsv41=$enableval,
 
80
        enable_nfsv41=no)
 
81
        if test "$enable_nfsv41" = yes; then
 
82
                AC_DEFINE(NFS41_SUPPORTED, 1, [Define this if you want NFSv41 support compiled in])
 
83
        else
 
84
                enable_nfsv4=
 
85
        fi
 
86
        AC_SUBST(enable_nfsv41)
 
87
        AM_CONDITIONAL(CONFIG_NFSV41, [test "$enable_nfsv41" = "yes"])
 
88
 
75
89
AC_ARG_ENABLE(gss,
76
90
        [AC_HELP_STRING([--enable-gss],
77
91
                        [enable support for rpcsec_gss @<:@default=yes@:>@])],
166
180
dnl Check for TI-RPC library and headers
167
181
AC_LIBTIRPC
168
182
 
 
183
dnl Check for -lcap
 
184
AC_LIBCAP
 
185
 
169
186
# Check whether user wants TCP wrappers support
170
187
AC_TCP_WRAPPERS
171
188
 
327
344
AC_FUNC_VPRINTF
328
345
AC_CHECK_FUNCS([alarm atexit dup2 fdatasync ftruncate getcwd \
329
346
               gethostbyaddr gethostbyname gethostname getmntent \
330
 
               getnameinfo getrpcbyname \
 
347
               getnameinfo getrpcbyname getifaddrs \
331
348
               gettimeofday hasmntopt inet_ntoa innetgr memset mkdir pathconf \
332
349
               realpath rmdir select socket strcasecmp strchr strdup \
333
350
               strerror strrchr strtol strtoul sigprocmask])
402
419
        support/include/Makefile
403
420
        support/misc/Makefile
404
421
        support/nfs/Makefile
 
422
        support/nsm/Makefile
405
423
        tools/Makefile
406
424
        tools/locktest/Makefile
407
425
        tools/nlmtest/Makefile
416
434
        utils/nfsd/Makefile
417
435
        utils/nfsstat/Makefile
418
436
        utils/showmount/Makefile
419
 
        utils/statd/Makefile])
 
437
        utils/statd/Makefile
 
438
        tests/Makefile
 
439
        tests/nsm_client/Makefile])
420
440
AC_OUTPUT
421
441