Browse Source

Linux: link system libcurl when compiling with ZT_VAULT_SUPPORT=1

Requires libcurl and development headers to be installed
pull/1/head
Grant Limberg 8 years ago
parent
commit
bdb2cc7c85
  1. 5
      make-linux.mk

5
make-linux.mk

@ -88,6 +88,11 @@ ifeq ($(ZT_USE_TEST_TAP),1)
override DEFS+=-DZT_USE_TEST_TAP override DEFS+=-DZT_USE_TEST_TAP
endif endif
ifeq ($(ZT_VAULT_SUPPORT),1)
override DEFS+=-DZT_VAULT_SUPPORT=1
override LDLIBS+=-lcurl
endif
# Uncomment for gprof profile build # Uncomment for gprof profile build
#CFLAGS=-Wall -g -pg -pthread $(INCLUDES) $(DEFS) #CFLAGS=-Wall -g -pg -pthread $(INCLUDES) $(DEFS)
#CXXFLAGS=-Wall -g -pg -pthread $(INCLUDES) $(DEFS) #CXXFLAGS=-Wall -g -pg -pthread $(INCLUDES) $(DEFS)

Loading…
Cancel
Save