diff options
author | gavinandresen <gavinandresen@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-10-11 18:23:41 +0000 |
---|---|---|
committer | gavinandresen <gavinandresen@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-10-11 18:23:41 +0000 |
commit | ed54768f5f90de73c0349684a38df2667f3deae2 (patch) | |
tree | 14319d60c8ea188e5857d054318cf49a611a78bc /makefile.unix | |
parent | 83082f04a47d6540f40dd656d1baed54eb17e76b (diff) |
-rpcssl=1 option, allowing secure HTTPS JSON-RPC connections on OSX/Unix.
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@165 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'makefile.unix')
-rw-r--r-- | makefile.unix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile.unix b/makefile.unix index 21994154a4..aa85ef9a08 100644 --- a/makefile.unix +++ b/makefile.unix @@ -23,11 +23,12 @@ LIBS= \ -l boost_program_options \ -l boost_thread \ -l db_cxx \ + -l ssl \ -l crypto \ -Wl,-Bdynamic \ -l gthread-2.0 -DEFS=-D__WXGTK__ -DNOPCH -DFOURWAYSSE2 +DEFS=-D__WXGTK__ -DNOPCH -DFOURWAYSSE2 -DUSE_SSL DEBUGFLAGS=-g -D__WXDEBUG__ CFLAGS=-O2 -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) HEADERS=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \ |