always enable md5 crypt

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6808 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-08-13 03:44:35 +00:00
parent 5bb182ccbd
commit d54d42eba4

View File

@@ -99,10 +99,14 @@
#define STATIC static
#endif
/* It is really only FreeBSD that still suffers from MD5 based crypts */
#ifdef __FreeBSD__
/* It used to be Only FreeBSD that had MD5 based crypts, but now it's
* also the case on Redhat linux 6.0 and OpenBSD so we always include
* this code. That solves the problem of making the test program
* conditional as well.
*/
#define MD5_CRYPT_SUPPORT 1
#endif
#if MD5_CRYPT_SUPPORT
/*
* ----------------------------------------------------------------------------