From: Memphis Date: Wed, 1 Jun 2011 16:04:53 +0000 (+0200) Subject: - removed unneeded dependency to libpopt X-Git-Tag: upstream/1.9.6^2~409^2~4 X-Git-Url: https://git.piment-noir.org/?p=deb_libnfs.git;a=commitdiff_plain;h=684c77edb0c791b455cad7de7c5855e3d2974336 - removed unneeded dependency to libpopt --- diff --git a/configure.ac b/configure.ac index 8b99796..71efb74 100644 --- a/configure.ac +++ b/configure.ac @@ -63,40 +63,6 @@ libnfs_cv_HAVE_SOCK_SIN_LEN=yes,libnfs_cv_HAVE_SOCK_SIN_LEN=no)]) if test x"$libnfs_cv_HAVE_SOCK_SIN_LEN" = x"yes"; then AC_DEFINE(HAVE_SOCK_SIN_LEN,1,[Whether the sockaddr_in struct has a sin_len property]) fi - -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) -else - AC_MSG_RESULT(no) - AC_MSG_NOTICE(You need libpopt to compile libnfs. Install the libpopt-dev package.) - exit -fi - AC_SUBST(libdir) AC_SUBST(install) AC_SUBST(ldconfig)