source: git/m4/gfanlib-check.m4 @ e4e36c

spielwiese
Last change on this file since e4e36c was 81384b, checked in by Yue Ren <ren@…>, 11 years ago
new: newest version of callgfanlib package as master branch also includes minor changes in bigintmat to allow empty matrices and a new function which returns the regular print output as char* (necessary for the print routines of the convex objects)
  • Property mode set to 100644
File size: 411 bytes
Line 
1# gfanlib.m4
2
3AC_DEFUN([SING_CHECK_GFANLIB],
4[
5
6AC_ARG_ENABLE(gfanlib,
7AS_HELP_STRING([--enable-gfanlib], [Enables gfanlib, a package for basic convex geometry]),
8[ENABLE_GFANLIB="yes"],
9[ENABLE_GFANLIB="no"])
10
11AC_MSG_CHECKING(whether to build with gfanlib)
12if test "x$ENABLE_GFANLIB" = xyes; then
13 AC_MSG_RESULT(yes)
14else
15 AC_MSG_RESULT(no)
16fi
17
18AM_CONDITIONAL(HAVE_GFANLIB, test "x$ENABLE_GFANLIB" = xyes)
19
20])
Note: See TracBrowser for help on using the repository browser.