Re: OpenSSL 1.0.1c, Mac OS X, -no-XXX, and [missing] make depend

2013-01-19 Thread Ben Laurie
On 26 December 2012 20:07, Jeffrey Walton noloa...@gmail.com wrote:
 On Wed, Dec 26, 2012 at 9:57 AM, Ben Laurie b...@links.org wrote:
 On Tue, Dec 25, 2012 at 1:35 PM, Jeffrey Walton noloa...@gmail.com wrote:
 I fetched `makedepend` from FreeDesktop.org
 (http://xorg.freedesktop.org/releases/individual/util/). It would not
 build due to missing dependencies. Ad infinitum.

 $ port search makedepend
 makedepend @1.0.4 (x11, devel)
 Create dependencies in makefiles
 Ah, thanks Ben. I did not think to try MacPorts.

BTW, commit a6bbbf2ff5580addb917a8b4f1160f90af91d268, when I push it,
fixes this to use clang instead of makdepend (in master, I may update
other branches, too).


 Jeff
 __
 OpenSSL Project http://www.openssl.org
 User Support Mailing Listopenssl-users@openssl.org
 Automated List Manager   majord...@openssl.org
__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: OpenSSL 1.0.1c, Mac OS X, -no-XXX, and [missing] make depend

2013-01-19 Thread Jeffrey Walton
On Sat, Jan 19, 2013 at 9:17 AM, Ben Laurie b...@links.org wrote:
 On 26 December 2012 20:07, Jeffrey Walton noloa...@gmail.com wrote:
 On Wed, Dec 26, 2012 at 9:57 AM, Ben Laurie b...@links.org wrote:
 On Tue, Dec 25, 2012 at 1:35 PM, Jeffrey Walton noloa...@gmail.com wrote:
 I fetched `makedepend` from FreeDesktop.org
 (http://xorg.freedesktop.org/releases/individual/util/). It would not
 build due to missing dependencies. Ad infinitum.

 $ port search makedepend
 makedepend @1.0.4 (x11, devel)
 Create dependencies in makefiles
 Ah, thanks Ben. I did not think to try MacPorts.

 BTW, commit a6bbbf2ff5580addb917a8b4f1160f90af91d268, when I push it,
 fixes this to use clang instead of makdepend (in master, I may update
 other branches, too).
Thanks Ben.

Let me know if you would like me to test it on modern Mac OS X,
including iOS cross compile environment before you commit.

My eventual desire is to have configure targets for iphoneos,
iphonesimulator, and macosx that use SYSROOT. The darwin targets will
not be touched.

I can then package the libraries, the headers and their tools (incore)
into a Framework, and stop fighting Xcode and its Build Settings
(including the cursed User Paths and System Paths). Its not so much me
- its more for the organizations I work with.

Jeff
__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


cnf file format changes among versions

2013-01-19 Thread Felipe Gasper
Does anything out there describe the changes in cnf file format among 
the different OpenSSL versions?


-F
__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: print result of SSL_get_verify_result

2013-01-19 Thread ask
Thanks, 


Is there is a function in ERR_*  that can print the text from code?


A




 From: Jeffrey Walton noloa...@gmail.com
To: as...@yahoo.com 
Sent: Thursday, January 17, 2013 8:32 PM
Subject: Re: print result of SSL_get_verify_result
 
On Thu, Jan 17, 2013 at 9:17 PM, ask as...@yahoo.com wrote:
 How can I print out result string from return code of
 SSL_get_verify_result?
 For example, for my test, I got 18,
 ERR_error_string( return_code) does not yield any thing?
From verify(1) man page (http://www.openssl.org/docs/apps/verify.html):

18   X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT

Jeff