summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure34
1 files changed, 34 insertions, 0 deletions
diff --git a/configure b/configure
index 09054bdf..0760afe7 100755
--- a/configure
+++ b/configure
@@ -1953,6 +1953,22 @@ else
printf "no\n"
fi
+printf "Checking for ftruncate ... "
+cat > conftest.c <<!
+#include <unistd.h>
+
+int main(void)
+{
+ int e = ftruncate(0, 42);
+ return 0;
+}
+!
+if conftest ; then
+ printf "yes\n"
+ printf "#define HAVE_FTRUNCATE 1\n" >> $config_h
+else
+ printf "no\n"
+fi
printf "Checking for _wspawnlp ... "
@@ -1975,6 +1991,24 @@ else
printf "no\n"
fi
+printf "Checking for chsize ... "
+cat > conftest.c <<!
+#include <unistd.h>
+
+int main(void)
+{
+ int e = chsize(0, 42);
+ return 0;
+}
+!
+if conftest ; then
+ printf "yes\n"
+ printf "#define HAVE_CHSIZE 1\n" >> $config_h
+else
+ printf "no\n"
+fi
+
+
printf "Checking for log2 ... "
cat > conftest.c <<!