Add a new test for "scandir()" and friends.

scandir() is used in the new menu code; and we must include our own
implemenation for solaris (and maybe other platforms as well).


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8290 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
jkeil 2002-11-26 18:34:09 +00:00
parent 11896c376b
commit 3a072d1e6e
1 changed files with 17 additions and 0 deletions

17
configure vendored
View File

@ -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