aboutsummaryrefslogtreecommitdiffstats
path: root/community/radare2/0001-fix-for-build-with-syscapstone.patch
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2018-09-07 17:37:31 +0200
committerSören Tempel <soeren+git@soeren-tempel.net>2018-09-07 17:37:31 +0200
commit3e91ad8828fbd7388f0af964347da2e401b7c8eb (patch)
treeb293482fef0d668fbbd8f8389ae7502cfa15b5b7 /community/radare2/0001-fix-for-build-with-syscapstone.patch
parent9306e7f8909a4437d8bc802512465b1e5322da35 (diff)
downloadaports-3e91ad8828fbd7388f0af964347da2e401b7c8eb.tar.bz2
aports-3e91ad8828fbd7388f0af964347da2e401b7c8eb.tar.xz
community/radare2: upgrade to 2.9.0
Diffstat (limited to 'community/radare2/0001-fix-for-build-with-syscapstone.patch')
-rw-r--r--community/radare2/0001-fix-for-build-with-syscapstone.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/community/radare2/0001-fix-for-build-with-syscapstone.patch b/community/radare2/0001-fix-for-build-with-syscapstone.patch
deleted file mode 100644
index 343e6866ef..0000000000
--- a/community/radare2/0001-fix-for-build-with-syscapstone.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 491b989889d6f74ae8ae7a31efae2ffbcacbea53 Mon Sep 17 00:00:00 2001
-From: "longlene@gmail.com" <longlene@gmail.com>
-Date: Tue, 22 May 2018 12:52:12 +0800
-Subject: [PATCH 1/4] fix for build with syscapstone
-
----
- libr/Makefile | 9 +++++++--
- 1 file changed, 7 insertions(+), 2 deletions(-)
-
-diff --git a/libr/Makefile b/libr/Makefile
-index 05cb40fec..0b39b48c0 100644
---- a/libr/Makefile
-+++ b/libr/Makefile
-@@ -84,13 +84,18 @@ E+=../shlr/bochs/lib/libbochs.${EXT_AR}
- #E+=../shlr/sdb/src/libsdb.${EXT_AR}
- #endif
-
-+ifeq ($(USE_CAPSTONE),1)
-+E+=$(CAPSTONE_LDFLAGS)
-+else
-+E+=../shlr/capstone/libcapstone.${EXT_AR}
-+endif
-+
- libr.${EXT_SO}: .libr
- $(CC) -fvisibility=hidden $(MLFLAGS) -shared -dynamiclib -o libr.${EXT_SO} \
- .libr/*.o \
- ../shlr/gdb/lib/libgdbr.${EXT_AR} ../shlr/java/libr_java.${EXT_AR} \
- ../shlr/zip/librz.${EXT_AR} \
-- ../shlr/libr_shlr.${EXT_AR} $(E)\
-- ../shlr/capstone/libcapstone.${EXT_AR}
-+ ../shlr/libr_shlr.${EXT_AR} $(E)
-
- else
-
---
-2.17.1
-