From owner-freebsd-current@FreeBSD.ORG Sat Feb 28 22:31:19 2015 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABE419FB for ; Sat, 28 Feb 2015 22:31:19 +0000 (UTC) Received: from mail-yk0-f179.google.com (mail-yk0-f179.google.com [209.85.160.179]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6F3CB1AD for ; Sat, 28 Feb 2015 22:31:18 +0000 (UTC) Received: by ykq19 with SMTP id 19so10275624ykq.4 for ; Sat, 28 Feb 2015 14:31:12 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=lMn4zVX81Otkdjlh1sGbZSo64KfsQpyef+zOO8FadnU=; b=X5B8mwXg838UtlF5wFkMDf9bCqiv2jfdSHs8Yv9YFZuCzPm8WFBO1ODRx280nqDa6u GBfbnoULFeMEhbxVYGtGq67vgGKIoUXw5ZXBPeA/+zo6CyB6JBmPuRQwNOhglvWNtCVJ EaQI/XUIWWEULU3WZAYLuLSFmFrhJK2H4wzcytjFDDxLaxzVrzoG2VbAK6s730kH8RyT 3QKk9zqfRMnTo18B1HOrIafshJXmn6i7wyWaWYfINza2k5zHLcA5bkjAJAStTzN83+/C l1w8yY3AtAvpTFq1nwWBKwmw+EbtHththEa6/TchuVcJpSjJExA/SLOy6OIgU2qst2I0 k4kw== X-Gm-Message-State: ALoCoQndAg3fVv4y6q2CQoPZCWKfFSfe6xmGY9yVdRpsKt3WgRA5dfE4Y//rx8duiDNvkV5hkwKG MIME-Version: 1.0 X-Received: by 10.236.203.193 with SMTP id f41mr19202007yho.191.1425158968232; Sat, 28 Feb 2015 13:29:28 -0800 (PST) Received: by 10.170.56.134 with HTTP; Sat, 28 Feb 2015 13:29:28 -0800 (PST) In-Reply-To: References: Date: Sat, 28 Feb 2015 22:29:28 +0100 Message-ID: Subject: Re: atkbd.c not compiling? From: Oliver Pinter To: Ryan Stone Content-Type: text/plain; charset=UTF-8 Cc: FreeBSD Current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18-1 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: Sat, 28 Feb 2015 22:31:19 -0000 On Sat, Feb 28, 2015 at 10:25 PM, Ryan Stone wrote: > I updated my source tree this morning and now I'm seeing this compile > error in "make tinderbox"; > > /repos/users/rstone/freebsd/sys/dev/atkbdc/atkbd.c:382:26: error: use of undecla > red identifier 'key_map'; did you mean 'keymap'? > keymap = malloc(sizeof(key_map), M_DEVBUF, M_NOWAIT); > ^~~~~~~ > keymap > /repos/users/rstone/freebsd/sys/dev/atkbdc/atkbd.c:358:12: note: 'keymap' declar > ed here > keymap_t *keymap; > /repos/users/rstone/freebsd/sys/dev/atkbdc/atkbd.c:383:26: error: use of undecla > red identifier 'accent_map'; did you mean 'accentmap_t'? > accmap = malloc(sizeof(accent_map), M_DEVBUF, M_NOWAIT); > ^ > /repos/users/rstone/freebsd/sys/sys/kbio.h:210:26: note: 'accentmap_t' declared > here > typedef struct accentmap accentmap_t; > Hi! See these PRs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193817 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193865 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194744 > > > (By the way, this is the second time in two days that "make tinderbox" > has been broken for me. It's extremely frustrating that I can't test > my pending commits because others haven't done me the same courtesy) > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"