Skip to content

Commit

Permalink
Add mbedtls, libssh2, and curl back to DEP_LIBS (JuliaLang#19631)
Browse files Browse the repository at this point in the history
otherwise rules like distcleanall will miss them
  • Loading branch information
tkelman authored Dec 19, 2016
1 parent 474210f commit 1ce2a7c
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion deps/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,23 @@ DEP_LIBS += gmp
endif

ifeq ($(USE_SYSTEM_LIBGIT2), 0)
DEP_LIBS += libgit2
ifeq ($(USE_SYSTEM_MBEDTLS), 0)
DEP_LIBS += mbedtls
endif

ifeq ($(USE_SYSTEM_LIBSSH2), 0)
DEP_LIBS += libssh2
endif

ifneq ($(OS), WINNT)
ifeq ($(USE_SYSTEM_CURL), 0)
DEP_LIBS += curl
endif
endif

DEP_LIBS += libgit2
endif # USE_SYSTEM_LIBGIT2

ifeq ($(USE_SYSTEM_MPFR), 0)
DEP_LIBS += mpfr
endif
Expand Down

0 comments on commit 1ce2a7c

Please sign in to comment.