From owner-freebsd-questions@FreeBSD.ORG Wed Apr 28 18:49:45 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D9C61065670; Wed, 28 Apr 2010 18:49:45 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-ww0-f54.google.com (mail-ww0-f54.google.com [74.125.82.54]) by mx1.freebsd.org (Postfix) with ESMTP id 0DC508FC18; Wed, 28 Apr 2010 18:49:44 +0000 (UTC) Received: by wwb17 with SMTP id 17so743873wwb.13 for ; Wed, 28 Apr 2010 11:49:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:mime-version:content-type:content-disposition:user-agent; bh=Y1rGWbLtEKUd/fwU0TVE7taGaQC+RUdQy4b92ZZiOPE=; b=KrNFdp9vyNjjOOpXQAzXDOc9PHPONdaqsYrTW80BHlDH88HJRJUy8tBw3SJdPO/7Yp /lIYoIWwyR0fG9rkPAL8mq//IsRY8lBYjF+rrT3G1Oq9qEKFBgGa8zBx7Zk12JGkUl+D uvpGBC0Z5asF2UMkJ5T3MooPayl/nICuVCQ2w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=pNo7KPNU0MBZam0MSpIsRKCtb7WHk90QVcj5DUYzFQEu5slJwza2V6N9argErPj7vY /qingIW5q9FiJsqKwIicbfMoAFB92Wz6I7RJuvHfkUaPJvZl3opXzxrAn4FNxMjCPFcq /KPQbpHdFG2do+eKVezPQ4fo43Nu/V3zuP8Tc= Received: by 10.216.90.137 with SMTP id e9mr2019735wef.38.1272480577462; Wed, 28 Apr 2010 11:49:37 -0700 (PDT) Received: from Melon.malikania.fr (121.21.102-84.rev.gaoland.net [84.102.21.121]) by mx.google.com with ESMTPS id k13sm80371wed.23.2010.04.28.11.49.35 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 28 Apr 2010 11:49:36 -0700 (PDT) Date: Wed, 28 Apr 2010 20:49:33 +0200 From: Demelier David To: freebsd-questions@freebsd.org, freebsd-stable@freebsd.org Message-ID: <20100428184933.GA27186@Melon.malikania.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) Cc: Subject: buildworld fails on ifmcstat X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Apr 2010 18:49:45 -0000 Hi, I tried to make buildworld with a custom src.conf to prevent many useless things since I want to build for a jail. This is what I added: .if defined(BUILD_JAIL) WITHOUT_ACPI="YES" WITHOUT_APM="YES" WITHOUT_GAMES="YES" WITHOUT_AMD="YES" WITHOUT_AUTHPF="YES" WITHOUT_AUDIT="YES" WITHOUT_BLUETOOTH="YES" WITHOUT_BOOT="YES" WITHOUT_BSNMP="YES" WITHOUT_CDDL="YES" WITHOUT_DICT="YES" WITHOUT_EXAMPLES="YES" WITHOUT_FORTH="YES" WITHOUT_GCOV="YES" WITHOUT_FLOPPY="YES" WITHOUT_GPIB="YES" WITHOUT_HTML="YES" WITHOUT_IPFILTER="YES" WITHOUT_IPX="YES" WITHOUT_IPFW="YES" WITHOUT_JAIL="YES" WITHOUT_KVM="YES" WITHOUT_LEGACY_CONSOLE="YES" WITHOUT_LIB32="YES" WITHOUT_LPR="YES" WITHOUT_NDIS="YES" WITHOUT_NETCAT="YES" WITHOUT_NETGRAPH="YES" WITHOUT_NIS="YES" WITHOUT_NTP="YES" WITHOUT_PF="YES" WITHOUT_PORTSNAP="YES" WITHOUT_PPP="YES" WITHOUT_QUOTAS="YES" WITHOUT_SENDMAIL="YES" WITHOUT_RESCUE="YES" WITHOUT_SHAREDOCS="YES" WITHOUT_SYSCONS="YES" WITHOUT_SYSINSTALL="YES" WITHOUT_USB="YES" WITHOUT_WIRELESS="YES" .endif make BUILD_JAIL=yes buildworld now fails on : ===> usr.sbin/ifmcstat (all) cc -O2 -pipe -DINET6 -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /usr/src/usr.sbin/ifmcstat/ifmcstat.c cc1: warnings being treated as errors /usr/src/usr.sbin/ifmcstat/ifmcstat.c:170: warning: 'in6_ifinfo' used but never defined *** Error code 1 Is my src.conf wrong ? King regards, David.