diff -up Crypt_RSA-0.3.7/RSA.php.role Crypt_RSA-0.3.7/RSA.php --- Crypt_RSA-0.3.7/RSA.php.role 2014-07-07 17:19:19.711010692 +0200 +++ Crypt_RSA-0.3.7/RSA.php 2014-07-07 17:19:19.712010697 +0200 @@ -178,7 +178,7 @@ define('CRYPT_RSA_MODE_OPENSSL', 2); /** * Default openSSL configuration file. */ -define('CRYPT_RSA_OPENSSL_CONFIG', dirname(__FILE__) . '/../openssl.cnf'); +define('CRYPT_RSA_OPENSSL_CONFIG', 'openssl.cnf'); /**#@+ * @access public @@ -490,7 +490,14 @@ class Crypt_RSA include_once 'Math/BigInteger.php'; } - $this->configFile = CRYPT_RSA_OPENSSL_CONFIG; + $dir = '@cfg_dir@' . DIRECTORY_SEPARATOR . 'Crypt_RSA'; + if (strpos($dir, '@') === false) { + // PEAR installer was used to install the package + } else { + // manual install + $dir = dirname(__FILE__); + } + $this->configFile = $dir . DIRECTORY_SEPARATOR . CRYPT_RSA_OPENSSL_CONFIG; if ( !defined('CRYPT_RSA_MODE') ) { // Math/BigInteger's openssl requirements are a little less stringent than Crypt/RSA's. in particular,