diff options
| author | Jeff Garzik <[email protected]> | 2013-09-06 17:09:55 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2013-09-06 17:09:55 -0700 |
| commit | 15fd245b9a4754485d1a272acce53bcf3290839f (patch) | |
| tree | 95187b718dfe8cb7c4310fffb75f298637de1da5 /src/netbase.cpp | |
| parent | Merge pull request #2976 from laanwj/2013_09_txid_details (diff) | |
| parent | autotools: switch to autotools buildsystem (diff) | |
| download | discoin-15fd245b9a4754485d1a272acce53bcf3290839f.tar.xz discoin-15fd245b9a4754485d1a272acce53bcf3290839f.zip | |
Merge pull request #2943 from theuni/autotools-final
Autotools buildsystem
Diffstat (limited to 'src/netbase.cpp')
| -rw-r--r-- | src/netbase.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/netbase.cpp b/src/netbase.cpp index 348771375..d02490ad4 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -15,6 +15,10 @@ #include <boost/algorithm/string/case_conv.hpp> // for to_lower() #include <boost/algorithm/string/predicate.hpp> // for startswith() and endswith() +#if !defined(HAVE_MSG_NOSIGNAL) +#define MSG_NOSIGNAL 0 +#endif + using namespace std; // Settings |