Hello,

Thanks. My comments follows....

> Well, I am not much of a C programmer, but this at
> least compiles:
> 
> Script started on Mon Mar  5 20:13:06 2001
> [whit@giftie whit]$ cat oof.c
> #include <sys/types.h>
> #include <sys/socket.h>
> int main()
> {
>       struct sockaddr_storage ss;
>       if (ss.__ss_family == AF_INET6);
> 
>       return 0;
> }
> [whit@giftie whit]$ gcc -o no -Wall oof.c
> [whit@giftie whit]$ ./no
> [whit@giftie whit]$ exit
> exit
> 
> Script done on Mon Mar  5 20:13:47 2001
> 
> Mind, it doesn't _do_ anything, but it compiles
> clean.


Yeah, if I change ss_family to __ss_family, it works
fine, but it causes problems elsewhere in the program.

I'm trying to get this package nkit-0.5.1 from
ftp://ftp.suse.com/pub/people/kukuk/ipv6/  to work on
Redhat7.0.  However, Redhat7.0 usese glibc version
2.2. and it needs the patch:
ftp://ftp.suse.com/pub/people/kukuk/ipv6/nkit-0.5.1-glibc-2.2.2.dif

The patch tells me to change ss._ss_family to
ss.ss_family. I did that, but I got errors not
recognizing 'ss_family'.  I wonder why they request
this change? Perhaps it has worked for others?
Is anyone else trying to install the same package on
Redhat7.0?

Thanks!

Susan



__________________________________________________
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.linux-learn.org/faqs

Reply via email to