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
|
dnl Process this file with autoconf to produce a configure script.
dnl
AC_INIT(rules.mk)
AC_PREFIX_DEFAULT(/usr)
# The nfs-utils version
VERSION="1.0.6"
AC_SUBST(VERSION)
dnl *************************************************************
dnl * Define the set of applicable options
dnl *************************************************************
AC_ARG_WITH(release,
[ --with-release=XXX set release to XXX [1]],
RELEASE=$withval,
RELEASE=1)
AC_SUBST(RELEASE)
AC_ARG_WITH(statedir,
[ --with-statedir=/foo use state dir /foo [/var/lib/nfs]],
statedir=$withval,
statedir=/var/lib/nfs)
AC_SUBST(statedir)
AC_ARG_WITH(statduser,
[ --with-statduser=rpcuser user for statd to run under [rpcuser or nobody]],
statduser=$withval,
if grep -s '^rpcuser:' /etc/passwd > /dev/null; then
statduser=rpcuser
else
statduser=nobody
fi)
AC_SUBST(statduser)
AC_ARG_ENABLE(nfsv3,
[ --enable-nfsv3 enable support for NFSv3],
enable_nfsv3=$enableval,
enable_nfsv3=yes)
if test "$enable_nfsv3" = yes; then
AC_DEFINE(NFS3_SUPPORTED)
else
enable_nfsv3=
fi
AC_SUBST(enable_nfsv3)
AC_ARG_ENABLE(kprefix,
[ --enable-kprefix install progs as rpc.knfsd etc],
test "$enableval" = "yes" && kprefix=k,
kprefix=)
AC_SUBST(kprefix)
AC_ARG_ENABLE(secure-statd,
[ --enable-secure-statd Only lockd can use statd (security)],
test "$enableval" = "yes" && secure_statd=yes,
secure_statd=no)
if test "$secure_statd" = yes; then
AC_DEFINE(RESTRICTED_STATD)
fi
AC_SUBST(secure_statd)
AC_ARG_ENABLE(rquotad,
[ --enable-rquotad enable rquotad],
enable_rquotad=$enableval,
enable_rquotad=yes)
if test "$enable_rquotad" = yes; then
RQUOTAD=rquotad
else
RQUOTAD=
fi
AC_SUBST(RQUOTAD)
dnl AC_ARG_ENABLE(frob, enable frobnicator,, enable_frob=test)
AC_CONFIG_HEADER(support/include/config.h)
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
test "${CC_FOR_BUILD+set}" = set || CC_FOR_BUILD="$CC"
AC_SUBST(CC_FOR_BUILD)
AC_CHECK_TOOL(RANLIB, ranlib, :)
AC_CHECK_TOOL(AR, ar)
AC_CHECK_TOOL(LD, ld)
AC_STDC_HEADERS
AC_GNULIBC
dnl AC_LN_SF
dnl AC_BSD_SIGNALS
dnl *************************************************************
dnl * Check for required librarues
dnl *************************************************************
AC_CHECK_LIB(socket, main, [LIBSOCKET="-lnsl"])
AC_CHECK_LIB(nsl, main, [LIBNSL="-lnsl"])
AC_CHECK_LIB(crypt, crypt, [LIBCRYPT="-lcrypt"])
if test "$knfsd_cv_glibc2" = no; then
AC_CHECK_LIB(bsd, daemon, [LIBBSD="-lbsd"])
fi
AC_SUBST(LIBSOCKET)
AC_SUBST(LIBNSL)
AC_SUBST(LIBCRYPT)
AC_SUBST(LIBBSD)
AC_TCP_WRAPPER
AC_SUBST(LIBWRAP)
dnl *************************************************************
dnl Check for headers
dnl *************************************************************
dnl AC_HAVE_HEADERS(string.h)
dnl *************************************************************
dnl Check for functions
dnl *************************************************************
AC_HAVE_FUNCS(innetgr)
dnl *************************************************************
dnl Export some path names to config.h
dnl *************************************************************
AC_DEFINE_UNQUOTED(NFS_STATEDIR, "$statedir")
AC_SUBST(LDFLAGS)
AC_SUBST(CXXFLAGS)
AC_SUBST(CFLAGS)
AC_OUTPUT(config.mk nfs-utils.spec utils/Makefile)
|