From owner-freebsd-current Tue May 23 20:26:45 2000 Delivered-To: freebsd-current@freebsd.org Received: from io.yi.org (24.67.218.186.bc.wave.home.com [24.67.218.186]) by hub.freebsd.org (Postfix) with ESMTP id 1208E37B551 for ; Tue, 23 May 2000 20:26:38 -0700 (PDT) (envelope-from jburkhol@home.com) Received: from io.yi.org (localhost.gvcl1.bc.wave.home.com [127.0.0.1]) by io.yi.org (Postfix) with ESMTP id DBF18BA69; Tue, 23 May 2000 20:27:10 -0700 (PDT) X-Mailer: exmh version 2.1.1 10/15/1999 To: Chuck Robey Cc: FreeBSD-current Subject: Re: HEADS UP Re: cvs commit: src/crypto/openssh/pam_ssh pam_ssh.c src/gnu/usr.bin/binutils/gdb freebsd-uthread.c src/include mpool.h src/lib/libc/net name6.c src/lib/libc_r/uthread pthread_private.h uthread_file.c src/lib/libncp ncpl_rcfile.c src/lib/libstand if_ether.h ... In-Reply-To: Message from Chuck Robey of "Tue, 23 May 2000 23:10:13 EDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 23 May 2000 20:27:10 -0700 From: Jake Burkholder Message-Id: <20000524032710.DBF18BA69@io.yi.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Is anyone else having trouble compiling the libpam things, because of > this? I couldn't compile a kernel because of the the assembler changes, > so I went to do a buildworld, and now I can't get thru a buildworld. I > tried the suggestion above (do a make includes) but that didn't seem to do > the trick. Here's about the first 5 of the 30 (or so) errors I see: > I've just built a fresh world here; if you use the cvs-crypto from internat, it may be broken. I submitted a patch to Mark Murray which should fix it, here it is again just in case: Index: crypto/openssh/pam_ssh/pam_ssh.c =================================================================== RCS file: /home/ncvs/src/crypto/openssh/pam_ssh/pam_ssh.c,v retrieving revision 1.4 diff -u -r1.4 pam_ssh.c --- crypto/openssh/pam_ssh/pam_ssh.c 2000/03/29 08:24:37 1.4 +++ crypto/openssh/pam_ssh/pam_ssh.c 2000/05/22 18:14:51 @@ -86,11 +86,11 @@ * environ at an array of one element equal to NULL). */ -SLIST_HEAD(env_head, env_entry); +SLIST_HEAD(env_head, struct env_entry); struct env_entry { char *ee_env; - SLIST_ENTRY(env_entry) ee_entries; + SLIST_ENTRY(struct env_entry) ee_entries; }; typedef struct env { To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message