From owner-freebsd-current@FreeBSD.ORG Tue Jul 2 13:05:01 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D9B4C6A4 for ; Tue, 2 Jul 2013 13:05:01 +0000 (UTC) (envelope-from asomers@gmail.com) Received: from mail-qa0-x231.google.com (mail-qa0-x231.google.com [IPv6:2607:f8b0:400d:c00::231]) by mx1.freebsd.org (Postfix) with ESMTP id A2EDC1C3F for ; Tue, 2 Jul 2013 13:05:01 +0000 (UTC) Received: by mail-qa0-f49.google.com with SMTP id hu16so2808143qab.1 for ; Tue, 02 Jul 2013 06:05:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=D9z+k6YbQ1oNhwK7iGxgt2o/cLAEncPiJN0yJ6Rkx50=; b=ZSugtR8knExxfEsI2V/Db4oDjcltGvGJVv4U4Y1A35vElmecTQ8u/idU6KB1KowW2e inmeXwumHlZ02rX31M47Q1YdY8Jd7JO8urZ1SI67rFO49F4mYAf1eAMu5fj1sSRVKOu1 vElBugV7AKBn7/GEneN1BN2Gs+NgiTXuyKemNz09rE0UCIkErv6T8UWTUvWYpuC0lHav vcudnTNL49ZqaPw3VkgZTK+4pl39RHiWujQXbeJchBtDQGeAQYseXrx22saTwri4gp2x MW0j9E8BvO/QJEaD3FlbHCcseHBzxAEHdYchP6TFhpQuPtBPGyUV+YBpNaza+xUefl8O QhEw== MIME-Version: 1.0 X-Received: by 10.49.82.115 with SMTP id h19mr38040110qey.62.1372770301117; Tue, 02 Jul 2013 06:05:01 -0700 (PDT) Received: by 10.49.37.226 with HTTP; Tue, 2 Jul 2013 06:05:00 -0700 (PDT) In-Reply-To: <20130702115653.770d555c@telesto> References: <20130702115653.770d555c@telesto> Date: Tue, 2 Jul 2013 07:05:00 -0600 Message-ID: Subject: Re: CURRENT fails to build: usr/src/sbin/devd/devd.cc:1125:2: error: use of undeclared identifier 'va_end' va_end(argp); From: asomers@gmail.com To: "O. Hartmann" Content-Type: text/plain; charset=ISO-8859-1 X-Mailman-Approved-At: Tue, 02 Jul 2013 13:26:48 +0000 Cc: FreeBSD CURRENT 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: Tue, 02 Jul 2013 13:05:01 -0000 And yet it's not producing any tinderbox errors. Perhaps stdarg.h is getting implicitly included by some other header in CURRENT, but not in whatever version of the code you have? For now, you can #include and I'll fix it when I get to the office this morning. On Tue, Jul 2, 2013 at 3:56 AM, O. Hartmann wrote: > The recent sources fails to build with the following error: > > > [...] > ===> sbin/devd (all) > c++ -O2 -pipe -O3 -march=native -I. -I/usr/src/sbin/devd -pipe -O3 > -Qunused-arguments -fstack-protector -Wsystem-headers -Werror -Wall > -Wno-format-y2k -W -Wno-unused-parameter -Wpointer-arith > -Wno-uninitialized -Wno-empty-body -Wno-string-plus-int > -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality > -Wno-unused-function -Wno-conversion -stdlib=libc++ -std=c++11 > -c /usr/src/sbin/devd/devd.cc /usr/src/sbin/devd/devd.cc:1120:2: error: > use of undeclared identifier 'va_start' va_start(argp, fmt); > ^ /usr/src/sbin/devd/devd.cc:1125:2: error: use of undeclared > identifier 'va_end' va_end(argp); ^ 2 errors generated. *** Error code 1 > > Stop. > make: stopped in /usr/src/sbin/devd > *** Error code 1 > > > Oliver