diff options
author | 2010-08-05 09:23:14 +0100 | |
---|---|---|
committer | 2010-08-05 09:24:45 +0100 | |
commit | 82bcc1129b96fa14a395b93e724bcd5f77074f01 (patch) | |
tree | e5211c389bdfc646572a67d2782851814b8f3969 | |
parent | 205e8218a25fdabbdb4091c81fffd865171c8238 (diff) | |
download | paludis-82bcc1129b96fa14a395b93e724bcd5f77074f01.tar.gz paludis-82bcc1129b96fa14a395b93e724bcd5f77074f01.tar.xz |
Fix libarchive newness check
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c0958fb0a..1d826dda3 100644 --- a/configure.ac +++ b/configure.ac @@ -1512,7 +1512,7 @@ if test "x$need_libarchive_check" = "xyes" ; then [AC_MSG_ERROR([libarchive is required for pbins])]) AC_MSG_CHECKING([whether your libarchive is new enough]) - AC_PREPROC_IFELSE([ + AC_COMPILE_IFELSE([ #include <archive.h> int main(int, char **) |