From owner-freebsd-current@FreeBSD.ORG Wed Oct 14 07:05:44 2009 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0EF8106566B; Wed, 14 Oct 2009 07:05:44 +0000 (UTC) (envelope-from bland@FreeBSD.org) Received: from mail1.asahi-net.or.jp (mail1.asahi-net.or.jp [202.224.39.197]) by mx1.freebsd.org (Postfix) with ESMTP id 86D5C8FC0A; Wed, 14 Oct 2009 07:05:44 +0000 (UTC) Received: from hub.bbnest.net (w133033.ppp.asahi-net.or.jp [121.1.133.33]) by mail1.asahi-net.or.jp (Postfix) with ESMTP id D7E6D7C18B; Wed, 14 Oct 2009 15:46:03 +0900 (JST) Received: from hub.bbnest.net (localhost [127.0.0.1]) by hub.bbnest.net (8.14.3/8.14.3) with ESMTP id n9E6jwe0076875 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 14 Oct 2009 15:45:58 +0900 (JST) (envelope-from bland@FreeBSD.org) Received: (from www@localhost) by hub.bbnest.net (8.14.3/8.14.3/Submit) id n9E6jwH3076874; Wed, 14 Oct 2009 15:45:58 +0900 (JST) (envelope-from bland@FreeBSD.org) X-Authentication-Warning: hub.bbnest.net: www set sender to bland@FreeBSD.org using -f To: =?UTF-8?Q?Dag-Erling_Sm=C3=B8rgrav?= MIME-Version: 1.0 Date: Wed, 14 Oct 2009 15:45:58 +0900 From: Alexander Nedotsukov In-Reply-To: <86aazuet4c.fsf@ds4.des.no> References: <200910122344.n9CNijv9037645@freebsd-current.sentex.ca> <86vdijdu0r.fsf@ds4.des.no> <86my3uetzr.fsf@ds4.des.no> <86aazuet4c.fsf@ds4.des.no> Message-ID: X-Sender: bland@FreeBSD.org User-Agent: RoundCube Webmail/0.2a Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 X-DSPAM-Result: Whitelisted X-DSPAM-Processed: Wed Oct 14 15:46:03 2009 X-DSPAM-Confidence: 0.9991 X-DSPAM-Probability: 0.0000 X-DSPAM-Signature: 4ad573ab768763761837599 Cc: arm@FreeBSD.org, quickembed , FreeBSD Tinderbox , current@FreeBSD.org Subject: Re: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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: Wed, 14 Oct 2009 07:05:44 -0000 Heh. You just repeat my mistake (presumably with a bit of help from my side though). Those warning lines are really provoking :-) While missed #include issue still true it was not a source of build failure. libgssapi_krb5 now have libgssapi as a dependency but stay first in the _prebuild_libs list and nothing said build framework why it must build it in a different order. I committed the fix yesterday: http://svn.freebsd.org/viewvc/base?view=revision&revision=198020 Alexander. ps. I noticed that mails from tinderbox.freebsd.org contains link to not existed tinderbox.des.no host. On Wed, 14 Oct 2009 02:06:43 +0200, Dag-Erling Smørgrav wrote: > quickembed writes: >> should not it say "unresolved external function...." etc if the >> compiler can not find the function body? > > Yes, that's exactly what it does: > > /src/kerberos5/lib/libgssapi_krb5/gss_krb5.c: In function > 'gsskrb5_extract_authz_data_from_sec_context': > /src/kerberos5/lib/libgssapi_krb5/gss_krb5.c:591: warning: implicit > declaration of function 'der_get_oid' > /src/kerberos5/lib/libgssapi_krb5/gss_krb5.c:601: warning: implicit > declaration of function 'der_free_oid' > /src/kerberos5/lib/libgssapi_krb5/gss_krb5.c:614: warning: implicit > declaration of function 'der_length_oid' > /src/kerberos5/lib/libgssapi_krb5/gss_krb5.c:622: warning: implicit > declaration of function 'der_put_oid' > > DES