Re: [Resin-interest] OpenSSL Issues Building/Installing 4.0.41 on OS X 10.10 Yosemite

2014-10-26 Thread Keith Fetterman
Hi Rick

Do you have Xcode installed?  I have not tried to build resin on OS X 10.10, 
but I had a similar problem on OS X 10.9 until I installed Xcode.

When I was building Resin 4.0.37, I also had to create the symlink  
/usr/local/include that pointed to:

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include

I hope this helps

Keith


On Oct 26, 2014, at 2:12 PM, Rick Mann rm...@latencyzero.com wrote:

 I just tried to download and install 4.0.41, and got this:
 
  OPENSSL : No OpenSSL has been found
*** OpenSSL libraries cannot be compiled ***
 
 The full output is here: http://pastebin.com/VfB7NsNY
 
 I think this is due to Apple deprecating OpenSSL. 
 
 -- 
 Rick Mann
 rm...@latencyzero.com
 
 
 
 ___
 resin-interest mailing list
 resin-interest@caucho.com
 http://maillist.caucho.com/mailman/listinfo/resin-interest

___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] OpenSSL Issues Building/Installing 4.0.41 on OS X 10.10 Yosemite

2014-10-26 Thread Rick Mann
Yes, of course Xcode is installed. I see what your solution is doing, but 
that's a pretty heavy-handed fix, especially if one has brew installed.

I'm trying to install openssl via brew; we'll see where that leads.

 On Oct 26, 2014, at 14:18 , Keith Fetterman keithfetter...@gmail.com wrote:
 
 Hi Rick
 
 Do you have Xcode installed?  I have not tried to build resin on OS X 10.10, 
 but I had a similar problem on OS X 10.9 until I installed Xcode.
 
 When I was building Resin 4.0.37, I also had to create the symlink  
 /usr/local/include that pointed to:
 
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include
 
 I hope this helps
 
 Keith
 
 
 On Oct 26, 2014, at 2:12 PM, Rick Mann rm...@latencyzero.com wrote:
 
 I just tried to download and install 4.0.41, and got this:
 
  OPENSSL : No OpenSSL has been found
*** OpenSSL libraries cannot be compiled ***
 
 The full output is here: http://pastebin.com/VfB7NsNY
 
 I think this is due to Apple deprecating OpenSSL. 
 
 -- 
 Rick Mann
 rm...@latencyzero.com
 
 
 
 ___
 resin-interest mailing list
 resin-interest@caucho.com
 http://maillist.caucho.com/mailman/listinfo/resin-interest
 
 ___
 resin-interest mailing list
 resin-interest@caucho.com
 http://maillist.caucho.com/mailman/listinfo/resin-interest


-- 
Rick Mann
rm...@latencyzero.com



___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] OpenSSL Issues Building/Installing 4.0.41 on OS X 10.10 Yosemite

2014-10-26 Thread Rick Mann
It worked, to use brew to install openssl (or update to the latest):

$ brew update  brew upgrade
$ brew install openssl  brew link openssl --force

 On Oct 26, 2014, at 14:19 , Rick Mann rm...@latencyzero.com wrote:
 
 Yes, of course Xcode is installed. I see what your solution is doing, but 
 that's a pretty heavy-handed fix, especially if one has brew installed.
 
 I'm trying to install openssl via brew; we'll see where that leads.
 
 On Oct 26, 2014, at 14:18 , Keith Fetterman keithfetter...@gmail.com wrote:
 
 Hi Rick
 
 Do you have Xcode installed?  I have not tried to build resin on OS X 10.10, 
 but I had a similar problem on OS X 10.9 until I installed Xcode.
 
 When I was building Resin 4.0.37, I also had to create the symlink  
 /usr/local/include that pointed to:
 
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include
 
 I hope this helps
 
 Keith
 
 
 On Oct 26, 2014, at 2:12 PM, Rick Mann rm...@latencyzero.com wrote:
 
 I just tried to download and install 4.0.41, and got this:
 
 OPENSSL : No OpenSSL has been found
   *** OpenSSL libraries cannot be compiled ***
 
 The full output is here: http://pastebin.com/VfB7NsNY
 
 I think this is due to Apple deprecating OpenSSL. 
 
 -- 
 Rick Mann
 rm...@latencyzero.com
 
 
 
 ___
 resin-interest mailing list
 resin-interest@caucho.com
 http://maillist.caucho.com/mailman/listinfo/resin-interest
 
 ___
 resin-interest mailing list
 resin-interest@caucho.com
 http://maillist.caucho.com/mailman/listinfo/resin-interest
 
 
 -- 
 Rick Mann
 rm...@latencyzero.com
 
 
 
 ___
 resin-interest mailing list
 resin-interest@caucho.com
 http://maillist.caucho.com/mailman/listinfo/resin-interest


-- 
Rick Mann
rm...@latencyzero.com



___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] OpenSSL Issues Building/Installing 4.0.41 on OS X 10.10 Yosemite

2014-10-26 Thread Keith Fetterman
The need to create a symlink was when I was setting up my development 
environment in the fall of 2013.  When I recently helped some other developers 
compile Resin 4.0.41 with openssl on OS X 10.9, I did not have to create the 
symlink.  The configure script found the openssl libraries.  I never researched 
why.  I guess that either a new version of Resin, an update to OS X 10.9 or an 
update to Xcode resolved the issue. 


On Oct 26, 2014, at 2:19 PM, Rick Mann rm...@latencyzero.com wrote:

 Yes, of course Xcode is installed. I see what your solution is doing, but 
 that's a pretty heavy-handed fix, especially if one has brew installed.
 
 I'm trying to install openssl via brew; we'll see where that leads.
 
 On Oct 26, 2014, at 14:18 , Keith Fetterman keithfetter...@gmail.com wrote:
 
 Hi Rick
 
 Do you have Xcode installed?  I have not tried to build resin on OS X 10.10, 
 but I had a similar problem on OS X 10.9 until I installed Xcode.
 
 When I was building Resin 4.0.37, I also had to create the symlink  
 /usr/local/include that pointed to:
 
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include
 
 I hope this helps
 
 Keith
 
 
 On Oct 26, 2014, at 2:12 PM, Rick Mann rm...@latencyzero.com wrote:
 
 I just tried to download and install 4.0.41, and got this:
 
 OPENSSL : No OpenSSL has been found
   *** OpenSSL libraries cannot be compiled ***
 
 The full output is here: http://pastebin.com/VfB7NsNY
 
 I think this is due to Apple deprecating OpenSSL. 
 
 -- 
 Rick Mann
 rm...@latencyzero.com
 
 
 
 ___
 resin-interest mailing list
 resin-interest@caucho.com
 http://maillist.caucho.com/mailman/listinfo/resin-interest
 
 ___
 resin-interest mailing list
 resin-interest@caucho.com
 http://maillist.caucho.com/mailman/listinfo/resin-interest
 
 
 -- 
 Rick Mann
 rm...@latencyzero.com
 
 
 
 ___
 resin-interest mailing list
 resin-interest@caucho.com
 http://maillist.caucho.com/mailman/listinfo/resin-interest


___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest