source: git/configure.ac @ 715936

spielwiese
Last change on this file since 715936 was 715936, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
FIX: omalloc should be configured with with-external-config_h=../Singular/omSingularConfig.h (?) FIX: moved memory management to Singular/ FIX: mmstd.c should not provide mm/c/v -alloc & free (recursion problem!)
  • Property mode set to 100755
File size: 1.2 KB
Line 
1AC_INIT([singular], [3.1.2.sw])
2
3AC_CONFIG_AUX_DIR([.])
4
5AM_MAINTAINER_MODE
6AM_INIT_AUTOMAKE
7AC_PROG_CC
8AC_PROG_CXX
9AM_PROG_CC_C_O
10AC_PROG_RANLIB
11
12SING_CHECK_FACTORY
13# Checks for libraries.
14LB_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)]))
15LB_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)]))
16
17
18#if test x$ac_configure_args != x; then
19#  old_ac_configure_args="$ac_configure_args"
20#  ac_configure_args="$ac_configure_args --with-external-config_h=../Singular/omSingularConfig.h"
21#else
22#  old_ac_configure_args=""
23#fi
24
25ac_configure_args="$ac_configure_args --with-external-config_h=../Singular/omSingularConfig.h"
26
27AC_CONFIG_SUBDIRS(omalloc)
28
29# ac_configure_args="$old_ac_configure_args"
30
31if test x$ENABLE_FACTORY = xyes; then
32  AC_CONFIG_SUBDIRS(factory)
33fi
34
35AC_CONFIG_SUBDIRS(libpolys)
36
37AC_CONFIG_FILES([Makefile])
38AC_CONFIG_FILES([numeric/Makefile])
39
40AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.