-
Notifications
You must be signed in to change notification settings - Fork 631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install on Debian 9 (x64) #129
Comments
adding one more extract the zip and the use this command |
Strange, for me it still fails in linker with:
But I have |
. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Compiling Vanity under Debian 9 (x64)
Hello I managed to compile Vanity from source , here is how I done it.
(1) problem with openssl 1.0 (old version not installed by default)
As 1st compiling raises problems, people said it was because the source depends con openssl 1.0 not actual openssl 1.1+
So I downloaded openssl-1.0 from source https://www.openssl.org/source/openssl-1.0.2s.tar.gz and installed it by default it installs under /usr/ssl so it does not interfere with distribution updated openssl (-> *see next comment to install it in /usr/local/ssl)
-> add to LIBS in Makefile
-> add to CFLAGS in Makefile
(2) problem with pcre (old version not installed by default)
normally pcre2 is installed, the old version in Debian is called pcre3 (yes) but you will also will need pcre3-dev to be installed.
(3) problem with ldl (openssl-1.0 needs it)
-> add to LIBS in Makefile
Makefile fixes:
The text was updated successfully, but these errors were encountered: