-
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
Fatal errors in Ubuntu #118
Comments
Duplicate: #116 |
Duplicate #106 (see #106 (comment) for a solution) |
See #116 (comment) for a workaround/solution |
Download an old version of OpenSSL For example the 1.0.0s: https://www.openssl.org/source/old/1.0.0/openssl-1.0.0s.tar.gz
Then modify the makefile of Vanitygen
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cc -ggdb -O3 -Wall -c -o vanitygen.o vanitygen.c In file included from vanitygen.c:32:0: pattern.h:54:12: error: field ‘vxc_bntarg’ has incomplete type BIGNUM vxc_bntarg; ^~~~~~~~~~ pattern.h:55:12: error: field ‘vxc_bnbase’ has incomplete type BIGNUM vxc_bnbase; ^~~~~~~~~~ pattern.h:56:12: error: field ‘vxc_bntmp’ has incomplete type BIGNUM vxc_bntmp; ^~~~~~~~~ pattern.h:57:12: error: field ‘vxc_bntmp2’ has incomplete type BIGNUM vxc_bntmp2; ^~~~~~~~~~ vanitygen.c: In function ‘vg_thread_loop’: vanitygen.c:134:21: error: ‘BN_MASK2’ undeclared (first use in this function); did you mean ‘BN_BITS2’? if ((rekey_at == BN_MASK2) || (rekey_at > rekey_max)) ^~~~~~~~ BN_BITS2 vanitygen.c:134:21: note: each undeclared identifier is reported only once for each function it appears in <eingebaut>: recipe for target 'vanitygen.o' failed make: *** [vanitygen.o] Error 1
This happens when I run make in ubuntu 18.04 LTS
The text was updated successfully, but these errors were encountered: