From 3a072d1e6ec62ec1c3d0de32291833dd98c87b99 Mon Sep 17 00:00:00 2001 From: jkeil Date: Tue, 26 Nov 2002 18:34:09 +0000 Subject: 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 --- configure | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'configure') 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 @@ -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 -- cgit v1.2.3