diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-04-19 13:21:47 -0400 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2013-04-22 12:47:20 -0400 |
commit | 61b21276f19a8791464ebf8620b3a40839652259 (patch) | |
tree | 6d8f3dfff8b56a0f67832fdb351fa40c3c10b499 | |
parent | 37add3662de0339a75d3bed86a4235fc7efaf18d (diff) | |
download | nfs-utils-61b21276f19a8791464ebf8620b3a40839652259.tar.gz nfs-utils-61b21276f19a8791464ebf8620b3a40839652259.tar.xz nfs-utils-61b21276f19a8791464ebf8620b3a40839652259.zip |
configure.ac: do not fail sqlite check when cross-compiling
If we're cross-compiling, we can't do a runtime test of sqlite,
so just assume that the user has a good enough version rather
than falling over.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | configure.ac | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 3d7ab0a..a594a7b 100644 --- a/configure.ac +++ b/configure.ac @@ -274,9 +274,14 @@ if test "$enable_nfsv4" = yes; then AC_CHECK_HEADERS([libgen.h sys/inotify.h], , AC_MSG_ERROR([Cannot find header needed for nfsdcltrack])) - if test "$libsqlite3_cv_is_recent" != "yes" ; then - AC_MSG_ERROR([nfsdcltrack requires sqlite-devel]) - fi + case $libsqlite3_cv_is_recent in + yes) ;; + unknown) + dnl do not fail when cross-compiling + AC_MSG_WARN([assuming sqlite is at least v3.3]) ;; + *) + AC_MSG_ERROR([nfsdcltrack requires sqlite-devel]) ;; + esac fi else |