-
Notifications
You must be signed in to change notification settings - Fork 633
Description
I'm on Mac os 10.12.6 and after pulling down from github when I try to rub "make" I get a fatal error about OpenSSL header file not found?
_~/G/vanitygen ❯❯❯ make master
cc -ggdb -O3 -Wall -c -o vanitygen.o vanitygen.c
vanitygen.c:26:10: fatal error: 'openssl/sha.h' file not found
#include <openssl/sha.h>
^
1 error generated.
make: *** [vanitygen.o] Error 1
~/G/vanitygen ❯❯❯ brew install openssl ✘ 2 master
Updating Homebrew...
==> Auto-updated Homebrew!
Updated 1 tap (homebrew/core).
No changes to formulae.
Warning: openssl 1.0.2l is already installed
~/G/vanitygen ❯❯❯ make master
cc -ggdb -O3 -Wall -c -o vanitygen.o vanitygen.c
vanitygen.c:26:10: fatal error: 'openssl/sha.h' file not found
#include <openssl/sha.h>
^
1 error generated.
make: *** [vanitygen.o] Error 1
~/G/vanitygen ❯❯❯ ls ✘ 2 master
CHANGELOG LICENSE Makefile.Win32 avl.h keyconv.c oclengine.h oclvanityminer.c pattern.h util.h winglue.c
INSTALL Makefile README calc_addrs.cl oclengine.c oclvanitygen.c pattern.c util.c vanitygen.c winglue.h
~/G/vanitygen ❯❯❯ ./make master
zsh: no such file or directory: ./make
~/G/vanitygen ❯❯❯ make ✘ 127 master
cc -ggdb -O3 -Wall -c -o vanitygen.o vanitygen.c
vanitygen.c:26:10: fatal error: 'openssl/sha.h' file not found
#include <openssl/sha.h>
^
1 error generated.
make: *** [vanitygen.o] Error 1
~/G/vanitygen ❯❯❯_