endif
OLD_SOLARIS= $(shell echo "$(OSREL)" | \
sed -e 's/^5\.[0-6][^0-9]*$$/yes/' )
- LIBS+= -L$(LOCALBASE)/lib -lxnet -lsocket -lnsl
+ LIBS+= -L$(LOCALBASE)/lib -lxnet -lsocket -lnsl -lmd5
ifeq ($(OLD_SOLARIS), yes)
LIBS+=-lposix4
else
#include "md5.h"
+#ifndef __OS_solaris
+
#define PUT_64BIT_LE(cp, value) do { \
(cp)[7] = (value) >> 56; \
(cp)[6] = (value) >> 48; \
state[2] += c;
state[3] += d;
}
+
+#endif /* __OS_solaris */
#ifndef _MD5_H_
#define _MD5_H_
+#ifndef __OS_solaris
+
#define MD5_BLOCK_LENGTH 64
#define MD5_DIGEST_LENGTH 16
#define MD5_DIGEST_STRING_LENGTH (MD5_DIGEST_LENGTH * 2 + 1)
/* Probably not the proper place, but will do for Debian: */
#include <sys/types.h>
-/* fix types for Sun Solaris */
-#if defined(__SVR4) || defined(__sun)
- typedef uint8_t u_int8_t;
- typedef uint32_t u_int32_t;
- typedef uint64_t u_int64_t;
-#endif
-
typedef struct MD5Context {
u_int32_t state[4]; /* state */
u_int64_t count; /* number of bits, mod 2^64 */
U_MD5Final((unsigned char *)buf, ctx);
}
+#else /* __OS_solaris */
+#include <md5.h>
+
+#define U_MD5Update(ctx, input, len) \
+ MD5Update(ctx, input, len)
+#define U_MD5Final(digest, ctx) \
+ MD5Final(digest, ctx)
+
+#endif /* __OS_solaris */
+
#endif /* _MD5_H_ */