Show
Ignore:
Timestamp:
06/14/08 20:25:46 (6 months ago)
Author:
pernet
Message:

* add the sage-interface macro file
* clean up the documentation

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/linbox/macros/maple-check.m4

    r2961 r2968  
    1818AC_MSG_CHECKING([whether to compile the drivers]) 
    1919 
    20 AC_ARG_ENABLE(drivers, [ --enable-drivers       Enable the compilation of the drivers], 
     20AC_ARG_ENABLE(drivers, [  --enable-drivers Enable the compilation of the drivers], 
    2121[ 
    2222AC_MSG_RESULT(yes) 
     
    3434 
    3535AC_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.  
    4042            ], 
    4143            [if test "$withval" = yes ; then 
     
    4749 
    4850AC_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)], 
    5252              [have_shared="$enableval"], 
    5353              [have_shared="no"]) 
     
    133133]) 
    134134 
    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 ])