vektra / vega

A distributed mailbox system
BSD 3-Clause "New" or "Revised" License
315 stars 13 forks source link

Doesn't build #11

Closed mperham closed 8 years ago

mperham commented 9 years ago

When I run go get github.com/vektra/vega/cmd/vegad on my machine (per the README), I get this:

# github.com/jmhodges/levigo
src/github.com/jmhodges/levigo/batch.go:4:11: fatal error: 'leveldb/c.h' file not found
 #include "leveldb/c.h"
          ^
1 error generated.
evanphx commented 9 years ago

Ah! I forgot to include that the leveldb dev packages are needed too. On ubuntu: apt-get install libleveldb-dev

mperham commented 9 years ago

Yeah, I figured a brew install leveldb was probably called for but wanted to annoy you anyways.

evanphx commented 9 years ago

Good call on both fronts.