From: Wayne Davison Date: Mon, 17 Mar 2008 03:35:18 +0000 (-0700) Subject: If the system's popt.h file is not found, use our provided popt code. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/6de417d9d4ac8ab67d705e2f6e7ab062154026a9 If the system's popt.h file is not found, use our provided popt code. --- diff --git a/configure.in b/configure.in index a1038ec4..8ad96c27 100644 --- a/configure.in +++ b/configure.in @@ -314,7 +314,7 @@ AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h \ sys/un.h sys/attr.h glob.h mcheck.h arpa/inet.h arpa/nameser.h locale.h \ netdb.h malloc.h float.h limits.h iconv.h libcharset.h langinfo.h \ sys/acl.h acl/libacl.h attr/xattr.h sys/xattr.h sys/extattr.h \ - popt/popt.h) + popt.h popt/popt.h) AC_HEADER_MAJOR AC_CACHE_CHECK([if makedev takes 3 args],rsync_cv_MAKEDEV_TAKES_3_ARGS,[ @@ -662,6 +662,8 @@ if test x"$ac_cv_header_popt_popt_h" = x"yes"; then # would use our included header file anyway (due to -I.), and # might conflit with the system popt. with_included_popt=yes +elif test x"$ac_cv_header_popt_h" != x"yes"; then + with_included_popt=yes fi AC_MSG_CHECKING([whether to use included libpopt])