source: git/configure.ac @ ae133b

fieker-DuValspielwiese
Last change on this file since ae133b was eeae6e3, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
FIX: the use of "om_sing_opt_show_mem" in Singular/misc_ip.cc now depends on whether "--with-external-config_h=../Singular/omSingularConfig.h" was used, which is thus not necessary for building Singular anymore CHG: minor cleanup in configure.ac
  • Property mode set to 100755
File size: 1.0 KB
RevLine 
[9634a6]1AC_INIT([singular], [3.1.2.sw])
[715936]2
[9634a6]3AC_CONFIG_AUX_DIR([.])
[715936]4
[ea0001]5AM_MAINTAINER_MODE
[9634a6]6AM_INIT_AUTOMAKE
7AC_PROG_CC
8AC_PROG_CXX
[897139]9AM_PROG_CC_C_O
[b9cf41]10AC_PROG_RANLIB
11
[6b61be]12SING_CHECK_FACTORY
[897139]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)]))
[6b61be]16
[715936]17
[eeae6e3]18### the following is needed due to the use of om_sing_opt_show_mem in misc_ip.cc...
19#ac_configure_args="$ac_configure_args --with-external-config_h=../Singular/omSingularConfig.h"
[715936]20
[6b61be]21AC_CONFIG_SUBDIRS(omalloc)
[715936]22
[6b61be]23if test x$ENABLE_FACTORY = xyes; then
24  AC_CONFIG_SUBDIRS(factory)
25fi
[715936]26
[6b61be]27AC_CONFIG_SUBDIRS(libpolys)
[715936]28
29AC_CONFIG_FILES([Makefile])
[b9cf41]30AC_CONFIG_FILES([numeric/Makefile])
31
[9634a6]32AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.