> 
> 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 [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to