makefile.unix: Fixed errors building bitcoind without wxWidgets installed.

WXINCLUDEPATHS and WXLIBS now assigned with '=' instead of ':='.
    This means they are only evaluated on-demand, and they will never be
    requested by 'make bitcoind', so it won't try to call wx-config.
This commit is contained in:
Matt Giuca 2011-02-26 09:12:42 +11:00
parent 3415b15a56
commit 84778a5b46

View file

@ -4,9 +4,9 @@
CXX=g++
WXINCLUDEPATHS:=$(shell wx-config --cxxflags)
WXINCLUDEPATHS=$(shell wx-config --cxxflags)
WXLIBS:=$(shell wx-config --libs)
WXLIBS=$(shell wx-config --libs)
# for boost 1.37, add -mt to the boost libraries
LIBS= \