[git-users] How do I tell git to use openssl in /usr/local

2015-10-14 Thread Greg Ramos
I am trying to build git from source. I have new versions of openssl and libcurl. When I type 'make', the build wants to use libcryto in /usr/lib64. How do I tell the build to use what's in /usr/local? Thanks. -- You received this message because you are subscribed to the Google Groups "Git

Re: [git-users] How do I tell git to use openssl in /usr/local

2015-10-14 Thread John McKown
You haven't said what you have already done. What I would suggest would be to do something like: make configure # get openssl & curl from /usr/local/lib and /usr/local/include (libraries & headers) ./configure --with-openssl=/usr/local/ --with-curl=/usr/local/ #and any others make On Wed, Oct

Re: [git-users] How do I tell git to use openssl in /usr/local

2015-10-14 Thread Greg Ramos
I was hoping there was an environment variable. On Wednesday, October 14, 2015 at 8:34:37 AM UTC-7, Konstantin Khomoutov wrote: > > On Wed, 14 Oct 2015 07:56:29 -0700 (PDT) > Greg Ramos wrote: > > > I am trying to build git from source. I have new versions of openssl > >

Re: [git-users] How do I tell git to use openssl in /usr/local

2015-10-14 Thread Konstantin Khomoutov
On Wed, 14 Oct 2015 07:56:29 -0700 (PDT) Greg Ramos wrote: > I am trying to build git from source. I have new versions of openssl > and libcurl. When I type 'make', the build wants to use libcryto > in /usr/lib64. How do I tell the build to use what's in /usr/local? Usually