summaryrefslogtreecommitdiffstats
path: root/ark/configure.in.in
diff options
context:
space:
mode:
Diffstat (limited to 'ark/configure.in.in')
-rw-r--r--ark/configure.in.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/ark/configure.in.in b/ark/configure.in.in
new file mode 100644
index 0000000..e0e280a
--- /dev/null
+++ b/ark/configure.in.in
@@ -0,0 +1,11 @@
+AC_CHECK_KDEMAXPATHLEN
+
+KDE_CHECK_FUNC_EXT(statfs, [
+#include <sys/mount.h>
+], [
+ char buffer[200];
+ struct statfs b;
+ statfs(buffer, &b);
+], [
+ int statfs(const char *path, struct statfs *buffer)
+], [STATFS])