X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=configure.ac;h=7578ef5d412ccd4653dac3d0408ea3bb4a3bf1d5;hb=d7c6e9aaa9df593e951e2f19106dcc71102e74f1;hp=12b33cd5c71cb9858665527e5897d8121bcdd624;hpb=357f65c0e10b90e5bea7435d9b3925676e937c86;p=deb_libnfs.git diff --git a/configure.ac b/configure.ac index 12b33cd..7578ef5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.50) -AC_INIT([libnfs], [1.0.0], [ronniesahlberg@gmail.com]) +AC_INIT([libnfs], [1.5.0], [ronniesahlberg@gmail.com]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([foreign]) AC_CANONICAL_HOST @@ -11,16 +11,15 @@ AC_PROG_CC AC_PROG_LIBTOOL AM_PROG_CC_C_O +PKG_PROG_PKG_CONFIG # Work around stupid autoconf default cflags. pt 2 if test "$SAVE_CFLAGS" = "x"; then CFLAGS="" fi -AC_CHECK_PROG([HAVE_RPCGEN], [rpcgen], [yes], [no]) -if test x$HAVE_RPCGEN != xyes; then - AC_MSG_ERROR([Can not find required program]) -fi +# We always want 64 bit file offsets +CFLAGS="${CFLAGS} -D_FILE_OFFSET_BITS=64" #option: examples AC_ARG_ENABLE([examples], @@ -29,24 +28,47 @@ AC_ARG_ENABLE([examples], [ENABLE_EXAMPLES=$enableval], [ENABLE_EXAMPLES="no"]) +# We need popt to compile the examples if test x$ENABLE_EXAMPLES = xyes; then +AC_MSG_CHECKING(whether libpopt is available) +ac_save_CFLAGS="$CFLAGS" +ac_save_LIBS="$LIBS" +CFLAGS="$CFLAGS $GLIB_CFLAGS" +LIBS="$GLIB_LIBS $LIBS -lpopt" +AC_TRY_RUN([ +/* + * Just see if we can compile/link with popt + */ +#include + +int main(int argc, const char *argv[]) +{ + struct poptOption popt_options[] = { + POPT_TABLEEND + }; + poptGetContext(argv[0], argc, argv, popt_options, POPT_CONTEXT_KEEP_FIRST); + + return 0; +} +], ac_cv_have_popt=yes, ac_cv_have_popt=no, + [echo $ac_n "compile with POPT. Assuming OK... $ac_c" + ac_cv_have_popt=yes]) +CFLAGS="$ac_save_CFLAGS" +LIBS="$ac_save_LIBS" +if test "$ac_cv_have_popt" = yes ; then + AC_MSG_RESULT(yes) MAYBE_EXAMPLES="examples" +else + AC_MSG_RESULT(no) + AC_MSG_NOTICE(You need libpopt to compile the sample libnfs clients.) + AC_MSG_NOTICE(Only the library will be compiled and installed.) +fi fi + AC_SUBST(MAYBE_EXAMPLES) -AC_ARG_ENABLE(tirpc, - [AC_HELP_STRING([--enable-tirpc], - [enable use of TI-RPC @<:@default=no@:>@])], - enable_tirpc=$enableval, - enable_tirpc='no') case $host in - *darwin*) - RPCGENFLAGS=-DU_INT64_PLATTFORM_TYPE="u_int64_t" - ;; - *cygwin*) - RPCGENFLAGS=-DU_INT64_PLATTFORM_TYPE="u_int64_t" - ;; *solaris*) AC_CHECK_HEADERS([sys/filio.h]) AC_CHECK_HEADERS([sys/sockio.h]) @@ -59,7 +81,9 @@ case $host in ;; esac -AC_SUBST(RPCGENFLAGS) +# check for poll.h +dnl Check for poll.h +AC_CHECK_HEADERS([poll.h]) # check for SA_LEN dnl Check if sockaddr data structure includes a "sa_len" @@ -71,11 +95,15 @@ AC_CHECK_MEMBER([struct sockaddr.sa_len], #include ]) -echo "Use TI-RPC: $enable_tirpc" -if test "$enable_tirpc" = "yes"; then - CFLAGS="${CFLAGS} -I /usr/include/tirpc" - LDFLAGS="${LDFLAGS} -ltirpc" -fi +# 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] @@ -83,6 +111,7 @@ AC_CONFIG_FILES([Makefile] [lib/Makefile] [mount/Makefile] [nfs/Makefile] + [nlm/Makefile] [portmap/Makefile] [rquota/Makefile] [examples/Makefile]