42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
--- misc/fts.c.orig 2022-04-07 11:13:19 UTC
|
|
+++ misc/fts.c
|
|
@@ -37,12 +37,14 @@ static char sccsid[] = "@(#)fts.c 8.6 (Berkeley) 8/14/
|
|
#endif
|
|
|
|
/* Conditional to set up proper fstat64 implementation */
|
|
-#if defined(hpux) || defined(sun) || (defined(__APPLE__) && defined(_DARWIN_FEATURE_ONLY_64_BIT_INODE))
|
|
+#if defined(hpux) || defined(sun) || defined(__FreeBSD__) || (defined(__APPLE__) && defined(_DARWIN_FEATURE_ONLY_64_BIT_INODE))
|
|
# define FTS_FSTAT64(_fd, _sbp) fstat((_fd), (_sbp))
|
|
#else
|
|
# define FTS_FSTAT64(_fd, _sbp) fstat64((_fd), (_sbp))
|
|
#endif
|
|
|
|
+#include "system.h"
|
|
+#include "misc/rpmfts.h"
|
|
#if defined(_LIBC)
|
|
#include <sys/param.h>
|
|
#include <include/sys/stat.h>
|
|
@@ -56,7 +58,7 @@ static char sccsid[] = "@(#)fts.c 8.6 (Berkeley) 8/14/
|
|
#else
|
|
|
|
/* Conditionals for working around non-GNU environments */
|
|
-#if defined(hpux)
|
|
+#if defined(hpux) || defined(__FreeBSD__)
|
|
# define _INCLUDE_POSIX_SOURCE
|
|
# define __errno_location() (&errno)
|
|
# define dirfd(dirp) -1
|
|
@@ -73,13 +75,11 @@ static char sccsid[] = "@(#)fts.c 8.6 (Berkeley) 8/14/
|
|
#endif
|
|
#endif
|
|
|
|
-#include "system.h"
|
|
#include <fcntl.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <dirent.h>
|
|
#include <errno.h>
|
|
-#include "misc/rpmfts.h"
|
|
# define __set_errno(val) (*__errno_location ()) = (val)
|
|
# define __open open
|
|
# define __close close
|