diff options
author | Alex Dupre <ale@FreeBSD.org> | 2018-01-23 13:58:22 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2018-01-23 13:58:22 +0000 |
commit | 989bcb5fb66e1479ba1f13d44d9b1a785da9b61d (patch) | |
tree | 69ec43714bca9b52bb5ee28cdab11235ba9ad766 /lang/solidity/files | |
parent | Update to 4.6.0 release and create shared lib symlink. (diff) |
The Solidity Contract-Oriented Programming Language
WWW: https://github.com/ethereum/solidity
Diffstat (limited to 'lang/solidity/files')
-rw-r--r-- | lang/solidity/files/jsoncpp.cmake | 2 | ||||
-rw-r--r-- | lang/solidity/files/patch-libevmasm_Instruction.h | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lang/solidity/files/jsoncpp.cmake b/lang/solidity/files/jsoncpp.cmake new file mode 100644 index 000000000000..20695766aabd --- /dev/null +++ b/lang/solidity/files/jsoncpp.cmake @@ -0,0 +1,2 @@ +include_directories(${JSONCPP_INCLUDE_DIR}) +link_directories(${JSONCPP_LIB_DIR}) diff --git a/lang/solidity/files/patch-libevmasm_Instruction.h b/lang/solidity/files/patch-libevmasm_Instruction.h new file mode 100644 index 000000000000..da620229ab56 --- /dev/null +++ b/lang/solidity/files/patch-libevmasm_Instruction.h @@ -0,0 +1,11 @@ +--- libevmasm/Instruction.h.orig 2018-01-23 11:51:18 UTC ++++ libevmasm/Instruction.h +@@ -26,6 +26,8 @@ + #include <libdevcore/Assertions.h> + #include "Exceptions.h" + ++#undef MSIZE // remove MSIZE definition from <sys/params.h>, included by boost 1.66.0 ++ + namespace dev + { + namespace solidity |