]> git.decadent.org.uk Git - nfs-utils.git/blob - configure.in
7cec0020cb60b6085c84aafa780403c2206c1d13
[nfs-utils.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 dnl
3 AC_INIT([linux nfs-utils],[1.0.10],[nfs@lists.sf.net],[nfs-utils])
4 AC_CANONICAL_BUILD([])
5 AC_CANONICAL_HOST([])
6 AC_CONFIG_SRCDIR(tools/getiversion/getiversion.c)
7 AC_CONFIG_MACRO_DIR(aclocal)
8 AM_INIT_AUTOMAKE
9 AC_PREREQ(2.59)
10 AC_PREFIX_DEFAULT(/usr)
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         [  --with-statedir=/foo    use state dir /foo [/var/lib/nfs]],
22         statedir=$withval,
23         statedir=/var/lib/nfs)
24         AC_SUBST(statedir)
25 AC_ARG_WITH(statduser,
26         [AC_HELP_STRING([--with-statduser=rpcuser],
27                         [statd to run under @<:@rpcuser or nobody@:>@]
28         )],
29         statduser=$withval,
30         if test "x$cross_compiling" = "xno"; then
31                 if grep -s '^rpcuser:' /etc/passwd > /dev/null; then
32                         statduser=rpcuser
33                 else
34                         statduser=nobody
35                 fi
36         else
37                 statduser=nobody
38         fi)
39         AC_SUBST(statduser)
40 AC_ARG_ENABLE(nfsv3,
41         [AC_HELP_STRING([--enable-nfsv3],
42                         [enable support for NFSv3 @<:@default=yes@:>@])],
43         enable_nfsv3=$enableval,
44         enable_nfsv3=yes)
45         if test "$enable_nfsv3" = yes; then
46                 AC_DEFINE(NFS3_SUPPORTED, 1, [Define this if you want NFSv3 support compiled in])
47         else
48                 enable_nfsv3=
49         fi
50         AC_SUBST(enable_nfsv3)
51 AC_ARG_ENABLE(nfsv4,
52         [AC_HELP_STRING([--enable-nfsv4],
53                         [enable support for NFSv4 @<:@default=yes@:>@])],
54         enable_nfsv4=$enableval,
55         enable_nfsv4=yes)
56         if test "$enable_nfsv4" = yes; then
57                 AC_DEFINE(NFS4_SUPPORTED, 1, [Define this if you want NFSv4 support compiled in])
58                 IDMAPD=idmapd
59         else
60                 enable_nfsv4=
61                 IDMAPD=
62         fi
63         AC_SUBST(IDMAPD)
64         AC_SUBST(enable_nfsv4)
65         AM_CONDITIONAL(CONFIG_NFSV4, [test "$enable_nfsv4" = "yes"])
66 AC_ARG_ENABLE(gss,
67         [AC_HELP_STRING([--enable-gss],
68                         [enable support for rpcsec_gss @<:@default=yes@:>@])],
69         enable_gss=$enableval,
70         enable_gss=yes)
71         if test "$enable_gss" = yes; then
72                 AC_DEFINE(GSS_SUPPORTED, 1, [Define this if you want rpcsec_gss support compiled in])
73                 GSSD=gssd
74                 SVCGSSD=svcgssd
75         else
76                 enable_gss=
77                 GSSD=
78                 SVCGSSD=
79         fi
80         AC_SUBST(GSSD)
81         AC_SUBST(SVCGSSD)
82         AC_SUBST(enable_gss)
83         AM_CONDITIONAL(CONFIG_GSS, [test "$enable_gss" = "yes"])
84 AC_ARG_ENABLE(kprefix,
85         [AC_HELP_STRING([--enable-kprefix], [install progs as rpc.knfsd etc])],
86         test "$enableval" = "yes" && kprefix=k,
87         kprefix=)
88         AC_SUBST(kprefix)
89 AC_ARG_ENABLE(secure-statd,
90         [AC_HELP_STRING([--enable-secure-statd],
91                         [Only lockd can use statd (security)])],
92         test "$enableval" = "yes" && secure_statd=yes,
93         secure_statd=no)
94         if test "$secure_statd" = yes; then
95                 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.])
96         fi
97         AC_SUBST(secure_statd)
98 AC_ARG_ENABLE(rquotad,
99         [AC_HELP_STRING([--enable-rquotad],
100                         [enable rquotad @<:@default=yes@:>@])],
101         enable_rquotad=$enableval,
102         enable_rquotad=yes)
103         if test "$enable_rquotad" = yes; then
104                 RQUOTAD=rquotad
105         else
106                 RQUOTAD=
107         fi
108         AM_CONDITIONAL(CONFIG_RQUOTAD, [test "$enable_rquotad" = "yes"])
109
110 AC_ARG_ENABLE(mount,
111         [AC_HELP_STRING([--enable-mount],
112                         [Create mount.nfs and don't use the util-linux mount(8) functionality. @<:@default=no@:>@])],
113         enable_mount=$enableval,
114         enable_mount=no)
115         AM_CONDITIONAL(CONFIG_MOUNT, [test "$enable_mount" = "yes"])
116
117 # Check whether user wants TCP wrappers support
118 AC_TCP_WRAPPERS
119
120 AC_CONFIG_SRCDIR([support/include/config.h.in])
121 AC_CONFIG_HEADERS([support/include/config.h])
122
123 # Checks for programs.
124 AC_PROG_CXX
125 AC_PROG_CC
126 AC_PROG_CPP
127 AC_PROG_INSTALL
128 AC_PROG_LN_S
129 AC_PROG_MAKE_SET
130 AC_PROG_LIBTOOL
131
132 if test "x$cross_compiling" = "xno"; then
133         CC_FOR_BUILD=${CC_FOR_BUILD-${CC-gcc}}
134 else
135         CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
136 fi
137
138 AC_SUBST(CC_FOR_BUILD)
139
140 AC_CHECK_TOOL(AR, ar)
141 AC_CHECK_TOOL(LD, ld)
142
143 AC_HEADER_STDC([])
144 AC_GNULIBC
145 AC_BSD_SIGNALS
146
147 dnl *************************************************************
148 dnl * Check for required libraries
149 dnl *************************************************************
150 AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl, gethostbyname, [LIBNSL="-lnsl"])])
151 AC_SUBST(LIBNSL)
152
153 AC_CHECK_FUNC(connect, ,
154       AC_CHECK_LIB(socket, connect, [LIBSOCKET="-lsocket"],
155                 AC_MSG_ERROR(Function 'socket' not found.), $LIBNSL))
156
157 AC_CHECK_LIB(crypt, crypt, [LIBCRYPT="-lcrypt"])
158 if test "$enable_nfsv4" = yes; then
159     AC_CHECK_LIB(event, event_dispatch, [libevent=1], AC_MSG_ERROR([libevent needed for nfsv4 support]))
160     AC_CHECK_LIB(nfsidmap, nfs4_init_name_mapping, [libnfsidmap=1], AC_MSG_ERROR([libnfsidmap needed for nfsv4 support]))
161     AC_CHECK_HEADERS(event.h, ,AC_MSG_ERROR([libevent needed for nfsv4 support]))
162     AC_CHECK_HEADERS(nfsidmap.h, ,AC_MSG_ERROR([libnfsidmap needed for nfsv4 support]))
163     dnl librpcsecgss already has a dependency on libgssapi,
164     dnl but we need to make sure we get the right version
165     if test "$enable_gss" = yes; then
166      PKG_CHECK_MODULES(RPCSECGSS, librpcsecgss >= 0.10, ,
167       [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])
168       ]
169      )
170     PKG_CHECK_MODULES(GSSAPI, libgssapi >= 0.9)
171     fi
172
173 fi
174 if test "$knfsd_cv_glibc2" = no; then
175     AC_CHECK_LIB(bsd, daemon, [LIBBSD="-lbsd"])
176 fi
177 AC_SUBST(LIBSOCKET)
178 AC_SUBST(LIBCRYPT)
179 AC_SUBST(LIBBSD)
180
181 if test "$enable_gss" = yes; then
182   dnl 'gss' also depends on nfsidmap.h - at least for svcgssd_proc.c
183   AC_CHECK_HEADERS(nfsidmap.h, ,AC_MSG_ERROR([libnfsidmap needed for gss support]))
184   AC_CHECK_HEADERS(spkm3.h, ,AC_MSG_WARN([could not locate SPKM3 header; will not have SPKM3 support]))
185   dnl the nfs4_set_debug function doesn't appear in all version of the library
186   AC_CHECK_LIB(nfsidmap, nfs4_set_debug,
187                AC_DEFINE(HAVE_NFS4_SET_DEBUG,1,
188                          [Whether nfs4_set_debug() is present in libnfsidmap]),)
189
190   dnl Check for Kerberos V5
191   AC_KERBEROS_V5
192
193   dnl This is not done until here because we need to have KRBLIBS set
194   dnl ("librpcsecgss=1" is so that it doesn't get added to LIBS)
195   AC_CHECK_LIB(rpcsecgss, authgss_create_default, [librpcsecgss=1], AC_MSG_ERROR([librpcsecgss needed for nfsv4 support]), -lgssapi -ldl)
196   AC_CHECK_LIB(rpcsecgss, authgss_set_debug_level,
197                AC_DEFINE(HAVE_AUTHGSS_SET_DEBUG_LEVEL, 1, [Define this if the rpcsec_gss library has the function authgss_set_debug_level]),, -lgssapi -ldl)
198
199 fi
200
201 dnl *************************************************************
202 dnl Check for headers
203 dnl *************************************************************
204 AC_CHECK_HEADERS([arpa/inet.h fcntl.h libintl.h limits.h \
205                  malloc.h memory.h netdb.h netinet/in.h paths.h \
206                  stdlib.h string.h sys/file.h sys/ioctl.h sys/mount.h \
207                  sys/param.h sys/socket.h sys/time.h sys/vfs.h \
208                  syslog.h unistd.h com_err.h et/com_err.h \
209                  ifaddrs.h])
210
211 dnl *************************************************************
212 dnl Checks for typedefs, structures, and compiler characteristics
213 dnl *************************************************************
214 AC_C_CONST
215 AC_TYPE_UID_T
216 AC_C_INLINE
217 AC_TYPE_OFF_T
218 AC_TYPE_PID_T
219 AC_TYPE_SIZE_T
220 AC_HEADER_TIME
221 AC_STRUCT_TM
222
223 dnl *************************************************************
224 dnl Check for functions
225 dnl *************************************************************
226 AC_FUNC_ALLOCA
227 AC_FUNC_CLOSEDIR_VOID
228 AC_FUNC_ERROR_AT_LINE
229 AC_FUNC_FORK
230 AC_FUNC_GETGROUPS
231 AC_FUNC_GETMNTENT
232 AC_PROG_GCC_TRADITIONAL
233 AC_FUNC_LSTAT
234 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
235 AC_HEADER_MAJOR
236 #AC_FUNC_MALLOC
237 AC_FUNC_MEMCMP
238 #AC_FUNC_REALLOC
239 AC_FUNC_SELECT_ARGTYPES
240 AC_TYPE_SIGNAL
241 AC_FUNC_STAT
242 AC_FUNC_VPRINTF
243 AC_CHECK_FUNCS([alarm atexit dup2 fdatasync ftruncate getcwd \
244                gethostbyaddr gethostbyname gethostname getmntent \
245                gettimeofday hasmntopt inet_ntoa innetgr memset mkdir pathconf \
246                realpath rmdir select socket strcasecmp strchr strdup \
247                strerror strrchr strtol strtoul sigprocmask])
248
249
250 dnl *************************************************************
251 dnl Check for data sizes (XXX These should go away with libgssapi pkg-config)
252 dnl *************************************************************
253 AC_CHECK_SIZEOF(short)
254 AC_CHECK_SIZEOF(int)
255 AC_CHECK_SIZEOF(long)
256 AC_CHECK_SIZEOF(size_t)
257 AC_CHECK_SIZEOF(socklen_t)
258
259
260 dnl *************************************************************
261 dnl Export some path names to config.h
262 dnl *************************************************************
263 AC_DEFINE_UNQUOTED(NFS_STATEDIR, "$statedir", [This defines the location of the NFS state files. Warning: this must match definitions in config.mk!])
264
265 if test "x$cross_compiling" = "xno"; then
266         CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-"$CFLAGS"}
267         CXXFLAGS_FOR_BUILD=${CXXFLAGS_FOR_BUILD-"$CXXFLAGS"}
268         CPPFLAGS_FOR_BUILD=${CPPFLAGS_FOR_BUILD-"$CPPFLAGS"}
269         LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD-"$LDFLAGS"}
270 else
271         CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-""}
272         CXXFLAGS_FOR_BUILD=${CXXFLAGS_FOR_BUILD-""}
273         CPPFLAGS_FOR_BUILD=${CPPFLAGS_FOR_BUILD-""}
274         LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD-""}
275 fi
276
277 AC_SUBST(CFLAGS)
278 AC_SUBST(CXXFLAGS)
279 AC_SUBST(CPPFLAGS)
280 AC_SUBST(LDFLAGS)
281
282 AC_SUBST(CFLAGS_FOR_BUILD)
283 AC_SUBST(CXXFLAGS_FOR_BUILD)
284 AC_SUBST(CPPFLAGS_FOR_BUILD)
285 AC_SUBST(LDFLAGS_FOR_BUILD)
286
287 dnl *************************************************************
288 dnl Set up "global" CFLAGS
289 dnl *************************************************************
290 dnl Use architecture-specific compile flags
291 dnl (We use $host and not $build in case we are cross-compiling)
292 dnl *************************************************************
293 case $host in
294   alpha*)
295     ARCHFLAGS="-mno-fp-regs -ffixed-8" ;;
296   *)
297     ARCHFLAGS="" ;;
298 esac
299
300 my_am_cflags="-Wall $ARCHFLAGS -pipe"
301
302 AC_SUBST([AM_CPPFLAGS], ["-I\${top_srcdir}/support/include -D_FILE_OFFSET_BITS=64"])
303 AC_SUBST([AM_CFLAGS], ["$my_am_cflags"])
304
305 # Make sure that $ACLOCAL_FLAGS are used during a rebuild
306 AC_SUBST([ACLOCAL_AMFLAGS], ["-I $ac_macro_dir \$(ACLOCAL_FLAGS)"])
307
308 AC_CONFIG_FILES([
309         Makefile
310         linux-nfs/Makefile
311         support/Makefile
312         support/export/Makefile
313         support/include/nfs/Makefile
314         support/include/rpcsvc/Makefile
315         support/include/sys/fs/Makefile
316         support/include/sys/Makefile
317         support/include/Makefile
318         support/misc/Makefile
319         support/nfs/Makefile
320         tools/Makefile
321         tools/getiversion/Makefile
322         tools/getkversion/Makefile
323         tools/locktest/Makefile
324         tools/nlmtest/Makefile
325         tools/rpcdebug/Makefile
326         tools/rpcgen/Makefile
327         utils/Makefile
328         utils/exportfs/Makefile
329         utils/gssd/Makefile
330         utils/idmapd/Makefile
331         utils/lockd/Makefile
332         utils/mount/Makefile
333         utils/mountd/Makefile
334         utils/nfsd/Makefile
335         utils/nfsstat/Makefile
336         utils/rquotad/Makefile
337         utils/showmount/Makefile
338         utils/statd/Makefile])
339 AC_OUTPUT
340