aboutsummaryrefslogtreecommitdiffstats
path: root/community/julia/0004-remove-sysctl.h.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-10-19 02:46:33 +0200
committerJakub Jirutka <jakub@jirutka.cz>2017-10-19 02:48:38 +0200
commit89182e0a43c4e4beac1bb5d9f87d267bc62eed6a (patch)
treeec8c0e00a5f5832760eafcd5222f5602ae309e26 /community/julia/0004-remove-sysctl.h.patch
parent8e3086bca786035aea2325c381e6df64aec643c3 (diff)
downloadaports-89182e0a43c4e4beac1bb5d9f87d267bc62eed6a.tar.bz2
aports-89182e0a43c4e4beac1bb5d9f87d267bc62eed6a.tar.xz
community/julia: upgrade to 0.6.0
Diffstat (limited to 'community/julia/0004-remove-sysctl.h.patch')
-rw-r--r--community/julia/0004-remove-sysctl.h.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/community/julia/0004-remove-sysctl.h.patch b/community/julia/0004-remove-sysctl.h.patch
deleted file mode 100644
index 42c71cb893..0000000000
--- a/community/julia/0004-remove-sysctl.h.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 6f09a6de41e7e35779e0755d9e52a4bf79424109 Mon Sep 17 00:00:00 2001
-From: albap <albapompeo@gmail.com>
-Date: Sun, 31 Jan 2016 10:50:02 -0200
-Subject: [PATCH] Remove nonstandard header sys/sysctl.h
-
-This header prevents me from building Julia on musl libc.
-
-```
-/home/alba/julia/src/sys.c:16:24: fatal error: sys/sysctl.h: No such file or directory
-compilation terminated.
-Makefile:94: recipe for target 'sys.o' failed
-make[1]: *** [sys.o] Error 1
-```
-
-If I remove it from julia/src/sys.c then it works.
-
-Why is sys/sysctl.h needed in first place? I cannot find it in POSIX.
----
- src/sys.c | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/src/sys.c b/src/sys.c
-index 9a48871..89069a9 100644
---- a/src/sys.c
-+++ b/src/sys.c
-@@ -13,7 +13,6 @@
- #ifdef _OS_WINDOWS_
- #include <psapi.h>
- #else
--#include <sys/sysctl.h>
- #include <sys/wait.h>
- #include <sys/ptrace.h>
- #include <unistd.h>