aboutsummaryrefslogtreecommitdiff
path: root/net-p2p/namecoin/files
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2014-02-12 18:44:49 +0000
committerSteve Wills <swills@FreeBSD.org>2014-02-12 18:44:49 +0000
commiteb2820b2fde080bca7d0aac679bb6e3d6f0f090a (patch)
treefdb753d5da209cf74a7e9c1ec7b9103df7837b0d /net-p2p/namecoin/files
parent0022fc1a1974e3a8d427059cd3d3696097358307 (diff)
downloadports-eb2820b2fde080bca7d0aac679bb6e3d6f0f090a.tar.gz
ports-eb2820b2fde080bca7d0aac679bb6e3d6f0f090a.zip
Notes
Diffstat (limited to 'net-p2p/namecoin/files')
-rw-r--r--net-p2p/namecoin/files/makefile.unix76
-rw-r--r--net-p2p/namecoin/files/patch-src__main.h10
-rw-r--r--net-p2p/namecoin/files/patch-src__net.cpp25
-rw-r--r--net-p2p/namecoin/files/patch-src__qt__configurenamedialog.h12
-rw-r--r--net-p2p/namecoin/files/patch-src__qt__managenamespage.h12
-rw-r--r--net-p2p/namecoin/files/patch-src__serialize.h21
6 files changed, 156 insertions, 0 deletions
diff --git a/net-p2p/namecoin/files/makefile.unix b/net-p2p/namecoin/files/makefile.unix
new file mode 100644
index 000000000000..fcd9f2fd6a83
--- /dev/null
+++ b/net-p2p/namecoin/files/makefile.unix
@@ -0,0 +1,76 @@
+CXX?=g++
+DEFS=-DNOPCH -DFOURWAYSSE2 -DUSE_SSL
+
+LIBS= \
+ -Wl,-Bstatic \
+ -l boost_system \
+ -l boost_filesystem \
+ -l boost_program_options \
+ -l boost_thread \
+ -l boost_chrono \
+ -l db_cxx \
+ -l ssl \
+ -l crypto
+
+USE_UPNP:=0
+ifneq (${USE_UPNP}, -)
+ LIBS += -l miniupnpc
+ DEFS += -DUSE_UPNP=$(USE_UPNP)
+endif
+
+LIBS+= \
+ -Wl,-Bdynamic \
+ -l gthread-2.0 \
+ -l z \
+ -l pthread
+
+CXXFLAGS+=-O2 -Wno-invalid-offsetof -Wformat $(DEFS)
+HEADERS=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \
+ script.h allocators.h db.h walletdb.h crypter.h net.h irc.h keystore.h main.h \
+ wallet.h bitcoinrpc.h uibase.h ui.h noui.h init.h auxpow.h
+
+BASE_OBJS= \
+ obj/auxpow.o \
+ obj/util.o \
+ obj/key.o \
+ obj/script.o \
+ obj/db.o \
+ obj/walletdb.o \
+ obj/crypter.o \
+ obj/net.o \
+ obj/irc.o \
+ obj/keystore.o \
+ obj/main.o \
+ obj/wallet.o \
+ obj/bitcoinrpc.o \
+ obj/init.o \
+ cryptopp/obj/sha.o \
+ cryptopp/obj/cpu.o
+
+OBJS = \
+ $(BASE_OBJS) \
+ obj/hook.o
+
+all: namecoind
+
+cryptopp/obj/%.o: cryptopp/%.cpp
+ $(CXX) -c $(CXXFLAGS) -O3 -o $@ $<
+
+obj/nogui/%.o: %.cpp $(HEADERS)
+ $(CXX) -c $(CXXFLAGS) -o $@ $<
+
+obj/test/%.o: test/%.cpp $(HEADERS)
+ $(CXX) -c $(CFLAGS) -o $@ $<
+
+obj/nogui/namecoin.o: namecoin.h
+
+namecoind: $(BASE_OBJS:obj/%=obj/nogui/%) obj/nogui/namecoin.o
+ $(CXX) $(CXXFLAGS) -o $@ $^ $(LIBS)
+
+clean:
+ -rm -f namecoin namecoind
+ -rm -f obj/*.o
+ -rm -f obj/nogui/*.o
+ -rm -f obj/test/*.o
+ -rm -f cryptopp/obj/*.o
+ -rm -f headers.h.gch
diff --git a/net-p2p/namecoin/files/patch-src__main.h b/net-p2p/namecoin/files/patch-src__main.h
new file mode 100644
index 000000000000..4fb54e4fcd1a
--- /dev/null
+++ b/net-p2p/namecoin/files/patch-src__main.h
@@ -0,0 +1,10 @@
+--- ./src/main.h.orig 2013-10-29 13:38:10.000000000 +0000
++++ ./src/main.h 2014-01-18 23:12:20.871138275 +0000
+@@ -16,7 +16,6 @@
+ #ifdef __WXMSW__
+ #include <io.h> /* for _commit */
+ #elif !defined(MAC_OSX)
+-#include <sys/prctl.h>
+ #endif
+
+ class CBlock;
diff --git a/net-p2p/namecoin/files/patch-src__net.cpp b/net-p2p/namecoin/files/patch-src__net.cpp
new file mode 100644
index 000000000000..992948cf9d63
--- /dev/null
+++ b/net-p2p/namecoin/files/patch-src__net.cpp
@@ -0,0 +1,25 @@
+--- ./src/net.cpp.orig 2013-10-29 13:38:10.000000000 +0000
++++ ./src/net.cpp 2014-01-18 23:12:20.911138205 +0000
+@@ -51,7 +51,7 @@
+ CAddress addrLocalHost("0.0.0.0", 0, false, nLocalServices);
+ CNode* pnodeLocalHost = NULL;
+ uint64 nLocalHostNonce = 0;
+-array<int, 10> vnThreadsRunning;
++boost::array<int, 10> vnThreadsRunning;
+ SOCKET hListenSocket = INVALID_SOCKET;
+
+ vector<CNode*> vNodes;
+@@ -1094,13 +1094,8 @@
+ char intClient[16];
+ char intPort[6];
+
+-#if !defined(__WXMSW__) && !defined(MAC_OSX)
+- r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype,
+- port, port, lanaddr, 0, "TCP", 0);
+-#else
+ r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype,
+ port, port, lanaddr, 0, "TCP", 0, "0");
+-#endif
+ if(r!=UPNPCOMMAND_SUCCESS)
+ printf("AddPortMapping(%s, %s, %s) failed with code %d (%s)\n",
+ port, port, lanaddr, r, strupnperror(r));
diff --git a/net-p2p/namecoin/files/patch-src__qt__configurenamedialog.h b/net-p2p/namecoin/files/patch-src__qt__configurenamedialog.h
new file mode 100644
index 000000000000..104460b7b841
--- /dev/null
+++ b/net-p2p/namecoin/files/patch-src__qt__configurenamedialog.h
@@ -0,0 +1,12 @@
+--- ./src/qt/configurenamedialog.h.orig 2013-10-29 13:38:10.000000000 +0000
++++ ./src/qt/configurenamedialog.h 2014-01-18 23:12:20.925138619 +0000
+@@ -1,6 +1,9 @@
+ #ifndef CONFIGURENAMEDIALOG_H
+ #define CONFIGURENAMEDIALOG_H
+
++#include <sys/socket.h>
++#include <netinet/in.h>
++
+ #include <QDialog>
+
+ namespace Ui {
diff --git a/net-p2p/namecoin/files/patch-src__qt__managenamespage.h b/net-p2p/namecoin/files/patch-src__qt__managenamespage.h
new file mode 100644
index 000000000000..6651dcbbf137
--- /dev/null
+++ b/net-p2p/namecoin/files/patch-src__qt__managenamespage.h
@@ -0,0 +1,12 @@
+--- ./src/qt/managenamespage.h.orig 2013-10-29 13:38:10.000000000 +0000
++++ ./src/qt/managenamespage.h 2014-01-18 23:12:20.965138391 +0000
+@@ -1,6 +1,9 @@
+ #ifndef MANAGENAMESPAGE_H
+ #define MANAGENAMESPAGE_H
+
++#include <sys/socket.h>
++#include <netinet/in.h>
++
+ #include <QDialog>
+ #include <QSortFilterProxyModel>
+
diff --git a/net-p2p/namecoin/files/patch-src__serialize.h b/net-p2p/namecoin/files/patch-src__serialize.h
new file mode 100644
index 000000000000..30eb12fa5131
--- /dev/null
+++ b/net-p2p/namecoin/files/patch-src__serialize.h
@@ -0,0 +1,21 @@
+--- src/serialize.h.orig 2014-01-19 03:49:23.000000000 +0000
++++ src/serialize.h 2014-01-19 03:52:10.000000000 +0000
+@@ -858,18 +858,6 @@
+ iterator insert(iterator it, const char& x=char()) { return vch.insert(it, x); }
+ void insert(iterator it, size_type n, const char& x) { vch.insert(it, n, x); }
+
+- void insert(iterator it, const_iterator first, const_iterator last)
+- {
+- if (it == vch.begin() + nReadPos && last - first <= nReadPos)
+- {
+- // special case for inserting at the front when there's room
+- nReadPos -= (last - first);
+- memcpy(&vch[nReadPos], &first[0], last - first);
+- }
+- else
+- vch.insert(it, first, last);
+- }
+-
+ void insert(iterator it, std::vector<char>::const_iterator first, std::vector<char>::const_iterator last)
+ {
+ if (it == vch.begin() + nReadPos && last - first <= nReadPos)