summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--misc/findutils/Makefile4
-rw-r--r--sysutils/coreutils/Makefile5
-rw-r--r--sysutils/coreutils/files/patch-lib_getcwd.c13
3 files changed, 2 insertions, 20 deletions
diff --git a/misc/findutils/Makefile b/misc/findutils/Makefile
index 96d0afdb0c9c..5016dfdf80d3 100644
--- a/misc/findutils/Makefile
+++ b/misc/findutils/Makefile
@@ -7,6 +7,7 @@
PORTNAME= findutils
PORTVERSION= 4.4.0
+PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= findutils
@@ -20,9 +21,6 @@ SIG_FILES= ${DISTNAME}${EXTRACT_SUFX}.sig
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
-# GNU assumes that openat() implies the existence of fdopendir(),
-# which does not hold true on FreeBSD 8.
-CONFIGURE_ENV+= ac_cv_func_openat=no
USE_GMAKE= yes
USE_GCC= 3.4+
diff --git a/sysutils/coreutils/Makefile b/sysutils/coreutils/Makefile
index fa82be60c65a..b4116abe6c1b 100644
--- a/sysutils/coreutils/Makefile
+++ b/sysutils/coreutils/Makefile
@@ -7,7 +7,7 @@
PORTNAME= coreutils
PORTVERSION= 6.9
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= sysutils textproc
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= ${PORTNAME}
@@ -24,9 +24,6 @@ GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --program-prefix=g
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib"
-# GNU assumes that openat() implies the existence of fdopendir(),
-# which does not hold true on FreeBSD 8.
-CONFIGURE_ENV+= ac_cv_func_openat=no
USE_GMAKE= yes
diff --git a/sysutils/coreutils/files/patch-lib_getcwd.c b/sysutils/coreutils/files/patch-lib_getcwd.c
deleted file mode 100644
index 8df1a66b9775..000000000000
--- a/sysutils/coreutils/files/patch-lib_getcwd.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- lib/getcwd.c.orig 2008-04-11 20:06:03.000000000 +0200
-+++ lib/getcwd.c 2008-04-11 20:06:29.000000000 +0200
-@@ -30,6 +30,10 @@
-
- #include <fcntl.h> /* For AT_FDCWD on Solaris 9. */
-
-+#ifdef __FreeBSD__
-+# undef AT_FDCWD
-+#endif
-+
- #ifndef __set_errno
- # define __set_errno(val) (errno = (val))
- #endif