mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-02-11 15:00:08 +08:00
from here... * libltdl/lt__private.h: ...to here. New file to declare ltdl's internal interfaces. * libltdl/ltdl.c: Include lt__private.h. * m4/ltdl.m4 (AC_LIB_LTDL): Add lt_dirent to AC_LIBOBJ if all of opendir, readdir and closedir are missing. (AC_CHECK_HEADERS): Remove assert.h, ctype.h, errno.h, malloc.h, stdio.h and stdlib.h; these headers are all available in standard c89 environments and newer. * libltdl/lt__private.h: Include them here unconditionally. * libltdl/lt__dirent.c (opendir, readdir, closedir): New file. Windows dirent emulation functions moved to here... * libltdl/ltdl.c (opendir, readdir, closedir): ...from here. * libltdl/lt__dirent.h: New file. Rename the global symbols from lt__dirent.c into the lt__ namespace so they don't clash with other libraries.
98 lines
2.6 KiB
C
98 lines
2.6 KiB
C
/* lt__dirent.h -- internal directory entry scanning interface
|
|
Copyright (C) 2001, 2004 Free Software Foundation, Inc.
|
|
Originally by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
|
|
|
NOTE: The canonical source of this file is maintained with the
|
|
GNU Libtool package. Report bugs to bug-libtool@gnu.org.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
As a special exception to the GNU Lesser General Public License,
|
|
if you distribute this file as part of a program or library that
|
|
is built using GNU libtool, you may include it under the same
|
|
distribution terms that you use for the rest of that program.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA
|
|
|
|
*/
|
|
|
|
#ifndef LT__DIRENT_H
|
|
#define LT__DIRENT_H 1
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include HAVE_CONFIG_H
|
|
#endif
|
|
|
|
#include "lt_system.h"
|
|
|
|
#if defined(HAVE_CLOSEDIR) && defined(HAVE_OPENDIR) && defined(HAVE_READDIR) && defined(HAVE_DIRENT_H)
|
|
/* We have a fully operational dirent subsystem. */
|
|
# include <dirent.h>
|
|
# define D_NAMLEN(dirent) (strlen((dirent)->d_name))
|
|
|
|
#elif !defined(__WINDOWS__)
|
|
/* We are not on windows, so we can get the same functionality from the
|
|
`direct' API. */
|
|
# define dirent direct
|
|
# define D_NAMLEN(dirent) ((dirent)->d_namlen)
|
|
# if HAVE_SYS_NDIR_H
|
|
# include <sys/ndir.h>
|
|
# endif
|
|
# if HAVE_SYS_DIR_H
|
|
# include <sys/dir.h>
|
|
# endif
|
|
# if HAVE_NDIR_H
|
|
# include <ndir.h>
|
|
# endif
|
|
|
|
#else /* __WINDOWS__ */
|
|
/* Use some wrapper code to emulate dirent on windows.. */
|
|
# define WINDOWS_DIRENT_EMULATION 1
|
|
|
|
# include <windows.h>
|
|
|
|
# define D_NAMLEN(dirent) (strlen((dirent)->d_name))
|
|
# define dirent lt__dirent
|
|
# define DIR lt__DIR
|
|
# define opendir lt__opendir
|
|
# define readdir lt__readdir
|
|
# define closedir lt__closedir
|
|
|
|
LT_BEGIN_C_DECLS
|
|
|
|
struct dirent
|
|
{
|
|
char d_name[LT_FILENAME_MAX];
|
|
int d_namlen;
|
|
};
|
|
|
|
typedef struct
|
|
{
|
|
HANDLE hSearch;
|
|
WIN32_FIND_DATA Win32FindData;
|
|
BOOL firsttime;
|
|
struct dirent file_info;
|
|
} DIR;
|
|
|
|
|
|
DIR * opendir (const char *path);
|
|
struct dirent * readdir (DIR *entry);
|
|
void closedir (DIR *entry);
|
|
|
|
LT_END_C_DECLS
|
|
|
|
#endif /*!__WINDOWS__*/
|
|
|
|
#endif /*!LT__DIRENT_H*/
|