summaryrefslogtreecommitdiff
path: root/lang/julia/files/check_openblas.c
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2019-05-28 06:12:47 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2019-05-28 06:12:47 +0000
commitcb5c8198a2e924dc5fb6cd74ad650d55910ff692 (patch)
tree5d745697ceb616cfcd33f46d7a23950a0bd2e75a /lang/julia/files/check_openblas.c
parentEnable lang/julia06, lang/julia07 to be installed simultaneously (diff)
Turn lang/julia to metaport & introduce JULIA_DEFAULT to bsd.default-versions.mk
PR: 235872 Submitted by: Iblis Lin <iblis@hs.ntnu.edu.tw> (maintainer)
Notes
Notes: svn path=/head/; revision=502857
Diffstat (limited to 'lang/julia/files/check_openblas.c')
-rw-r--r--lang/julia/files/check_openblas.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/lang/julia/files/check_openblas.c b/lang/julia/files/check_openblas.c
deleted file mode 100644
index 6218d3507c65..000000000000
--- a/lang/julia/files/check_openblas.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <string.h>
-
-char* openblas_get_config(void);
-
-int main()
-{
- if (strstr(openblas_get_config(), "USE64BITINT") == NULL)
- return 1;
- return 0;
-}