mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-09 09:51:08 +02:00
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:
@ -4,9 +4,9 @@
|
|||||||
|
|
||||||
CXX=g++
|
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
|
# for boost 1.37, add -mt to the boost libraries
|
||||||
LIBS= \
|
LIBS= \
|
||||||
|
Reference in New Issue
Block a user