From da9cda2b7905c5f35096b53187674f980a3de848 Mon Sep 17 00:00:00 2001 From: dnotestein Date: Tue, 13 Aug 2013 23:11:20 -0400 Subject: [PATCH] ifdef around arpa/inet.h on WIN32 (unix only) --- .gitignore | 4 ++-- src/uint128.cpp | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 652efb4..054859e 100644 --- a/.gitignore +++ b/.gitignore @@ -31,8 +31,8 @@ ZERO_CHECK *.lastbuildstate *.sdf *.opensdf -Debug -Release +Debug/ +Release/ CMakeFiles Makefile diff --git a/src/uint128.cpp b/src/uint128.cpp index 21a0713..df49fb8 100644 --- a/src/uint128.cpp +++ b/src/uint128.cpp @@ -3,8 +3,9 @@ #include #ifdef WIN32 #include -#endif +#else #include +#endif namespace fc {