diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-09-21 18:48:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 18:48:14 +0800 |
commit | 4bf24c57bb84332339014cebec9e0531a5b0772f (patch) | |
tree | afbe23d7abb62b1da816e1b355aa8d8d6edbb674 /bin | |
parent | 9d99c27b7261f8228cc0a5a496be6ac50e03abf2 (diff) | |
download | dexon-consensus-4bf24c57bb84332339014cebec9e0531a5b0772f.tar dexon-consensus-4bf24c57bb84332339014cebec9e0531a5b0772f.tar.gz dexon-consensus-4bf24c57bb84332339014cebec9e0531a5b0772f.tar.bz2 dexon-consensus-4bf24c57bb84332339014cebec9e0531a5b0772f.tar.lz dexon-consensus-4bf24c57bb84332339014cebec9e0531a5b0772f.tar.xz dexon-consensus-4bf24c57bb84332339014cebec9e0531a5b0772f.tar.zst dexon-consensus-4bf24c57bb84332339014cebec9e0531a5b0772f.zip |
bin: patches: update patch due to upstream changes (#128)
Diffstat (limited to 'bin')
-rw-r--r-- | bin/patches/0001-common.mk-remove-hard-coded-CFLAGS-and-LDFLAGS.patch | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/bin/patches/0001-common.mk-remove-hard-coded-CFLAGS-and-LDFLAGS.patch b/bin/patches/0001-common.mk-remove-hard-coded-CFLAGS-and-LDFLAGS.patch index 56e10c6..a76daa7 100644 --- a/bin/patches/0001-common.mk-remove-hard-coded-CFLAGS-and-LDFLAGS.patch +++ b/bin/patches/0001-common.mk-remove-hard-coded-CFLAGS-and-LDFLAGS.patch @@ -1,25 +1,26 @@ -From 3601ad3d9104fa1d6e24e4bfeaa9467e1a5259ce Mon Sep 17 00:00:00 2001 +From 8fbe73cbbf524cfa6955a10a6617f02161ffa33b Mon Sep 17 00:00:00 2001 From: Wei-Ning Huang <w@cobinhood.com> -Date: Tue, 18 Sep 2018 12:28:15 +0800 +Date: Fri, 21 Sep 2018 18:12:20 +0800 Subject: [PATCH] common.mk: remove hard coded CFLAGS and LDFLAGS --- - common.mk | 2 -- - 1 file changed, 2 deletions(-) + common.mk | 3 --- + 1 file changed, 3 deletions(-) diff --git a/common.mk b/common.mk -index 986e88f..9b42060 100644 +index 3a82835..9b42060 100644 --- a/common.mk +++ b/common.mk -@@ -14,8 +14,6 @@ ifeq ($(UNAME_S),Darwin) +@@ -14,9 +14,6 @@ ifeq ($(UNAME_S),Darwin) OS=mac ARCH=x86_64 LIB_SUF=dylib -- CFLAGS+=-I/usr/local/opt/openssl/include -- LDFLAGS+=-L/usr/local/opt/openssl/lib +- OPENSSL_DIR?=/usr/local/opt/openssl +- CFLAGS+=-I$(OPENSSL_DIR)/include +- LDFLAGS+=-L$(OPENSSL_DIR)/lib else LIB_SUF=so endif -- -2.15.2 (Apple Git-101.1) +2.17.1 (Apple Git-112) |