summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 17 insertions, 0 deletions
diff --git a/configure b/configure
index bfbdd97d40..bf2bec9c74 100755
--- a/configure
+++ b/configure
@@ -2116,6 +2116,20 @@ echocheck "linux devfs"
echores "$_linux_devfs"
+echocheck "scandir()"
+cat > $TMPC << EOF
+int main (void) { scandir("", 0, 0, 0); alphasort(0, 0); return 0; }
+EOF
+_scandir=no
+cc_check && _scandir=yes
+if test "$_scandir" = yes ; then
+ _def_scandir='#define HAVE_SCANDIR 1'
+else
+ _def_scandir='#undef HAVE_SCANDIR'
+fi
+echores "$_scandir"
+
+
echocheck "strsep()"
cat > $TMPC << EOF
#include <string.h>
@@ -4824,6 +4838,9 @@ $_def_zlib
/* Define this if you have shm support */
$_def_shm
+/* Define this if your system has scandir & alphasort */
+$_def_scandir
+
/* Define this if your system has strsep */
$_def_strsep