Daniel E. Macks wrote: > Many of the function prototypes in /usr/include/crypt.h on my RedHat > box are in /usr/include/unistd.h on my OS X machine.
I bet it's just the crypt() function in this case. This is in unistd.h, indeed, see man crypt. Anyway, the #include in question is conditional: #if !defined(__ppc__) && !defined(__FreeBSD__) #include <crypt.h> #endif This is rather weird code - why should the processor type be important here? - but it is a strong hint that it is not needed on MacOSX. If it works with gcrypt.h instead of crypt.h, this is as good as a proof that it is not needed at all, because all the symbols in gcrypt.h have names starting with "g", and none of these is used in emboss. To test it, you would have to get into a situation where emboss asks you for your password. -- Martin ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Fink-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fink-devel
