1 | AC_DEFUN([SING_CHECK_ARITH_RINGS], |
---|
2 | [ |
---|
3 | AC_MSG_CHECKING(whether arithmetical rings should be enabled) |
---|
4 | |
---|
5 | AC_ARG_ENABLE(arith-rings, AS_HELP_STRING([--disable-arith-rings], [Disable arithmetical rings]), |
---|
6 | [if test $enableval = yes; then |
---|
7 | ENABLE_RINGS="yes" |
---|
8 | else |
---|
9 | ENABLE_RINGS="no" |
---|
10 | fi |
---|
11 | ],[ENABLE_RINGS="yes"]) |
---|
12 | |
---|
13 | if test x$ENABLE_RINGS = xyes; then |
---|
14 | AC_DEFINE(HAVE_RINGS,1,Enable arithmetical rings) |
---|
15 | fi |
---|
16 | |
---|
17 | AM_CONDITIONAL([ENABLE_RINGS],[test x$ENABLE_RINGS = xyes]) |
---|
18 | AC_MSG_RESULT($ENABLE_RINGS) |
---|
19 | ]) |
---|
20 | |
---|
21 | AC_DEFUN([SING_CHECK_FACTORY], |
---|
22 | [ |
---|
23 | AC_MSG_CHECKING(whether factory should be enabled) |
---|
24 | |
---|
25 | AC_ARG_ENABLE(factory, AS_HELP_STRING([--disable-factory], [Disable factory]), |
---|
26 | [if test $enableval = yes; then |
---|
27 | ENABLE_FACTORY="yes" |
---|
28 | else |
---|
29 | ENABLE_FACTORY="no" |
---|
30 | fi |
---|
31 | ],[ENABLE_FACTORY="yes"]) |
---|
32 | |
---|
33 | if test x$ENABLE_FACTORY = xyes; then |
---|
34 | FACTORY_CFLAGS="" |
---|
35 | FACTORY_LIBS="-lfactory" |
---|
36 | |
---|
37 | AC_SUBST(FACTORY_CFLAGS) |
---|
38 | AC_SUBST(FACTORY_LIBS) |
---|
39 | |
---|
40 | AC_DEFINE(HAVE_FACTORY,1,Enable factory) |
---|
41 | fi |
---|
42 | |
---|
43 | |
---|
44 | |
---|
45 | AM_CONDITIONAL([ENABLE_FACTORY],[test x$ENABLE_FACTORY = xyes]) |
---|
46 | AC_MSG_RESULT($ENABLE_FACTORY) |
---|
47 | ]) |
---|
48 | |
---|
49 | AC_DEFUN([SING_CHECK_PLURAL], |
---|
50 | [ |
---|
51 | AC_MSG_CHECKING(whether non-commutative subsystem should be enabled) |
---|
52 | |
---|
53 | AC_ARG_ENABLE(plural, AS_HELP_STRING([--disable-plural], [Disable non-commutative subsystem]), |
---|
54 | [if test $enableval = yes; then |
---|
55 | ENABLE_PLURAL="yes" |
---|
56 | else |
---|
57 | ENABLE_PLURAL="no" |
---|
58 | fi |
---|
59 | ],[ENABLE_PLURAL="yes"]) |
---|
60 | |
---|
61 | if test x$ENABLE_PLURAL = xyes; then |
---|
62 | AC_DEFINE(HAVE_PLURAL,1,Enable non-commutative subsystem) |
---|
63 | #TODO make a seperate switch |
---|
64 | AC_DEFINE(HAVE_SHIFTBBA,1,Enable letterplace) |
---|
65 | fi |
---|
66 | |
---|
67 | AM_CONDITIONAL([ENABLE_PLURAL],[test x$ENABLE_PLURAL = xyes]) |
---|
68 | |
---|
69 | AC_MSG_RESULT($ENABLE_PLURAL) |
---|
70 | ]) |
---|
71 | |
---|
72 | |
---|
73 | |
---|
74 | AC_DEFUN([SING_CHECK_DEBUG], [ |
---|
75 | ENABLE_DEBUG="no" |
---|
76 | |
---|
77 | AC_MSG_CHECKING([whether debugging checks should be embedded]) |
---|
78 | |
---|
79 | AC_ARG_ENABLE([debug], |
---|
80 | AS_HELP_STRING([--enable-debug], [build the debugging version of the libraries]), |
---|
81 | [if test "x$enableval" = "xyes"; then |
---|
82 | ENABLE_DEBUG="yes" |
---|
83 | fi]) |
---|
84 | |
---|
85 | AM_CONDITIONAL(WANT_DEBUG, test x"${ENABLE_DEBUG}" == xyes) |
---|
86 | |
---|
87 | if test "x${ENABLE_DEBUG}" != xyes; then |
---|
88 | AC_MSG_RESULT([no]) |
---|
89 | AC_DEFINE([OM_NDEBUG],1,"Disable OM Debug") |
---|
90 | AC_DEFINE([NDEBUG],1,"Disable Debug") |
---|
91 | else |
---|
92 | AC_MSG_RESULT([yes]) |
---|
93 | fi |
---|
94 | ]) |
---|