Changeset 897139 in git
- Timestamp:
- Sep 7, 2011, 2:05:51 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'e4953e241ca9796e2dcaa9e6228345429b6f4a96')
- Children:
- 1f4ff97259ae27b025c548fb6d8003d111f373a3
- Parents:
- 213d649793d02bccc46292a68beead7b202af509
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-07 14:05:51+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:33+01:00
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r213d64 r897139 8 8 endif 9 9 10 PACKAGES=$(ALLOC) $(USE_FACTORY) libpolys numeric kernelSingular10 PACKAGES=$(ALLOC) $(USE_FACTORY) libpolys kernel numeric Singular 11 11 12 12 SUBDIRS=$(PACKAGES) -
configure.ac
r213d64 r897139 5 5 AC_PROG_CC 6 6 AC_PROG_CXX 7 AM_PROG_CC_C_O 7 8 AC_PROG_RANLIB 8 9 9 10 SING_CHECK_FACTORY 11 # Checks for libraries. 12 LB_CHECK_GMP(3.1.1,,AC_MSG_ERROR([Unable to find GMP on your machine: please use --with-gmp=PATH_TO_DIR_CONTAINING_LIB_AND_INCLUDE (see also ./configure --help if you do not understand what we are talking about)])) 13 LB_CHECK_NTL(5.0,,AC_MSG_WARN([Unable to find NTL (which is strongly recommended) on your machine: please use --with-ntl=PATH_TO_DIR_CONTAINING_LIB_AND_INCLUDE (see also ./configure --help if you do not understand what we are talking about)])) 10 14 11 15 AC_CONFIG_FILES([Makefile]) 12 13 14 16 AC_CONFIG_SUBDIRS(omalloc) 15 17 if test x$ENABLE_FACTORY = xyes; then … … 17 19 fi 18 20 AC_CONFIG_SUBDIRS(libpolys) 19 20 21 AC_CONFIG_FILES([numeric/Makefile]) 21 22 -
libpolys/configure.ac
r213d64 r897139 21 21 # Checks for libraries. 22 22 LB_CHECK_GMP(3.1.1,,AC_MSG_ERROR([Unable to find GMP on your machine: please use --with-gmp=PATH_TO_DIR_CONTAINING_LIB_AND_INCLUDE (see also ./configure --help if you do not understand what we are talking about)])) 23 24 23 LB_CHECK_NTL(5.0,,AC_MSG_WARN([Unable to find NTL (which is strongly recommended) on your machine: please use --with-ntl=PATH_TO_DIR_CONTAINING_LIB_AND_INCLUDE (see also ./configure --help if you do not understand what we are talking about)])) 25 24 -
numeric/Makefile.am
r213d64 r897139 13 13 libnumeric_g_a_CPPFLAGS = -DHAVE_CONFIG_H 14 14 15 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys 15 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys ${GMP_CFLAGS} ${FACTORY_CFLAGS} ${NTL_CFLAGS} 16 16 17 17 SOURCES = mpr_base.cc mpr_inout.cc mpr_numeric.cc
Note: See TracChangeset
for help on using the changeset viewer.