You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Debian 9
Linux version 4.9.0-3-amd64 ([email protected]) (gcc version 6.3.0 20170516 (Debian 6.3.0-18) ) #1 SMP Debian 4.9.30-2+deb9u2 (2017-06-26)
user@debian:~/minivtun/src$ make
cc -Wall -c -o library.o library.c
library.c: In function ‘datagram_encrypt’:
library.c:74:17: error: storage size of ‘ctx’ isn’t known
EVP_CIPHER_CTX ctx;
^~~
library.c:74:17: warning: unused variable ‘ctx’ [-Wunused-variable]
library.c: In function ‘datagram_decrypt’:
library.c:97:17: error: storage size of ‘ctx’ isn’t known
EVP_CIPHER_CTX ctx;
^~~
library.c:97:17: warning: unused variable ‘ctx’ [-Wunused-variable]
Makefile:19: recipe for target 'library.o' failed
make: *** [library.o] Error 1
I also copied a compiled minivtun from other Linux distro, and tried to run on debian 9, unfortunately it also failed.
user@debian:~/minivtun$ ./minivtun -h
./minivtun: error while loading shared libraries: libcrypto.so.10: cannot open shared object file: No such file or directory
The text was updated successfully, but these errors were encountered:
Debian 9
Linux version 4.9.0-3-amd64 ([email protected]) (gcc version 6.3.0 20170516 (Debian 6.3.0-18) ) #1 SMP Debian 4.9.30-2+deb9u2 (2017-06-26)
user@debian:~/minivtun/src$ make
cc -Wall -c -o library.o library.c
library.c: In function ‘datagram_encrypt’:
library.c:74:17: error: storage size of ‘ctx’ isn’t known
EVP_CIPHER_CTX ctx;
^~~
library.c:74:17: warning: unused variable ‘ctx’ [-Wunused-variable]
library.c: In function ‘datagram_decrypt’:
library.c:97:17: error: storage size of ‘ctx’ isn’t known
EVP_CIPHER_CTX ctx;
^~~
library.c:97:17: warning: unused variable ‘ctx’ [-Wunused-variable]
Makefile:19: recipe for target 'library.o' failed
make: *** [library.o] Error 1
I also copied a compiled minivtun from other Linux distro, and tried to run on debian 9, unfortunately it also failed.
user@debian:~/minivtun$ ./minivtun -h
./minivtun: error while loading shared libraries: libcrypto.so.10: cannot open shared object file: No such file or directory
The text was updated successfully, but these errors were encountered: