Changeset 2968 for trunk/linbox/macros/maple-check.m4
- Timestamp:
- 06/14/08 20:25:46 (6 months ago)
- Files:
-
- 1 modified
-
trunk/linbox/macros/maple-check.m4 (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/linbox/macros/maple-check.m4
r2961 r2968 18 18 AC_MSG_CHECKING([whether to compile the drivers]) 19 19 20 AC_ARG_ENABLE(drivers, [ --enable-driversEnable the compilation of the drivers],20 AC_ARG_ENABLE(drivers, [ --enable-drivers Enable the compilation of the drivers], 21 21 [ 22 22 AC_MSG_RESULT(yes) … … 34 34 35 35 AC_ARG_WITH(maple, 36 [ --with-maple=<path>|yes|no 37 Use Maple library. 38 If argument is no, you do not have the library installed on your machine (set as default). 39 If argument is yes or <empty> that means the library is well installed and so reachable. Otherwise you give the <path> to the directory which contains the Software. 36 [ --with-maple=<path>|yes|no Use Maple library. If argument is no, you do not 37 have the library installed on your machine (set as 38 default). If argument is yes or <empty> that means 39 the library is well installed and so reachable. 40 Otherwise you give the <path> to the directory which 41 contains the Software. 40 42 ], 41 43 [if test "$withval" = yes ; then … … 47 49 48 50 AC_ARG_ENABLE(shared, 49 [ --enable-shared 50 Check for shared compilation (needed by --with-maple) 51 ], 51 [ --enable-shared Check for shared compilation (needed by --with-maple)], 52 52 [have_shared="$enableval"], 53 53 [have_shared="no"]) … … 133 133 ]) 134 134 135 136 AC_DEFUN([LB_CHECK_SAGE],137 [138 AC_MSG_CHECKING([whether to compile the sage interface])139 140 AC_ARG_ENABLE(sage, [ --enable-sage Enable the compilation of the sage interface],141 [142 AC_MSG_RESULT(yes)143 sage_interface="yes"144 ],[145 AC_MSG_RESULT(no)146 sage_interface="no"147 ])148 AM_CONDITIONAL(LINBOX_HAVE_SAGE, test "x$sage_interface" = "xyes")149 ])
