Changeset 2961

Show
Ignore:
Timestamp:
06/06/08 19:07:30 (6 months ago)
Author:
pernet
Message:

Adds the sage interface enabled by the m4 macro --enable-sage

Location:
trunk/linbox
Files:
4 added
7 modified

Legend:

Unmodified
Added
Removed
  • trunk/linbox/Makefile.am

    r2933 r2961  
    1313bin_SCRIPTS=linbox-config 
    1414 
    15 VERSION=1.1.5 
     15VERSION=1.1.6rc0 
  • trunk/linbox/configure.in

    r2879 r2961  
    11AC_PREREQ(2.50) 
    22#AC_INIT(linbox/linbox.doxy) 
    3 AC_INIT(linbox, 1.1.5,linbox-use@googlegroups.com)  
     3AC_INIT(linbox, 1.1.6rc0,linbox-use@googlegroups.com)  
    44AM_INIT_AUTOMAKE([1.8 gnu no-dependencies]) 
    55AM_CONFIG_HEADER([config.h]) 
     
    127127LB_CHECK_LIDIA 
    128128LB_CHECK_MAPLE 
     129LB_CHECK_SAGE 
    129130#LB_CHECK_ATLAS 
    130131LB_CHECK_BLAS(,,[ 
     
    179180interfaces/maple/Makefile 
    180181interfaces/kaapi/Makefile 
     182interfaces/sage/Makefile 
    181183macros/Makefile 
    182184]) 
  • trunk/linbox/interfaces/Makefile.am

    r2833 r2961  
    1 SUBDIRS=driver kaapi maple 
     1SUBDIRS=driver kaapi maple sage 
    22 
    33 
  • trunk/linbox/interfaces/driver

    • Property svn:ignore set to
      Makefile
      Makefile.in
  • trunk/linbox/interfaces/kaapi

    • Property svn:ignore set to
      Makefile
      Makefile.in

  • trunk/linbox/interfaces/maple

    • Property svn:ignore set to
      Makefile
      Makefile.in
  • trunk/linbox/macros/maple-check.m4

    r2882 r2961  
    131131AM_CONDITIONAL(LINBOX_COMPILE_DRIVERS, test "x$compile_drivers" = "xyes" -o "x$HAVE_MAPLE" = "xyes" ) 
    132132 
    133  
    134  
    135  
    136133]) 
    137134 
    138135 
     136AC_DEFUN([LB_CHECK_SAGE], 
     137[ 
     138AC_MSG_CHECKING([whether to compile the sage interface]) 
     139 
     140AC_ARG_ENABLE(sage, [ --enable-sage     Enable the compilation of the sage interface], 
     141[ 
     142AC_MSG_RESULT(yes) 
     143sage_interface="yes" 
     144],[ 
     145AC_MSG_RESULT(no) 
     146sage_interface="no" 
     147]) 
     148AM_CONDITIONAL(LINBOX_HAVE_SAGE, test "x$sage_interface" = "xyes") 
     149])