diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2011-06-04 19:02:48 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2011-06-04 19:02:48 +0000 |
commit | 00eb35a3d0a0b9586b8922f1b34e89b46a9f0960 (patch) | |
tree | 7b439cd439dbd88646939b5cc1845f0e84dab774 | |
parent | 1b4f975f98bfd1ac7d7f6e810e679c71a854310e (diff) | |
download | ports-00eb35a3d0a0b9586b8922f1b34e89b46a9f0960.tar.gz ports-00eb35a3d0a0b9586b8922f1b34e89b46a9f0960.zip |
Notes
-rw-r--r-- | misc/findutils/Makefile | 2 | ||||
-rw-r--r-- | misc/findutils/files/patch-gnulib-lib-fdopendir.c | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/misc/findutils/Makefile b/misc/findutils/Makefile index 295051cf989e..fa0391cc5358 100644 --- a/misc/findutils/Makefile +++ b/misc/findutils/Makefile @@ -7,7 +7,7 @@ PORTNAME= findutils PORTVERSION= 4.5.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_GNU_ALPHA} MASTER_SITE_SUBDIR= findutils diff --git a/misc/findutils/files/patch-gnulib-lib-fdopendir.c b/misc/findutils/files/patch-gnulib-lib-fdopendir.c new file mode 100644 index 000000000000..4d9811dd7a54 --- /dev/null +++ b/misc/findutils/files/patch-gnulib-lib-fdopendir.c @@ -0,0 +1,15 @@ +--- gnulib/lib/fdopendir.c.orig 2011-04-02 15:37:38.000000000 +0000 ++++ gnulib/lib/fdopendir.c 2011-05-30 21:05:02.000000000 +0000 +@@ -182,9 +182,11 @@ + + # include <errno.h> + # include <sys/stat.h> ++# include <dirent.h> + + # undef fdopendir + ++extern DIR *fdopendir(int); + /* Like fdopendir, but work around GNU/Hurd bug by validating FD. */ + + DIR * + |