diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-10-27T16·51+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-10-27T16·51+0000 |
commit | d91cd305634bfe0de200cb0b062a56349249d26e (patch) | |
tree | 475773aea98c84553e914d47f2a7b2bf471def1e /configure.ac | |
parent | dc6f373842ae65d6c407d8169089367d9c0d4e1a (diff) |
* Detect whether chroot / bind-mount support is available.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 350f8791fc1c..5d8a719133da 100644 --- a/configure.ac +++ b/configure.ac @@ -99,6 +99,11 @@ static char buf[1024];]], AC_LANG_POP(C++) +# Check for chroot support (requires chroot() and bind mounts). +AC_CHECK_FUNCS([chroot]) +AC_CHECK_HEADERS([sys/mount.h]) + + # Check for <locale> AC_LANG_PUSH(C++) AC_CHECK_HEADERS([locale]) |