Add a flag --enable-tirpc to the configure script
[deb_libnfs.git] / configure.ac
CommitLineData
84004dbf 1AC_PREREQ(2.50)
2842ff15 2AC_INIT([libnfs], [0.0.0])
6c437065
TN
3AC_CONFIG_HEADERS([config.h])
4AM_INIT_AUTOMAKE([foreign])
5AC_CANONICAL_HOST
84004dbf 6
6c437065
TN
7# Work around stupid autoconf default cflags. pt 1
8SAVE_CFLAGS="x${CFLAGS}"
84004dbf 9
6c437065
TN
10AC_PROG_CC
11AC_PROG_LIBTOOL
84004dbf 12
6c437065 13AM_PROG_CC_C_O
84004dbf 14
6c437065
TN
15# Work around stupid autoconf default cflags. pt 2
16if test "$SAVE_CFLAGS" = "x"; then
17 CFLAGS=""
84004dbf 18fi
e644e700 19
6c437065
TN
20AC_CHECK_PROG([HAVE_RPCGEN], [rpcgen], [yes], [no])
21if test x$HAVE_RPCGEN != xyes; then
22 AC_MSG_ERROR([Can not find required program])
d20a6d6b
SR
23fi
24
6c437065
TN
25#option: examples
26AC_ARG_ENABLE([examples],
27 [AC_HELP_STRING([--enable-examples],
28 [Build example programs])],
29 [ENABLE_EXAMPLES=$enableval],
30 [ENABLE_EXAMPLES="no"])
13283beb
TN
31
32if test x$ENABLE_EXAMPLES = xyes; then
33 MAYBE_EXAMPLES="examples"
34fi
6c437065
TN
35AC_SUBST(MAYBE_EXAMPLES)
36
fc4bdc22
RS
37AC_ARG_ENABLE(tirpc,
38 [AC_HELP_STRING([--enable-tirpc],
39 [enable use of TI-RPC @<:@default=no@:>@])],
40 enable_tirpc=$enableval,
41 enable_tirpc='no')
42
fc01d2a9
TN
43case $host in
44 *darwin*)
45 RPCGENFLAGS=-DU_INT64_PLATTFORM_TYPE="u_int64_t"
46 ;;
47 *solaris*)
48 AC_CHECK_HEADERS([sys/filio.h])
4a75cfa2
TN
49 if test x$ENABLE_EXAMPLES = xyes; then
50 AC_CHECK_LIB([socket], [main], , [AC_MSG_ERROR([Can not find required library])])
51 AC_CHECK_LIB([nsl], [main], , [AC_MSG_ERROR([Can not find required library])])
52 fi
fc01d2a9
TN
53 ;;
54 *)
55 ;;
56esac
57
58AC_SUBST(RPCGENFLAGS)
59
f7f931c7
RS
60# check for SA_LEN
61dnl Check if sockaddr data structure includes a "sa_len"
62AC_CHECK_MEMBER([struct sockaddr.sa_len],
63 [ AC_DEFINE(HAVE_SOCKADDR_LEN,1,[Whether sockaddr struct has sa_len]) ],
64 [],
65 [
66#include <sys/types.h>
67#include <sys/socket.h>
68])
69
fc4bdc22
RS
70echo "Use TI-RPC: $enable_tirpc"
71if test "$enable_tirpc" = "yes"; then
72 CFLAGS="${CFLAGS} -I /usr/include/tirpc"
73 LDFLAGS="${LDFLAGS} -ltirpc"
74fi
75
6c437065
TN
76#output
77AC_CONFIG_FILES([Makefile]
78 [include/Makefile]
79 [lib/Makefile]
80 [mount/Makefile]
81 [nfs/Makefile]
82 [portmap/Makefile]
83 [rquota/Makefile]
84 [examples/Makefile]
85 )
86
87AC_OUTPUT