Merge pull request #89 from rosslagerwall/create-trunc
[deb_libnfs.git] / configure.ac
CommitLineData
84004dbf 1AC_PREREQ(2.50)
b9e5039f 2AC_INIT([libnfs], [1.9.5], [ronniesahlberg@gmail.com])
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
6a14f02f 14PKG_PROG_PKG_CONFIG
84004dbf 15
6c437065
TN
16# Work around stupid autoconf default cflags. pt 2
17if test "$SAVE_CFLAGS" = "x"; then
18 CFLAGS=""
84004dbf 19fi
e644e700 20
71f48059
RS
21# We always want 64 bit file offsets
22CFLAGS="${CFLAGS} -D_FILE_OFFSET_BITS=64"
23
6c437065
TN
24#option: examples
25AC_ARG_ENABLE([examples],
26 [AC_HELP_STRING([--enable-examples],
27 [Build example programs])],
28 [ENABLE_EXAMPLES=$enableval],
29 [ENABLE_EXAMPLES="no"])
13283beb 30
d70bb152 31# We need popt to compile the examples
13283beb 32if test x$ENABLE_EXAMPLES = xyes; then
d70bb152
RS
33AC_MSG_CHECKING(whether libpopt is available)
34ac_save_CFLAGS="$CFLAGS"
35ac_save_LIBS="$LIBS"
36CFLAGS="$CFLAGS $GLIB_CFLAGS"
37LIBS="$GLIB_LIBS $LIBS -lpopt"
38AC_TRY_RUN([
39/*
40 * Just see if we can compile/link with popt
41 */
42#include <popt.h>
43
44int main(int argc, const char *argv[])
45{
46 struct poptOption popt_options[] = {
47 POPT_TABLEEND
48 };
49 poptGetContext(argv[0], argc, argv, popt_options, POPT_CONTEXT_KEEP_FIRST);
50
51 return 0;
52}
53], ac_cv_have_popt=yes, ac_cv_have_popt=no,
54 [echo $ac_n "compile with POPT. Assuming OK... $ac_c"
55 ac_cv_have_popt=yes])
56CFLAGS="$ac_save_CFLAGS"
57LIBS="$ac_save_LIBS"
58if test "$ac_cv_have_popt" = yes ; then
59 AC_MSG_RESULT(yes)
13283beb 60 MAYBE_EXAMPLES="examples"
d70bb152
RS
61else
62 AC_MSG_RESULT(no)
63 AC_MSG_NOTICE(You need libpopt to compile the sample libnfs clients.)
64 AC_MSG_NOTICE(Only the library will be compiled and installed.)
65fi
13283beb 66fi
d70bb152 67
6c437065
TN
68AC_SUBST(MAYBE_EXAMPLES)
69
d70bb152 70
fc01d2a9 71case $host in
fc01d2a9
TN
72 *solaris*)
73 AC_CHECK_HEADERS([sys/filio.h])
647d2ea1 74 AC_CHECK_HEADERS([sys/sockio.h])
4a75cfa2
TN
75 if test x$ENABLE_EXAMPLES = xyes; then
76 AC_CHECK_LIB([socket], [main], , [AC_MSG_ERROR([Can not find required library])])
77 AC_CHECK_LIB([nsl], [main], , [AC_MSG_ERROR([Can not find required library])])
78 fi
fc01d2a9
TN
79 ;;
80 *)
81 ;;
82esac
83
d7c6e9aa
RS
84# check for poll.h
85dnl Check for poll.h
86AC_CHECK_HEADERS([poll.h])
87
00748f36
RS
88# check for unistd.h
89dnl Check for unistd.h
90AC_CHECK_HEADERS([unistd.h])
91
bff8fe46
RS
92# check for netdb.h
93dnl Check for netdb.h
94AC_CHECK_HEADERS([netdb.h])
95
96# check for utime.h
97dnl Check for utime.h
98AC_CHECK_HEADERS([utime.h])
99
100# check for net/if.h
101dnl Check for net/if.h
102AC_CHECK_HEADERS([net/if.h])
103
23844203
RS
104# check for sys/time.h
105dnl Check for sys/time.h
106AC_CHECK_HEADERS([sys/time.h])
107
00748f36
RS
108# check for sys/ioctl.h
109dnl Check for sys/ioctl.h
110AC_CHECK_HEADERS([sys/ioctl.h])
111
108c622a
RS
112# check for sys/vfs.h
113dnl Check for sys/vfs.h
114AC_CHECK_HEADERS([sys/vfs.h])
115
116# check for sys/statvfs.h
117dnl Check for sys/statvfs.h
118AC_CHECK_HEADERS([sys/statvfs.h])
119
7057e733
RS
120# check for sys/socket.h
121dnl Check for sys/socket.h
122AC_CHECK_HEADERS([sys/socket.h])
123
1c8b4547
PL
124# check for netinet/tcp.h
125dnl Check for netinet/tcp.h
126AC_CHECK_HEADERS([netinet/tcp.h])
127
72897005
RS
128# check for netinet/in.h
129dnl Check for netinet/in.h
130AC_CHECK_HEADERS([netinet/in.h])
131
c022471e
RS
132# check for arpa/inet.h
133dnl Check for arpa/inet.h
134AC_CHECK_HEADERS([arpa/inet.h])
135
f7f931c7
RS
136# check for SA_LEN
137dnl Check if sockaddr data structure includes a "sa_len"
138AC_CHECK_MEMBER([struct sockaddr.sa_len],
139 [ AC_DEFINE(HAVE_SOCKADDR_LEN,1,[Whether sockaddr struct has sa_len]) ],
140 [],
141 [
142#include <sys/types.h>
143#include <sys/socket.h>
144])
145
d7c6e9aa
RS
146# check for sockaddr_storage
147dnl Check if sockaddr structure includes a "ss_family"
148AC_CHECK_MEMBER([struct sockaddr_storage.ss_family],
149 [ AC_DEFINE(HAVE_SOCKADDR_STORAGE,1,[Whether we have sockaddr_Storage]) ],
150 [],
151 [
152#include <sys/types.h>
153#include <sys/socket.h>
154])
155
6c437065
TN
156#output
157AC_CONFIG_FILES([Makefile]
ca3bb55c 158 [doc/Makefile]
6c437065
TN
159 [include/Makefile]
160 [lib/Makefile]
161 [mount/Makefile]
162 [nfs/Makefile]
6916a665 163 [nlm/Makefile]
ed09b567 164 [nsm/Makefile]
6c437065
TN
165 [portmap/Makefile]
166 [rquota/Makefile]
c7ddf2e5 167 [utils/Makefile]
6c437065
TN
168 [examples/Makefile]
169 )
170
ea545df9 171AC_OUTPUT([libnfs.pc])