Date: Tue, 23 May 2000 20:27:10 -0700 From: Jake Burkholder <jburkhol@home.com> To: Chuck Robey <chuckr@picnic.mat.net> Cc: FreeBSD-current <current@FreeBSD.ORG> 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 ... Message-ID: <20000524032710.DBF18BA69@io.yi.org> In-Reply-To: Message from Chuck Robey <chuckr@picnic.mat.net> of "Tue, 23 May 2000 23:10:13 EDT." <Pine.BSF.4.21.0005232304410.373-100000@picnic.mat.net>
next in thread | previous in thread | raw e-mail | index | archive | help
>
> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000524032710.DBF18BA69>
