Trying to build sysutils/coreutils breaks. Output for gcc46 as compiler at break: src/chroot.c: In function 'set_additional_groups': src/chroot.c:103:16: error: expected specifier-qualifier-list before 'typedef' gmake[2]: *** [src/chroot.o] Error 1 gmake[2]: Leaving directory `/usr/obj/asp/ports/sysutils/coreutils/work/coreutils-8.20' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/obj/asp/ports/sysutils/coreutils/work/coreutils-8.20' gmake: *** [all] Error 2 *** [do-build] Error code 1 Stop in /asp/ports/sysutils/coreutils. Output for clang as compiler at break: lib/libcoreutils.a(striconv.o): In function `mem_cd_iconv': lib/striconv.c:(.text+0x49): undefined reference to `libiconv' lib/striconv.c:(.text+0xaa): undefined reference to `libiconv' lib/striconv.c:(.text+0x117): undefined reference to `libiconv' lib/striconv.c:(.text+0x181): undefined reference to `libiconv' lib/striconv.c:(.text+0x1f0): undefined reference to `libiconv' lib/libcoreutils.a(striconv.o):lib/striconv.c:(.text+0x24c): more undefined references to `libiconv' follow lib/libcoreutils.a(striconv.o): In function `str_iconv': lib/striconv.c:(.text+0x54f): undefined reference to `libiconv_open' lib/striconv.c:(.text+0x576): undefined reference to `libiconv_close' lib/striconv.c:(.text+0x5af): undefined reference to `libiconv_close' cc: error: linker command failed with exit code 1 (use -v to see invocation) gmake[2]: *** [src/factor] Error 1 gmake[2]: Leaving directory `/usr/obj/asp/ports/sysutils/coreutils/work/coreutils-8.20' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/obj/asp/ports/sysutils/coreutils/work/coreutils-8.20' gmake: *** [all] Error 2 *** [do-build] Error code 1 How-To-Repeat: build sysutils/coreutils on 10
Maintainer of sysutils/coreutils, Please note that PR ports/175745 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/175745 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Responsible Changed From-To: freebsd-ports-bugs->bdrewery I'll take it.
Author: bdrewery Date: Thu Feb 7 16:40:11 2013 New Revision: 311871 URL: http://svnweb.freebsd.org/changeset/ports/311871 Log: - Fix build when NLS is disabled PR: ports/174021 [1] PR: ports/175745 [2] Reported by: Rusty Nejdl <rnejdl@ringofsaturn.com> [1] Reported by: Z Beeblebrox <zaphod@berentweb.com> [2] Approved by: maintainer timeout Obtained from: http://git.savannah.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=88a6201 Added: head/sysutils/coreutils/files/patch-Makefile.in (contents, props changed) Modified: head/sysutils/coreutils/Makefile Modified: head/sysutils/coreutils/Makefile ============================================================================== --- head/sysutils/coreutils/Makefile Thu Feb 7 15:40:02 2013 (r311870) +++ head/sysutils/coreutils/Makefile Thu Feb 7 16:40:11 2013 (r311871) @@ -3,7 +3,7 @@ PORTNAME= coreutils PORTVERSION= 8.20 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils textproc MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} Added: head/sysutils/coreutils/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/coreutils/files/patch-Makefile.in Thu Feb 7 16:40:11 2013 (r311871) @@ -0,0 +1,11 @@ +--- Makefile.in.orig 2013-02-07 10:21:58.916462288 -0600 ++++ Makefile.in 2013-02-07 10:22:05.081459567 -0600 +@@ -3114,7 +3114,7 @@ + + # for various GMP functions + src_expr_LDADD = $(LDADD) $(LIB_GMP) +-src_factor_LDADD = $(LDADD) $(LIB_GMP) ++src_factor_LDADD = $(LDADD) $(LIB_GMP) $(LIBICONV) + src_false_LDADD = $(LDADD) + src_fmt_LDADD = $(LDADD) + src_fold_LDADD = $(LDADD) _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: feedback->closed Fixed.