From owner-freebsd-current@FreeBSD.ORG Mon Oct 7 13:28:08 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D42BF439; Mon, 7 Oct 2013 13:28:08 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from land.berklix.org (land.berklix.org [144.76.10.75]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 627D6236C; Mon, 7 Oct 2013 13:28:08 +0000 (UTC) Received: from mart.js.berklix.net (pD9FBE81A.dip0.t-ipconnect.de [217.251.232.26]) (authenticated bits=128) by land.berklix.org (8.14.5/8.14.5) with ESMTP id r97DS5bi027609; Mon, 7 Oct 2013 13:28:06 GMT (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id r97DRrEm035243; Mon, 7 Oct 2013 15:27:53 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost.js.berklix.net [127.0.0.1]) by fire.js.berklix.net (8.14.4/8.14.4) with ESMTP id r97DRl9W053828; Mon, 7 Oct 2013 15:27:53 +0200 (CEST) (envelope-from jhs@fire.js.berklix.net) Message-Id: <201310071327.r97DRl9W053828@fire.js.berklix.net> To: Glen Barber Subject: Re: FreeBSD 10.0-ALPHA4 now available From: "Julian H. Stacey" Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Sun, 29 Sep 2013 21:58:17 EDT." <20130930015817.GC40093@glenbarber.us> Date: Mon, 07 Oct 2013 15:27:47 +0200 Sender: jhs@berklix.com Cc: freebsd-current@freebsd.org, FreeBSD Release Engineering Team X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Oct 2013 13:28:08 -0000 > The fourth ALPHA build of the 10.0-RELEASE release cycle is now available > on the FTP servers for the amd64, i386, ia64, powerpc, powerpc64 and > sparc64 architectures. > > Note: Due to build issues within the head/ branch, ALPHA3 ISO builds > were skipped. > > The 10.0-ALPHA4 builds correlate to svn revision r255933 of the head/ > branch. (After zapping boot on an adjacent parition & repairing,) I avoided installer, & booted another partition, mounted FreeBSD-10.0-ALPHA4-amd64-memstick.img & tar'ed to empty partition 10.0-ALPHA4 runs, built & ran new generic kernel & ports X11 etc. :-) I had supposed an Alpha /usr/src would compile even if it broke at run time. Not so, 10.0-ALPHA4 src/ is broken (with & without obj & depend). cd /usr/src ; make -i install killed the system. To avoid killing, I hacked Makefiles, list below. Reinstalled & survived. I'll try with a newer current later, but Alpha4 src/ needs fixing. cd /usr/src ; cp /dev/null ~/tmp/`uname -r`.diffs foreach i ( `find . -name Makefile\*.pre_jhs | sort`) echo >> ~/tmp/`uname -r`.diffs diff -c $i `dirname $i`/`basename $i .pre_jhs` >> ~/tmp/`uname -r`.diffs end *** ./Makefile.inc1.pre_jhs Mon Oct 7 12:51:25 2013 --- ./Makefile.inc1 Mon Oct 7 12:51:57 2013 *************** *** 71,77 **** .endif SUBDIR+=gnu include .if ${MK_KERBEROS} != "no" ! SUBDIR+=kerberos5 .endif .if ${MK_RESCUE} != "no" SUBDIR+=rescue --- 71,77 ---- .endif SUBDIR+=gnu include .if ${MK_KERBEROS} != "no" ! # pre_jhs SUBDIR+=kerberos5 .endif .if ${MK_RESCUE} != "no" SUBDIR+=rescue *** ./lib/ncurses/Makefile.pre_jhs Mon Oct 7 12:48:21 2013 --- ./lib/ncurses/Makefile Mon Oct 7 14:53:27 2013 *************** *** 1,6 **** # $FreeBSD: head/lib/ncurses/Makefile 167359 2007-03-09 12:11:58Z rafan $ ! SUBDIR= ncurses form menu panel \ ! ncursesw formw menuw panelw .include --- 1,9 ---- # $FreeBSD: head/lib/ncurses/Makefile 167359 2007-03-09 12:11:58Z rafan $ ! SUBDIR= form menu panel \ ! formw menuw panelw ! # pre_jhs breaks compiling SUBDIR += ncurses ! # pre_jhs breaks compiling SUBDIR += ncursesw ! # pre_jhs install breaks /lib/libncurses.so.8: Undefined symbol "_nc_wacs" SUBDIR += ncursesw .include *** ./rescue/Makefile.pre_jhs Mon Oct 7 13:23:46 2013 --- ./rescue/Makefile Mon Oct 7 13:25:57 2013 *************** *** 1,6 **** # $FreeBSD: head/rescue/Makefile 117035 2003-06-29 18:35:37Z gordon $ SUBDIR= librescue \ ! rescue .include --- 1,7 ---- # $FreeBSD: head/rescue/Makefile 117035 2003-06-29 18:35:37Z gordon $ SUBDIR= librescue \ ! ! # pre_jhs rescue .include *** ./sbin/atm/Makefile.pre_jhs Sun Sep 29 03:14:17 2013 --- ./sbin/atm/Makefile Mon Oct 7 13:37:45 2013 *************** *** 23,28 **** # @(#) $Id: Makefile,v 1.5 1998/07/10 16:01:58 jpt Exp $ # $FreeBSD: head/sbin/atm/Makefile 179308 2008-05-25 22:11:40Z rwatson $ ! SUBDIR= atmconfig .include --- 23,28 ---- # @(#) $Id: Makefile,v 1.5 1998/07/10 16:01:58 jpt Exp $ # $FreeBSD: head/sbin/atm/Makefile 179308 2008-05-25 22:11:40Z rwatson $ ! #pre_jhs SUBDIR= atmconfig .include *** ./share/i18n/Makefile.pre_jhs Sun Sep 29 03:09:07 2013 --- ./share/i18n/Makefile Mon Oct 7 13:58:44 2013 *************** *** 3,8 **** .include ! SUBDIR= csmapper esdb .include --- 3,9 ---- .include ! # pre_jhs both break SUBDIR= csmapper esdb ! SUBDIR= .include *** ./sys/boot/userboot/Makefile.pre_jhs Sun Sep 29 03:12:25 2013 --- ./sys/boot/userboot/Makefile Mon Oct 7 14:05:33 2013 *************** *** 2,8 **** .include ! SUBDIR= ficl libstand test userboot .include --- 2,9 ---- .include ! # pre_jhs SUBDIR= ficl libstand test userboot ! SUBDIR= ficl libstand test .include *** ./usr.bin/Makefile.pre_jhs Sun Sep 29 03:13:01 2013 --- ./usr.bin/Makefile Mon Oct 7 14:13:43 2013 *************** *** 261,267 **** .endif .if ${MK_KERBEROS_SUPPORT} != "no" ! SUBDIR+= compile_et .endif .if ${MK_LDNS_UTILS} != "no" --- 261,267 ---- .endif .if ${MK_KERBEROS_SUPPORT} != "no" ! #pre_jhs SUBDIR+= compile_et .endif .if ${MK_LDNS_UTILS} != "no" Cheers, Julian -- Julian Stacey, BSD Unix Linux C Sys Eng Consultant, Munich http://berklix.com Reply below not above, like a play script. Indent old text with "> ". Send plain text. No quoted-printable, HTML, base64, multipart/alternative.