diff options
author | swills <swills@FreeBSD.org> | 2014-02-10 10:49:15 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2014-02-10 10:49:15 +0800 |
commit | 0b050ee84241172b554d2a8307f7d176aeae8da1 (patch) | |
tree | 3b719a43f00bb593c865f3f709fbce22a7f7a2d2 /net-p2p/litecoin/files/patch-src__makefile.unix | |
parent | 36ca114ed83b8f60d724ff77fc3e3749f3e544ba (diff) | |
download | freebsd-ports-gnome-0b050ee84241172b554d2a8307f7d176aeae8da1.tar.gz freebsd-ports-gnome-0b050ee84241172b554d2a8307f7d176aeae8da1.tar.zst freebsd-ports-gnome-0b050ee84241172b554d2a8307f7d176aeae8da1.zip |
- Update to 0.8.6.2
- Improve USE_QT4
- Fix build after boost update
Diffstat (limited to 'net-p2p/litecoin/files/patch-src__makefile.unix')
-rw-r--r-- | net-p2p/litecoin/files/patch-src__makefile.unix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-p2p/litecoin/files/patch-src__makefile.unix b/net-p2p/litecoin/files/patch-src__makefile.unix new file mode 100644 index 000000000000..05e3431ad33c --- /dev/null +++ b/net-p2p/litecoin/files/patch-src__makefile.unix @@ -0,0 +1,30 @@ +--- ./src/makefile.unix.orig 2014-01-10 01:38:53.000000000 +0000 ++++ ./src/makefile.unix 2014-02-09 05:45:03.135007077 +0000 +@@ -15,6 +15,11 @@ + + DEFS=-DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 + ++BOOST_INCLUDE_PATH=/usr/local/include ++BDB_INCLUDE_PATH=/usr/local/include/db48 ++BOOST_LIB_PATH=/usr/local/lib ++BDB_LIB_PATH=/usr/local/lib/db48 ++ + 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)) + +@@ -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 + + |