Discussion:
Unable to compile, install openssl version >=1.0.0c
(too old to reply)
m***@gmail.com
2018-08-31 21:29:59 UTC
Permalink
Hey, I'm really enjoying this program, but now I want to be able to save my password, and the version I had installed from ubuntu's repo (Alpine 2.21 (DEB 202 2017-01-01) built Mon, 05 Feb 2018 23:20:53 +0000 on debian) wasnt' allowing my password to be saved, just like mechanic's issue (https://groups.google.com/forum/#!topic/comp.mail.pine/M6JKz9-ydmY).
So I've uninstalled my Alpine client, cloned the latest from http://repo.or.cz/alpine.git, and when I run ./configure I get "checking Openssl library version >= 1.0.0c... configure: error: Install openssl version >= 1.0.0c"

I have "$ openssl version
OpenSSL 1.1.0g 2 Nov 2017" installed.

What should I do here?

Thank you very much.
Eduardo Chappa
2018-08-31 23:56:44 UTC
Permalink
Post by m***@gmail.com
Hey, I'm really enjoying this program, but now I want to be able to save
my password, and the version I had installed from ubuntu's repo (Alpine
2.21 (DEB 202 2017-01-01) built Mon, 05 Feb 2018 23:20:53 +0000 on
debian) wasnt' allowing my password to be saved, just like mechanic's
issue
(https://groups.google.com/forum/#!topic/comp.mail.pine/M6JKz9-ydmY). So
I've uninstalled my Alpine client, cloned the latest from
http://repo.or.cz/alpine.git, and when I run ./configure I get "checking
Openssl library version >= 1.0.0c... configure: error: Install openssl
version >= 1.0.0c"
Dear ***@gmail.com,

you must install the headers package, usually named a "devel" package,
so install a package called something like "openssl-devel."

Thank you.
--
Eduardo
https://tinyurl.com/yc377wlh (web)
http://repo.or.cz/alpine.git (Git)
m***@gmail.com
2018-09-04 21:25:25 UTC
Permalink
On Fri, 31 Aug 2018,
Post by m***@gmail.com
Hey, I'm really enjoying this program, but now I want to be able to save
my password, and the version I had installed from ubuntu's repo (Alpine
2.21 (DEB 202 2017-01-01) built Mon, 05 Feb 2018 23:20:53 +0000 on
debian) wasnt' allowing my password to be saved, just like mechanic's
issue
(https://groups.google.com/forum/#!topic/comp.mail.pine/M6JKz9-ydmY). So
I've uninstalled my Alpine client, cloned the latest from
http://repo.or.cz/alpine.git, and when I run ./configure I get "checking
Openssl library version >= 1.0.0c... configure: error: Install openssl
version >= 1.0.0c"
you must install the headers package, usually named a "devel" package,
so install a package called something like "openssl-devel."
Thank you.
--
Eduardo
https://tinyurl.com/yc377wlh (web)
http://repo.or.cz/alpine.git (Git)
I've installed the openssl-devel package for my distrib, and was able to compile the software.
After running the make command in the alpine dir, I eventually get back to my command line w/ out an error, but trying to run alpine gives me /usr/bin/alpine: no such file or directory. This is the output of sudo make alpine: https://pastebin.com/BmLCMjh3

What should I do here?

THanks
Eduardo Chappa
2018-09-05 03:03:13 UTC
Permalink
Post by m***@gmail.com
After running the make command in the alpine dir, I eventually get back
to my command line w/ out an error, but trying to run alpine gives me
/usr/bin/alpine: no such file or directory. This is the output of sudo
make alpine: https://pastebin.com/BmLCMjh3
What should I do here?
Alpine is not installed in /usr/bin, but in /usr/local/bin, so if you do
not have /usr/local/bin in your path, add it, or alias alpine to
/usr/local/bin/alpine, that should solve your issue.
--
Eduardo
https://tinyurl.com/yc377wlh (web)
http://repo.or.cz/alpine.git (Git)
m***@gmail.com
2018-09-05 11:57:36 UTC
Permalink
Post by Eduardo Chappa
Post by m***@gmail.com
After running the make command in the alpine dir, I eventually get back
to my command line w/ out an error, but trying to run alpine gives me
/usr/bin/alpine: no such file or directory. This is the output of sudo
make alpine: https://pastebin.com/BmLCMjh3
What should I do here?
Alpine is not installed in /usr/bin, but in /usr/local/bin, so if you do
not have /usr/local/bin in your path, add it, or alias alpine to
/usr/local/bin/alpine, that should solve your issue.
--
Eduardo
https://tinyurl.com/yc377wlh (web)
http://repo.or.cz/alpine.git (Git)
Sure is, and my path has /usr/local/bin in it. Either way, I can run ./alpine from /usr/local/bin, but after typing in my gmail password, I'm not prompted for it to be saved, or that the passfile is encrypted. Was I supposed to compile for encryption? I'm not seeing a -passfile launch option, nor a setting in .pinerc.

Also, thanks very much for your support so far. I've been handing you pretty dumb questions, and you've been quite patient.
Lucas Levrel
2018-09-05 12:31:51 UTC
Permalink
Post by m***@gmail.com
Post by m***@gmail.com
After running the make command in the alpine dir, I eventually get back
to my command line w/ out an error, but trying to run alpine gives me
/usr/bin/alpine: no such file or directory. This is the output of sudo
make alpine: https://pastebin.com/BmLCMjh3
This:
---
~/alpine$ alpine
bash: /usr/bin/alpine: No such file or directory
---
is very strange: why would bash talk about "/usr/bin/alpine" when you
just ask for "alpine"? Do you have an "alpine" symlink to /usr/bin/alpine
somewhere in your PATH, or a shell alias alpine=/usr/bin/alpine ?
Post by m***@gmail.com
Sure is, and my path has /usr/local/bin in it. Either way, I can run
./alpine from /usr/local/bin, but after typing in my gmail password, I'm
not prompted for it to be saved, or that the passfile is encrypted. Was
I supposed to compile for encryption? I'm not seeing a -passfile launch
option, nor a setting in .pinerc.
Did you configure --with-passfile=... ? See ./configure --help
Post by m***@gmail.com
Also, thanks very much for your support so far. I've been handing you
pretty dumb questions, and you've been quite patient.
Eduardo is one of the most patient people I know :-)
--
LL
Ἕν οἶδα ὅτι οὐδὲν οἶδα (Σωκράτης)
m***@gmail.com
2018-09-06 20:25:55 UTC
Permalink
Post by Lucas Levrel
Post by m***@gmail.com
Post by m***@gmail.com
After running the make command in the alpine dir, I eventually get back
to my command line w/ out an error, but trying to run alpine gives me
/usr/bin/alpine: no such file or directory. This is the output of sudo
make alpine: https://pastebin.com/BmLCMjh3
---
~/alpine$ alpine
bash: /usr/bin/alpine: No such file or directory
---
is very strange: why would bash talk about "/usr/bin/alpine" when you
just ask for "alpine"? Do you have an "alpine" symlink to /usr/bin/alpine
somewhere in your PATH, or a shell alias alpine=/usr/bin/alpine ?
Post by m***@gmail.com
Sure is, and my path has /usr/local/bin in it. Either way, I can run
./alpine from /usr/local/bin, but after typing in my gmail password, I'm
not prompted for it to be saved, or that the passfile is encrypted. Was
I supposed to compile for encryption? I'm not seeing a -passfile launch
option, nor a setting in .pinerc.
Did you configure --with-passfile=... ? See ./configure --help
Post by m***@gmail.com
Also, thanks very much for your support so far. I've been handing you
pretty dumb questions, and you've been quite patient.
Eduardo is one of the most patient people I know :-)
--
LL
Ἕν οἶδα ὅτι οὐδὲν οἶδα (Σωκράτης)
That was it sir, thank you!
To be clear, I did a ./configure --with-passfile=/home/user/.alpine.pwd and when that finished make. Afterwards, touch /home/user/.alpine.pwd and then launched alpine using /home/alpine/alpine, as it's still not in /usr/local/bin. no worries, as it prompted to save a password for the gmail passfile. Hot damn, thank you gentlemen!
Loading...