source: git/m4/julia-check.m4 @ 952bd16

spielwiese
Last change on this file since 952bd16 was 4b6d98, checked in by Hans Schoenemann <hannes@…>, 7 years ago
skeleton for julia-cf, p2
  • Property mode set to 100644
File size: 400 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="no"])
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.