1
0
mirror of https://github.com/falk-werner/webfused synced 2024-10-27 20:44:08 +00:00

fix: fixed version of libconfig

This commit is contained in:
Falk Werner 2020-11-11 22:24:03 +01:00
parent dfd2cd4bc0
commit ce2f70f230
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ without_userdb = get_option('without_userdb')
c_compiler = meson.get_compiler('c') 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') pam_dep = c_compiler.find_library('pam')
libwebsockets_dep = dependency('libwebsockets', version: '>=4.0.0') libwebsockets_dep = dependency('libwebsockets', version: '>=4.0.0')

View File

@ -9,7 +9,7 @@
#include <stdbool.h> #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" #error "libconfig 1.5 or higher needed"
#endif #endif