From: Gene H. <ghe...@wd...> - 2015-02-11 15:24:15
|
Greetings all; Trying to get the tarball built as wheezy's fetchmail is .21, sorta of old. All the openssl stuff I can find is installed, but in about an hours worth of trying to configure it for ssl support, my point it at the numerous where stuff is installed, am not able to get anything better than this at the end of the ./configure execution: configure: error: SSL support enabled, but OpenSSL not found Can someone tell what the heck it is actually looking for? Thanks all. Cheers, Gene Heskett -- "There are four boxes to be used in defense of liberty: soap, ballot, jury, and ammo. Please use in that order." -Ed Howdershelt (Author) Genes Web page <http://geneslinuxbox.net:6309/gene> US V Castleman, SCOTUS, Mar 2014 is grounds for Impeaching SCOTUS |
From: Rob M. <rob...@gm...> - 2015-02-11 20:57:00
|
On Wed Feb 11 2015 at 3:25:11 PM Gene Heskett <ghe...@wd...> wrote: > Greetings all; > > Trying to get the tarball built as wheezy's fetchmail is .21, sorta of > old. > > All the openssl stuff I can find is installed, but in about an hours worth > of trying to configure it for ssl support, my point it at the numerous > where stuff is installed, am not able to get anything better than this at > the end of the ./configure execution: > configure: error: SSL support enabled, but OpenSSL not found > > Can someone tell what the heck it is actually looking for? > I'd expect it's looking for the library, which is probably named "libssl-dev". -- Rob |
From: Gene H. <ghe...@wd...> - 2015-02-12 22:11:54
|
On Wednesday, February 11, 2015 03:56:51 PM Rob MacGregor wrote: > On Wed Feb 11 2015 at 3:25:11 PM Gene Heskett <ghe...@wd...> wrote: > > Greetings all; > > > > Trying to get the tarball built as wheezy's fetchmail is .21, sorta > > of old. > > > > All the openssl stuff I can find is installed, but in about an hours > > worth of trying to configure it for ssl support, my point it at the > > numerous where stuff is installed, am not able to get anything > > better than this at the end of the ./configure execution: > > configure: error: SSL support enabled, but OpenSSL not found > > > > Can someone tell what the heck it is actually looking for? > > I'd expect it's looking for the library, which is probably named > "libssl-dev". As it turned out, I was the dummy, I thought it wanted a path to it, in the end it was more than smart enough to find and use it if I just did --with-ssl=yes. So its in and running fine. Thank you Rob. Cheers, Gene Heskett -- "There are four boxes to be used in defense of liberty: soap, ballot, jury, and ammo. Please use in that order." -Ed Howdershelt (Author) Genes Web page <http://geneslinuxbox.net:6309/gene> US V Castleman, SCOTUS, Mar 2014 is grounds for Impeaching SCOTUS |
From: Matthias A. <mat...@gm...> - 2015-02-13 13:59:15
|
Am 12.02.2015 um 23:11 schrieb Gene Heskett: > On Wednesday, February 11, 2015 03:56:51 PM Rob MacGregor wrote: >> On Wed Feb 11 2015 at 3:25:11 PM Gene Heskett <ghe...@wd...> wrote: >>> Greetings all; >>> >>> Trying to get the tarball built as wheezy's fetchmail is .21, sorta >>> of old. >>> >>> All the openssl stuff I can find is installed, but in about an hours >>> worth of trying to configure it for ssl support, my point it at the >>> numerous where stuff is installed, am not able to get anything >>> better than this at the end of the ./configure execution: >>> configure: error: SSL support enabled, but OpenSSL not found >>> >>> Can someone tell what the heck it is actually looking for? >> >> I'd expect it's looking for the library, which is probably named >> "libssl-dev". > > As it turned out, I was the dummy, I thought it wanted a path to it, in > the end it was more than smart enough to find and use it if I just > did --with-ssl=yes. So its in and running fine. Where --with-ssl and --with-ssl=yes are technically the same in many, but not all, GNU autoconf based ./configure scripts. :-) Good speed. |
From: Matthias A. <mat...@gm...> - 2015-02-11 21:21:26
|
Am 11.02.2015 um 16:24 schrieb Gene Heskett: > Greetings all; > > Trying to get the tarball built as wheezy's fetchmail is .21, sorta of > old. > > All the openssl stuff I can find is installed, but in about an hours worth > of trying to configure it for ssl support, my point it at the numerous > where stuff is installed, am not able to get anything better than this at > the end of the ./configure execution: > configure: error: SSL support enabled, but OpenSSL not found > > Can someone tell what the heck it is actually looking for? > > Thanks all. Hi Gene, I, just like Rob, suspect the problem is one or more missing -dev packages. On Debian-based systems, you can often take a short cut and just run "apt-get build-dep fetchmail" as root to have the system fetch and install all requisite packages that you need for the a native build of the source package fetchmail (meaning the package installs on computers of the same type as the one you're typing the command on). This works if the newer package you are trying to build has the same requisites as the one that shipped with the distribution. For a wheezy-with-6.3.21 to 6.3.26 upgrade, I expect it works, but I haven't got a sufficient "bare" system to test this. if Rob's message (i. e. install the -dev packages) doesn't get you where you want to be, then please check the config.log file that results from the ./configure. The config.log is quite verbose, and contains lots of debugging information not related to the actual problem, but often also sells a clue on the command lines tried, with which test programs, and the error messages. Best to search in it for the error message you've seen on the screen from ./configure run, and that you quoted above. Hope that helps. Best regards, Matthias |
From: Gene H. <ghe...@wd...> - 2015-02-12 22:14:34
|
On Wednesday, February 11, 2015 04:21:17 PM Matthias Andree wrote: > Am 11.02.2015 um 16:24 schrieb Gene Heskett: > > Greetings all; > > > > Trying to get the tarball built as wheezy's fetchmail is .21, sorta > > of old. > > > > All the openssl stuff I can find is installed, but in about an hours > > worth of trying to configure it for ssl support, my point it at the > > numerous where stuff is installed, am not able to get anything > > better than this at the end of the ./configure execution: > > configure: error: SSL support enabled, but OpenSSL not found > > > > Can someone tell what the heck it is actually looking for? > > > > Thanks all. > > Hi Gene, > > I, just like Rob, suspect the problem is one or more missing -dev > packages. On Debian-based systems, you can often take a short cut and > just run "apt-get build-dep fetchmail" as root to have the system fetch > and install all requisite packages that you need for the a native build > of the source package fetchmail (meaning the package installs on > computers of the same type as the one you're typing the command on). > This works if the newer package you are trying to build has the same > requisites as the one that shipped with the distribution. For a > wheezy-with-6.3.21 to 6.3.26 upgrade, I expect it works, but I haven't > got a sufficient "bare" system to test this. > > if Rob's message (i. e. install the -dev packages) doesn't get you > where you want to be, then please check the config.log file that > results from the ./configure. > > The config.log is quite verbose, and contains lots of debugging > information not related to the actual problem, but often also sells a > clue on the command lines tried, with which test programs, and the > error messages. Best to search in it for the error message you've > seen on the screen from ./configure run, and that you quoted above. > > > > Hope that helps. Yes, it did solve another problem. i was not aware of the build-deps option to apt-get. Thank you Matthias. Cheers, Gene Heskett -- "There are four boxes to be used in defense of liberty: soap, ballot, jury, and ammo. Please use in that order." -Ed Howdershelt (Author) Genes Web page <http://geneslinuxbox.net:6309/gene> US V Castleman, SCOTUS, Mar 2014 is grounds for Impeaching SCOTUS |