fix for mac

This commit is contained in:
Daniel Larimer 2014-06-03 11:16:29 -04:00
parent 5a0f996333
commit 73dd2d68ea
2 changed files with 12 additions and 9 deletions

View file

@ -312,8 +312,10 @@ ELSE()
SET (OPENSSL_CONF_TARGET ${CMAKE_CURRENT_BINARY_DIR})
ENDIF()
IF(WIN32)
SET(POST_BUILD_STEP_COMMANDS ${POST_BUILD_STEP_COMMANDS}
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${OPENSSL_ROOT_DIR}/ssl/openssl.cnf" "${OPENSSL_CONF_TARGET}/openssl.cnf")
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${OPENSSL_ROOT_DIR}/ssl/openssl.cnf" "${OPENSSL_CONF_TARGET}/openssl.cnf")
ENDIF(WIN32)
ADD_CUSTOM_COMMAND(TARGET fc POST_BUILD ${POST_BUILD_STEP_COMMANDS}
COMMENT "Copying OpenSSL/ssl/openssl.cnf into target directory."

View file

@ -6,12 +6,13 @@
#include <cstdlib>
#include <string>
#include <stdlib.h>
namespace fc
{
struct openssl_scope
{
static path _configurationFilePath;
static path _configurationFilePath;
openssl_scope()
{
ERR_load_crypto_strings();
@ -19,11 +20,11 @@ namespace fc
const boost::filesystem::path& boostPath = _configurationFilePath;
if(boostPath.empty() == false)
{
std::string varSetting("OPENSSL_CONF=");
varSetting += _configurationFilePath.to_native_ansi_path();
putenv(varSetting.c_str());
}
{
std::string varSetting("OPENSSL_CONF=");
varSetting += _configurationFilePath.to_native_ansi_path();
putenv((char*)varSetting.c_str());
}
OPENSSL_config(nullptr);
}
@ -38,9 +39,9 @@ namespace fc
path openssl_scope::_configurationFilePath;
void store_configuration_path(const path& filePath)
{
{
openssl_scope::_configurationFilePath = filePath;
}
}
int init_openssl()
{