source: git/configure.ac @ 7e6bfe

fieker-DuValspielwiese
Last change on this file since 7e6bfe was 897139, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
FIX: numerics need GMP (NTL/FACTORY?) => changes to build system
  • Property mode set to 100755
File size: 848 bytes
Line 
1AC_INIT([singular], [3.1.2.sw])
2AC_CONFIG_AUX_DIR([.])
3AM_MAINTAINER_MODE
4AM_INIT_AUTOMAKE
5AC_PROG_CC
6AC_PROG_CXX
7AM_PROG_CC_C_O
8AC_PROG_RANLIB
9
10SING_CHECK_FACTORY
11# Checks for libraries.
12LB_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)]))
13LB_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)]))
14
15AC_CONFIG_FILES([Makefile])
16AC_CONFIG_SUBDIRS(omalloc)
17if test x$ENABLE_FACTORY = xyes; then
18  AC_CONFIG_SUBDIRS(factory)
19fi
20AC_CONFIG_SUBDIRS(libpolys)
21AC_CONFIG_FILES([numeric/Makefile])
22
23AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.