From 3afe3b6dfb928200166f348964de24e3f7188568 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 8 Feb 2011 21:19:00 -0600 Subject: Check mountpoint read-only status when checking space This is a bit of a stopgap solution for the problem, but an easier one than revamping the file conflict checking code to support the same stuff. Using some more gross autoconf magic, figure out which struct field we need to look at to determine read-only status and store that on our mountpoint struct. If we find out we needed this partition after calculating size requirements, then toss an error. Signed-off-by: Dan McGee --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 47d60938..1039bba1 100644 --- a/configure.ac +++ b/configure.ac @@ -194,6 +194,10 @@ AC_CHECK_FUNCS([geteuid getmntinfo realpath regcomp strcasecmp \ wcwidth uname]) # For the diskspace code FS_STATS_TYPE +AC_CHECK_MEMBERS([struct statvfs.f_flag],,,[[#include ]]) +AC_CHECK_MEMBERS([struct statfs.f_flags],,,[[#include + #include ]]) + # Enable large file support if available AC_SYS_LARGEFILE -- cgit v1.2.3-24-g4f1b