source: git/m4/julia-check.m4 @ 712741

fieker-DuValspielwiese
Last change on this file since 712741 was 82d693, checked in by Hans Schoenemann <hannes@…>, 7 years ago
add: skeleton for julia-cf
  • Property mode set to 100644
File size: 398 bytes
Line 
1# julia.m4
2
3AC_DEFUN([SING_CHECK_JULIA],
4[
5
6AC_ARG_ENABLE(julia,
7 AS_HELP_STRING([--enable-julia], [Enables interface for Singular to julia]),
8 [ENABLE_JULIA="$enableval"], [ENABLE_JULIA=""])
9
10AC_MSG_CHECKING(whether to check for julia interface)
11
12if test "x$ENABLE_JULIA" != xno; then
13  AC_MSG_RESULT([yes])
14  AC_DEFINE(HAVE_JULIA,1,[Define if julia is installed])
15else
16  AC_MSG_RESULT(no)
17fi
18
19])
Note: See TracBrowser for help on using the repository browser.