Modified: trunk/dports/lang/julia/Portfile (140112 => 140113)
--- trunk/dports/lang/julia/Portfile 2015-09-09 21:27:34 UTC (rev 140112)
+++ trunk/dports/lang/julia/Portfile 2015-09-09 21:27:35 UTC (rev 140113)
@@ -31,7 +31,11 @@
# Force buildbot to skip this since julia builds its own blas; see #45101
archive_sites
-depends_lib-append port:llvm-3.5 \
+# julia still relies on the jit implementation of LLVM <= 3.5 (officially on
+# version 3.3, though) and won't be changing that until the 0.4 branch
+set llvm_ver 3.5
+
+depends_lib-append port:llvm-${llvm_ver} \
port:curl \
port:pcre \
port:gmp \
@@ -72,7 +76,7 @@
CXX=${configure.cxx} \
FC=${configure.fc} \
USE_SYSTEM_LLVM=1 \
- LLVM_CONFIG=llvm-config-mp-3.5 \
+ LLVM_CONFIG=llvm-config-mp-${llvm_ver} \
USE_SYSTEM_LIBUNWIND=1 \
USE_SYSTEM_LIBM=1 \
USE_SYSTEM_GMP=1 \