With existing layout the built shared library will end up in the `./lib` directory, but the expected location being checked is `./lib/vagrant`. Adjusting the path within the extension directory results in the proper adjustment to the installation path.
15 lines
250 B
C
15 lines
250 B
C
#if !defined(_VAGRANT_SSL_H_)
|
|
#define _VAGRANT_SSL_H_
|
|
|
|
#include <openssl/opensslv.h>
|
|
#if OPENSSL_VERSION_NUMBER >= (3 << 28)
|
|
#define _VAGRANT_SSL_PROVIDER_
|
|
|
|
#include <ruby.h>
|
|
#include <openssl/provider.h>
|
|
#endif
|
|
|
|
void Init_vagrant_ssl(void);
|
|
|
|
#endif
|