diff options
author | swills <swills@FreeBSD.org> | 2013-08-24 11:20:15 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2013-08-24 11:20:15 +0800 |
commit | b3914d503b110e97324933f297ac9383e10f48df (patch) | |
tree | b01907c2dc121e81b2cbd83e230d7088996ec95a /net-p2p | |
parent | 68c4bab4418af02714fee55a1325fa519fbce566 (diff) | |
download | freebsd-ports-gnome-b3914d503b110e97324933f297ac9383e10f48df.tar.gz freebsd-ports-gnome-b3914d503b110e97324933f297ac9383e10f48df.tar.zst freebsd-ports-gnome-b3914d503b110e97324933f297ac9383e10f48df.zip |
- Fix build when GUI is disabled
Reported by: "Sam Fourman Jr." <sfourman@gmail.com>
Obtained from: https://github.com/bitcoin/bitcoin/issues/2521#issuecomment-17364844
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/litecoin/files/patch-src-makefile.unix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/net-p2p/litecoin/files/patch-src-makefile.unix b/net-p2p/litecoin/files/patch-src-makefile.unix index 91ec7fc028ba..a271c117d38d 100644 --- a/net-p2p/litecoin/files/patch-src-makefile.unix +++ b/net-p2p/litecoin/files/patch-src-makefile.unix @@ -12,11 +12,17 @@ DEFS += $(addprefix -I,$(CURDIR) $(CURDIR)/obj $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH)) LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH)) -@@ -44,7 +49,6 @@ +@@ -38,6 +43,7 @@ + -l boost_filesystem$(BOOST_LIB_SUFFIX) \ + -l boost_program_options$(BOOST_LIB_SUFFIX) \ + -l boost_thread$(BOOST_LIB_SUFFIX) \ ++ -l boost_chrono$(BOOST_LIB_SUFFIX) \ + -l db_cxx$(BDB_LIB_SUFFIX) \ + -l ssl \ + -l crypto +@@ -61,7 +67,6 @@ LIBS+= \ -Wl,-B$(LMODE2) \ -l z \ - -l dl \ -l pthread - - |