X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=configure.ac;h=2cb979eb8a7dc4680689e86b3090821346f00c5b;hb=2db42ce2fc89bc88050564037688888bbb8876e9;hp=1183bd25038d43fdf43472899ad0cf84f78becf2;hpb=ec70621f42e2074b454637813c1985b35552b2b3;p=deb_libnfs.git diff --git a/configure.ac b/configure.ac index 1183bd2..2cb979e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.50) -AC_INIT([libnfs], [1.5.0], [ronniesahlberg@gmail.com]) +AC_INIT([libnfs], [1.9.4], [ronniesahlberg@gmail.com]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([foreign]) AC_CANONICAL_HOST @@ -81,6 +81,58 @@ case $host in ;; esac +# check for poll.h +dnl Check for poll.h +AC_CHECK_HEADERS([poll.h]) + +# check for unistd.h +dnl Check for unistd.h +AC_CHECK_HEADERS([unistd.h]) + +# check for netdb.h +dnl Check for netdb.h +AC_CHECK_HEADERS([netdb.h]) + +# check for utime.h +dnl Check for utime.h +AC_CHECK_HEADERS([utime.h]) + +# check for net/if.h +dnl Check for net/if.h +AC_CHECK_HEADERS([net/if.h]) + +# check for sys/time.h +dnl Check for sys/time.h +AC_CHECK_HEADERS([sys/time.h]) + +# check for sys/ioctl.h +dnl Check for sys/ioctl.h +AC_CHECK_HEADERS([sys/ioctl.h]) + +# check for sys/vfs.h +dnl Check for sys/vfs.h +AC_CHECK_HEADERS([sys/vfs.h]) + +# check for sys/statvfs.h +dnl Check for sys/statvfs.h +AC_CHECK_HEADERS([sys/statvfs.h]) + +# check for sys/socket.h +dnl Check for sys/socket.h +AC_CHECK_HEADERS([sys/socket.h]) + +# check for netinet/tcp.h +dnl Check for netinet/tcp.h +AC_CHECK_HEADERS([netinet/tcp.h]) + +# check for netinet/in.h +dnl Check for netinet/in.h +AC_CHECK_HEADERS([netinet/in.h]) + +# check for arpa/inet.h +dnl Check for arpa/inet.h +AC_CHECK_HEADERS([arpa/inet.h]) + # check for SA_LEN dnl Check if sockaddr data structure includes a "sa_len" AC_CHECK_MEMBER([struct sockaddr.sa_len], @@ -91,15 +143,28 @@ AC_CHECK_MEMBER([struct sockaddr.sa_len], #include ]) +# check for sockaddr_storage +dnl Check if sockaddr structure includes a "ss_family" +AC_CHECK_MEMBER([struct sockaddr_storage.ss_family], + [ AC_DEFINE(HAVE_SOCKADDR_STORAGE,1,[Whether we have sockaddr_Storage]) ], + [], + [ +#include +#include +]) + #output AC_CONFIG_FILES([Makefile] + [doc/Makefile] [include/Makefile] [lib/Makefile] [mount/Makefile] [nfs/Makefile] [nlm/Makefile] + [nsm/Makefile] [portmap/Makefile] [rquota/Makefile] + [utils/Makefile] [examples/Makefile] )