Chris Roberts b494c30ced Adjust extension location for correct install path
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.
2023-06-21 09:43:28 -07:00

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