fixed includes and function checks for scrypt

This commit is contained in:
TLINDEN
2015-04-17 14:14:38 +02:00
parent 177ad8a8f2
commit 9737893e0a
3 changed files with 11 additions and 0 deletions

View File

@@ -77,7 +77,9 @@ AC_CHECK_FUNCS( \
malloc \
memset \
memcpy \
mmap \
perror \
posix_memalign \
setrlimit \
strnlen \
strnstr \

View File

@@ -82,6 +82,9 @@
/* Define to 1 if you have the `memset' function. */
#undef HAVE_MEMSET
/* Define to 1 if you have the `mmap' function. */
#undef HAVE_MMAP
/* Define to 1 if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H

View File

@@ -0,0 +1,6 @@
#ifndef _SCRYPT_PLATFORM_H_
#define _SCRYPT_PLATFORM_H_
#include "platform.h"
#endif /* !_SCRYPT_PLATFORM_H_ */