From: Eric W. <war...@us...> - 2001-11-11 18:07:48
|
Update of /cvsroot/gaim/gaim/src/protocols/yahoo In directory usw-pr-cvs1:/tmp/cvs-serv6069/src/protocols/yahoo Modified Files: yahoo.c Log Message: some people don't have crypt.h, apparently. Index: yahoo.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/yahoo/yahoo.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- yahoo.c 2001/11/10 01:30:13 1.8 +++ yahoo.c 2001/11/11 18:07:45 1.9 @@ -37,7 +37,9 @@ #include <sys/socket.h> #include <sys/stat.h> #include <ctype.h> +#if HAVE_CRYPT_H #include <crypt.h> +#endif #include "multi.h" #include "prpl.h" #include "gaim.h" |