configure.ac 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. m4_define([SCRYPT_VERS],m4_include([scrypt-version]))
  2. AC_INIT([scrypt],SCRYPT_VERS())
  3. AC_CONFIG_AUX_DIR([config.aux])
  4. AM_INIT_AUTOMAKE()
  5. AM_MAINTAINER_MODE
  6. AC_PROG_CC
  7. # Look for sys/endian.h and be64enc. Old versions of NetBSD have
  8. # sys/endian.h but don't have the (le|be)(32|64)(enc|dec) functions in it.
  9. AC_CHECK_HEADERS([sys/endian.h])
  10. AC_CHECK_DECLS([be64enc], [], [], [[#include <sys/endian.h>]])
  11. # Check for err.h; if not present, we need to provide warn() and warnx().
  12. AC_CHECK_HEADERS([err.h])
  13. # Check for clock_gettime. On some systems, this is provided via librt.
  14. AC_CHECK_LIB(rt, clock_gettime)
  15. AC_CHECK_FUNCS([clock_gettime])
  16. # Check for a linuxy sysinfo syscall; and while we're doing that, check if
  17. # struct sysinfo is the old version (total RAM == totalmem) or the new
  18. # version (total RAM == totalmem * mem_unit).
  19. AC_CHECK_HEADERS([sys/sysinfo.h])
  20. AC_CHECK_FUNCS([sysinfo])
  21. AC_CHECK_TYPES([struct sysinfo], [], [], [[#include <sys/sysinfo.h>]])
  22. AC_CHECK_MEMBERS([struct sysinfo.totalram, struct sysinfo.mem_unit],
  23. [], [], [[#include <sys/sysinfo.h>]])
  24. # Check if we have a hw.usermem sysctl.
  25. CHECK_SYSCTL_HW_USERMEM
  26. # Check if we have <sys/param.h>, since some systems require it for sysctl
  27. # to work.
  28. AC_CHECK_HEADERS([sys/param.h])
  29. # Check for posix_memalign
  30. AC_CHECK_FUNCS([posix_memalign])
  31. # Figure out whether we want to use the SSE version of the scrypt code or not.
  32. AC_ARG_ENABLE([sse2],
  33. [AS_HELP_STRING([--enable-sse2],
  34. [use optimized SSE2 code])],
  35. [],
  36. [enable_sse2=no])
  37. AS_IF([test "x$enable_sse2" != xno], [SCRYPTVER=sse], [SCRYPTVER=nosse])
  38. AC_SUBST([SCRYPTVER])
  39. AC_CONFIG_HEADERS([config.h])
  40. AC_CONFIG_FILES([Makefile])
  41. AC_OUTPUT