LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Debian (https://www.linuxquestions.org/questions/debian-26/)
-   -   application install doesn't see ncurses or openssl... why?! (https://www.linuxquestions.org/questions/debian-26/application-install-doesnt-see-ncurses-or-openssl-why-487952/)

punt 09-30-2006 10:41 PM

The thing is, it wants to compile against the binary:

Code:

SSL-Support: Yes, but no openssl binary found in "/usr/include/openssl/".Creating Makefile
Moving the openssl binary to /usr/include/openssl didn't work either.

HappyTux 09-30-2006 10:58 PM

Quote:

Originally Posted by punt
The thing is, it wants to compile against the binary:

Code:

SSL-Support: Yes, but no openssl binary found in "/usr/include/openssl/".Creating Makefile
Moving the openssl binary to /usr/include/openssl didn't work either.

I'm out of ideas then I'd say check the website to see what they have there on compiling/support for it.

punt 09-30-2006 11:05 PM

Thanks for bearing with me, HappyTux. I emailed a developer. We'll see what he says ... hopefully these guys still check their email.

tworkemon 02-03-2007 08:52 AM

I am having the same exact problem. Did you find the answer yet ??

aLTeA 05-09-2007 05:03 PM

It May Works
 
Hello =)

I register here to reply this post ( but if you want a frenchy, i'll stay ;) )

I have a dedicated with Debian sarge, and I search on the net for the same prob.

I have found a solution who works for me :

Install openssl and dev lib
Under menuconfig (or in config.h) set ssl path to "/usr"

I hope this solution will fix your prob !

Regards =)

Dutch Master 05-09-2007 05:08 PM

Sure, any Linux user is welcome here, no matter where you come from ;) You'll find that hanging out here improves your skills in English over time :)

Angerphile 07-31-2007 05:47 AM

Quote:

Originally Posted by aLTeA
Hello =)

I register here to reply this post ( but if you want a frenchy, i'll stay ;) )

I have a dedicated with Debian sarge, and I search on the net for the same prob.

I have found a solution who works for me :

Install openssl and dev lib
Under menuconfig (or in config.h) set ssl path to "/usr"

I hope this solution will fix your prob !

Regards =)

While I do wish to thank you for this information. However, I have the same issue as the op. Except not on Debian. (However, same issue, why make a new thread...)

Despite the fact that:
[root@server root]# rpm -qa | grep openssl
openssl-devel-0.9.7a-33.23
openssl-0.9.7a-33.23
[root@server root]#

I still receive the error "SSL-Support: No openssl found. Get openssl at ...". A quick 'which' gives me "/usr/bin/openssl"

Yes, this has been driving me INSANE! =)

antishane 10-18-2010 01:06 PM

answer -
 
yum install ncurses-devel or apt-get, or whatever.

it needs the development library.

Carmageddon 10-31-2011 03:22 AM

Guys, I still have the same problem in centos.

With little help from this thread I've also reached the point where no binary is found.


rpm -qa | grep openssl
openssl-0.9.8e-20.el5
openssl-0.9.8e-20.el5
openssl-devel-0.9.8e-20.el5

Where to find the openssl-dev executable?

cutiepie666 05-03-2015 03:30 PM

fix openssl not found problem when compilig psybnc
 
go to your psybnc dir, /tools

edit autoconf.c (located in psybnc/tools)

at line 171 you should find "#ifdef SSLPATH"

replace the following lines until the next "#else" statement with the following code:

Code:

strcpy(mbuf,SSLPATH);
    if(mbuf[strlen(mbuf)-1]!='/')
    strcat(mbuf,"/");
    strcpy(sysbuf,"gcc tools/chkssl.c -I");
    strcat(sysbuf,mbuf);
    //strcat(sysbuf,"include -L");
    //strcat(sysbuf,mbuf);
    //strcat(sysbuf,"lib -lssl -lcrypto -o tools/chkssl ");
    strcat(sysbuf," /usr/local/ssl/lib/libcrypto.a -lssl -o tools/chkssl");
    strcat(sysbuf,DN);
    system(sysbuf);

now the next "#else" staetment should be in line 183

NOTE: strcat(sysbuf,"/usr/local/ssl/lib/libcrypto.a -lssl -o tools/chkssl"); make sure this line points to your libcrypto.a

run make menuconfig


OpenSSL should work now


All times are GMT -5. The time now is 01:43 PM.