summaryrefslogtreecommitdiff
path: root/sysutils/coreutils
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@FreeBSD.org>2008-04-19 15:22:57 +0000
committerChristian Weisgerber <naddy@FreeBSD.org>2008-04-19 15:22:57 +0000
commita8ec5918ceb217f3bffd1346fea5c1a16440fed6 (patch)
tree813a7cc115a616185720440828813d39e3f5fb49 /sysutils/coreutils
parent- Try and fix for real the issue of exiting qemu processes sometimes (diff)
Revert previous workaround, 8.0-CURRENT has grown fdopendir(3).
Don't bother with __FreeBSD_version checking for what was only an eight-day window.
Notes
Notes: svn path=/head/; revision=211580
Diffstat (limited to 'sysutils/coreutils')
-rw-r--r--sysutils/coreutils/Makefile5
-rw-r--r--sysutils/coreutils/files/patch-lib_getcwd.c13
2 files changed, 1 insertions, 17 deletions
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