fix: fixed version of libconfig

pull/12/head
Falk Werner 4 years ago
parent dfd2cd4bc0
commit ce2f70f230

@ -5,7 +5,7 @@ without_userdb = get_option('without_userdb')
c_compiler = meson.get_compiler('c')
libconfig_dep = dependency('libconfig', version: '>=1.4')
libconfig_dep = dependency('libconfig', version: '>=1.5')
pam_dep = c_compiler.find_library('pam')
libwebsockets_dep = dependency('libwebsockets', version: '>=4.0.0')

@ -9,7 +9,7 @@
#include <stdbool.h>
#if ((LIBCONFIG_VER_MAJOR != 1) || (LIBCONFIG_VER_MINOR < 4))
#if ((LIBCONFIG_VER_MAJOR != 1) || (LIBCONFIG_VER_MINOR < 5))
#error "libconfig 1.5 or higher needed"
#endif

Loading…
Cancel
Save