Browse Source

Check version of libsodium

pull/1165/head
Max Lv 7 years ago
parent
commit
0c4292c637
1 changed files with 10 additions and 0 deletions
  1. 10
      m4/sodium.m4

10
m4/sodium.m4

@ -27,4 +27,14 @@ AC_DEFUN([ss_SODIUM],
[AC_MSG_ERROR([The Sodium crypto library libraries not found.])] [AC_MSG_ERROR([The Sodium crypto library libraries not found.])]
) )
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
#include <sodium.h>
], [
#if SODIUM_LIBRARY_VERSION_MAJOR < 9
# error
#endif
])],
[AC_MSG_RESULT([checking for version of libsodium... yes])],
[AC_MSG_ERROR([Wrong libsodium: version >= 1.0.9 required])])
]) ])
Loading…
Cancel
Save