Fix dogecoind build errors

* wildcard on mac makefile doesn’t work the way it works on other
platforms =P
 * Add missing json_spirit_value objects for all the platform makefiles
This commit is contained in:
Alan Westbrook 2014-01-27 13:39:05 -08:00
parent 5a22b46b1f
commit 9748bc3f52
4 changed files with 7 additions and 5 deletions

View file

@ -59,6 +59,7 @@ HEADERS = $(wildcard *.h)
OBJS= \
leveldb/libleveldb.a \
json/json_spirit_value.o \
obj/alert.o \
obj/version.o \
obj/checkpoints.o \

View file

@ -71,6 +71,7 @@ HEADERS = $(wildcard *.h)
OBJS= \
leveldb/libleveldb.a \
json/json_spirit_value.o \
obj/alert.o \
obj/version.o \
obj/checkpoints.o \

View file

@ -9,11 +9,9 @@
CXX=c++
CHECKDIR=$(wildcard /usr/local/Cellar)
DEPSDIR = $(shell if [ -e /usr/local/Cellar ]; then echo "/usr/local"; fi)
ifneq ($(CHECK_DIR),)
DEPSDIR=/usr/local
else
ifeq ($(DEPSDIR),)
DEPSDIR=/opt/local
endif
@ -83,6 +81,7 @@ CFLAGS += -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter \
OBJS= \
leveldb/libleveldb.a \
json/json_spirit_value.o \
obj/alert.o \
obj/version.o \
obj/checkpoints.o \

View file

@ -144,7 +144,8 @@ OBJS= \
obj/bloom.o \
obj/noui.o \
obj/leveldb.o \
obj/txdb.o
obj/txdb.o \
json/json_spirit_value.o
ifdef USE_SSE2