Changeset 2961
- Timestamp:
- 06/06/08 19:07:30 (6 months ago)
- Location:
- trunk/linbox
- Files:
-
- 4 added
- 7 modified
-
Makefile.am (modified) (1 diff)
-
configure.in (modified) (3 diffs)
-
interfaces/Makefile.am (modified) (1 diff)
-
interfaces/driver (modified) (1 prop)
-
interfaces/kaapi (modified) (1 prop)
-
interfaces/maple (modified) (1 prop)
-
interfaces/sage (added)
-
interfaces/sage/Makefile.am (added)
-
interfaces/sage/linbox-sage.C (added)
-
interfaces/sage/linbox-sage.h (added)
-
macros/maple-check.m4 (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/linbox/Makefile.am
r2933 r2961 13 13 bin_SCRIPTS=linbox-config 14 14 15 VERSION=1.1. 515 VERSION=1.1.6rc0 -
trunk/linbox/configure.in
r2879 r2961 1 1 AC_PREREQ(2.50) 2 2 #AC_INIT(linbox/linbox.doxy) 3 AC_INIT(linbox, 1.1. 5,linbox-use@googlegroups.com)3 AC_INIT(linbox, 1.1.6rc0,linbox-use@googlegroups.com) 4 4 AM_INIT_AUTOMAKE([1.8 gnu no-dependencies]) 5 5 AM_CONFIG_HEADER([config.h]) … … 127 127 LB_CHECK_LIDIA 128 128 LB_CHECK_MAPLE 129 LB_CHECK_SAGE 129 130 #LB_CHECK_ATLAS 130 131 LB_CHECK_BLAS(,,[ … … 179 180 interfaces/maple/Makefile 180 181 interfaces/kaapi/Makefile 182 interfaces/sage/Makefile 181 183 macros/Makefile 182 184 ]) -
trunk/linbox/interfaces/Makefile.am
r2833 r2961 1 SUBDIRS=driver kaapi maple 1 SUBDIRS=driver kaapi maple sage 2 2 3 3 -
trunk/linbox/interfaces/driver
-
Property
svn:ignore set
to
Makefile
Makefile.in
-
Property
svn:ignore set
to
-
trunk/linbox/interfaces/kaapi
-
Property
svn:ignore set
to
Makefile
Makefile.in
-
Property
svn:ignore set
to
-
trunk/linbox/interfaces/maple
-
Property
svn:ignore set
to
Makefile
Makefile.in
-
Property
svn:ignore set
to
-
trunk/linbox/macros/maple-check.m4
r2882 r2961 131 131 AM_CONDITIONAL(LINBOX_COMPILE_DRIVERS, test "x$compile_drivers" = "xyes" -o "x$HAVE_MAPLE" = "xyes" ) 132 132 133 134 135 136 133 ]) 137 134 138 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 ])
