summaryrefslogtreecommitdiff
path: root/development/flow/flow-noarch.patch
diff options
context:
space:
mode:
authorDhabyX <slack.dhabyx@gmail.com>2017-04-05 09:28:42 +0100
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2017-04-08 06:57:47 +0700
commit31c104e521bd16ac691fb79b528859de324a523c (patch)
tree2c78923cd297861e2359f3b43b7b3b82c86694c3 /development/flow/flow-noarch.patch
parent7c05813182e86cd87ee16d31438462659bde11b8 (diff)
downloadslackbuilds-31c104e521bd16ac691fb79b528859de324a523c.tar.gz
development/flow: Updated for version 0.43.0 + new maintainer.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'development/flow/flow-noarch.patch')
-rw-r--r--development/flow/flow-noarch.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/development/flow/flow-noarch.patch b/development/flow/flow-noarch.patch
deleted file mode 100644
index 2925164b1d..0000000000
--- a/development/flow/flow-noarch.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff -u -r flow-0.29.0/hack/heap/hh_shared.c flow-0.29.0-patched/hack/heap/hh_shared.c
---- flow-0.29.0/hack/heap/hh_shared.c 2016-07-14 18:29:48.000000000 +0100
-+++ flow-0.29.0-patched/hack/heap/hh_shared.c 2016-07-23 17:55:27.041786018 +0100
-@@ -130,19 +130,14 @@
- * appeared in Linux 3.17.
- ****************************************************************************/
- #if !defined __APPLE__ && !defined _WIN32
-+
- // Linux version for the architecture must support syscall memfd_create
-- #if defined(__x86_64__)
-- #define SYS_memfd_create 319
-- #elif defined(__powerpc64__)
-- #define SYS_memfd_create 360
-- #elif defined(__aarch64__)
-- #define SYS_memfd_create 385
-- #else
-- #error "hh_shared.c requires a architecture that supports memfd_create"
-+ #include <sys/syscall.h>
-+ #if !defined(SYS_memfd_create)
-+ #error "hh_shared.c requires an architecture that supports memfd_create"
- #endif
-
- #define MEMFD_CREATE 1
-- #include <asm/unistd.h>
-
- /* Originally this function would call uname(), parse the linux
- * kernel release version and make a decision based on whether