[444bcf] | 1 | AC_INIT([singular],[3.1.3.sw]) |
---|
[715936] | 2 | |
---|
[429497] | 3 | _AC_SRCDIRS(["$ac_dir"]) |
---|
| 4 | |
---|
[3aea08] | 5 | AC_CONFIG_MACRO_DIR([m4]) |
---|
[9634a6] | 6 | AC_CONFIG_AUX_DIR([.]) |
---|
[715936] | 7 | |
---|
[3aea08] | 8 | AC_CONFIG_SRCDIR([Singular/tesths.cc]) |
---|
| 9 | |
---|
| 10 | AC_CONFIG_HEADER([config.h]) |
---|
| 11 | |
---|
[ea0001] | 12 | AM_MAINTAINER_MODE |
---|
[24a77fb] | 13 | AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) # -Wno-extra-portability -Werror silent-rules |
---|
[2e984a] | 14 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) |
---|
[280286e] | 15 | m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) |
---|
[2e984a] | 16 | |
---|
[3aea08] | 17 | |
---|
| 18 | dnl Check if build env is sane |
---|
| 19 | AM_SANITY_CHECK |
---|
| 20 | |
---|
[f86531] | 21 | # |
---|
| 22 | # - Check for CC and CXX but be careful about CFLAGS. |
---|
| 23 | # |
---|
[3aea08] | 24 | |
---|
[f86531] | 25 | test "${CFLAGS+set}" = set || cflags_expl_set=no |
---|
[9634a6] | 26 | AC_PROG_CC |
---|
[f86531] | 27 | test "${CXXFLAGS+set}" = set || cxxflags_expl_set=no |
---|
[9634a6] | 28 | AC_PROG_CXX |
---|
[f86531] | 29 | if test "x$GCC" != xyes && test "x$GXX" != xyes; then |
---|
| 30 | AC_MSG_WARN(you better use gcc to compile Factory) |
---|
| 31 | else |
---|
| 32 | if test "x$GXX" = xyes && test "x$cxxflags_expl_set" = xno; then |
---|
| 33 | AC_MSG_WARN([we use \`' as default for \`CXXFLAGS' |
---|
| 34 | (instead of the configure default \`-g -O')]) |
---|
| 35 | fi |
---|
| 36 | if test "x$GCC" = xyes && test "x$cflags_expl_set" = xno; then |
---|
| 37 | AC_MSG_WARN([we use \`' as default for \`CFLAGS' |
---|
| 38 | (instead of the configure default \`-g -O')]) |
---|
| 39 | fi |
---|
| 40 | fi |
---|
| 41 | |
---|
[8fee84] | 42 | |
---|
| 43 | AC_HEADER_STDC |
---|
[76f3a18] | 44 | AC_CHECK_HEADERS(unistd.h iostream.h) |
---|
[8fee84] | 45 | |
---|
[eb2d25] | 46 | AC_CHECK_FUNCS(readlink getcwd getwd setenv putenv) |
---|
[8fee84] | 47 | |
---|
| 48 | |
---|
[f86531] | 49 | AC_PROG_CPP |
---|
| 50 | AC_PROG_CXXCPP |
---|
[897139] | 51 | AM_PROG_CC_C_O |
---|
[7c7495] | 52 | ### AM_PROG_LEX |
---|
[3aea08] | 53 | AC_PROG_LN_S |
---|
| 54 | AC_PROG_INSTALL |
---|
[b9cf41] | 55 | |
---|
[80c102] | 56 | LT_INIT |
---|
[81384b] | 57 | |
---|
[897139] | 58 | # Checks for libraries. |
---|
| 59 | 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)])) |
---|
| 60 | 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)])) |
---|
[286be1f] | 61 | LB_CHECK_FLINT(2.3,,AC_MSG_WARN([Unable to find FLINT (which is strongly recommended) on your machine: please use --with-flint=PATH_TO_DIR_CONTAINING_LIB_AND_INCLUDE (see also ./configure --help if you do not understand what we are talking about)])) |
---|
[6b61be] | 62 | |
---|
[cca8b3] | 63 | AX_PYTHON_DEFAULT() |
---|
[7b9d49] | 64 | AX_PYTHON_WITH_VERSION([2.4]) |
---|
| 65 | |
---|
[b3cd39] | 66 | |
---|
[3aea08] | 67 | AC_FUNC_ERROR_AT_LINE |
---|
| 68 | AC_FUNC_MALLOC |
---|
| 69 | |
---|
| 70 | SING_CHECK_PIPE |
---|
| 71 | |
---|
| 72 | # check for cpu properties |
---|
| 73 | AC_CHECK_SIZEOF(long,4) |
---|
| 74 | SING_CHECK_CPU |
---|
| 75 | |
---|
| 76 | #check for host: |
---|
| 77 | AC_CANONICAL_HOST |
---|
| 78 | case $host_os in |
---|
| 79 | *cygwin* ) LIBPREFIX="-Xlinker -Bdynamic";; |
---|
| 80 | * ) LIBPREFIX="";; |
---|
| 81 | esac |
---|
| 82 | |
---|
| 83 | |
---|
| 84 | SING_CHECK_P_PROCS |
---|
| 85 | SING_CHECK_FACTORY |
---|
[d56ad87] | 86 | SING_CHECK_READLINE |
---|
[b7cad8c] | 87 | SING_CHECK_DBM |
---|
[81384b] | 88 | SING_CHECK_GFANLIB |
---|
[f86531] | 89 | |
---|
| 90 | # CFLAGS |
---|
| 91 | if test "x$GCC" = xyes && test "x$cflags_expl_set" = xno; then |
---|
| 92 | CFLAGS="" |
---|
| 93 | fi |
---|
| 94 | |
---|
| 95 | # CXXFLAGS |
---|
| 96 | if test "x$GXX" = xyes && test "x$cxxflags_expl_set" = xno; then |
---|
| 97 | CXXFLAGS="" |
---|
| 98 | fi |
---|
| 99 | |
---|
[113ed4] | 100 | AC_DEFINE_UNQUOTED([CC],"$CC",[CC]) |
---|
| 101 | AC_DEFINE_UNQUOTED([CXX],"$CXX",[CXX]) |
---|
| 102 | AC_DEFINE_UNQUOTED([CFLAGS],"$CFLAGS",[CFLAGS]) |
---|
| 103 | AC_DEFINE_UNQUOTED([CXXFLAGS],"$CXXFLAGS",[CXXFLAGS]) |
---|
| 104 | AC_DEFINE_UNQUOTED([LDFLAGS],"$LDFLAGS",[LDFLAGS]) |
---|
| 105 | |
---|
[eeae6e3] | 106 | ### the following is needed due to the use of om_sing_opt_show_mem in misc_ip.cc... |
---|
| 107 | #ac_configure_args="$ac_configure_args --with-external-config_h=../Singular/omSingularConfig.h" |
---|
[715936] | 108 | |
---|
[461f40] | 109 | AC_ARG_ENABLE(omalloc, AS_HELP_STRING([--disable-omalloc], [do NOT use omalloc within the factory]), |
---|
| 110 | [if test "x$enableval" = "xyes"; then |
---|
| 111 | ENABLE_OMALLOC=yes |
---|
| 112 | fi], ENABLE_OMALLOC=add) |
---|
[429497] | 113 | |
---|
[461f40] | 114 | ENABLE_OMALLOC_ARG="--with-omalloc-dir=$ac_abs_top_srcdir --with-omalloc-extra-dir=$ac_abs_top_builddir --enable-omalloc-trust" |
---|
[429497] | 115 | |
---|
[461f40] | 116 | if test "x$ENABLE_OMALLOC" = xadd; then |
---|
| 117 | ENABLE_OMALLOC=yes |
---|
| 118 | ENABLE_OMALLOC_ARG="--enable-omalloc $ENABLE_OMALLOC_ARG" |
---|
| 119 | fi |
---|
| 120 | |
---|
| 121 | |
---|
| 122 | |
---|
| 123 | |
---|
| 124 | if test "x$ENABLE_FACTORY" = xyes; then |
---|
| 125 | AC_MSG_CHECKING(whether to use omalloc in factory) |
---|
| 126 | if test "x$ENABLE_OMALLOC" = xyes; then |
---|
[429497] | 127 | AC_MSG_RESULT(yes) |
---|
[461f40] | 128 | ac_configure_args="$ac_configure_args $ENABLE_OMALLOC_ARG" |
---|
| 129 | else |
---|
[429497] | 130 | AC_MSG_RESULT(no) |
---|
[461f40] | 131 | fi |
---|
[429497] | 132 | fi |
---|
| 133 | |
---|
[f284db] | 134 | AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug], [build the debugging version of the libraries]), |
---|
[2b43ac] | 135 | [if test "x$enableval" = "xyes"; then |
---|
| 136 | ENABLE_DEBUG=yes |
---|
| 137 | fi], ENABLE_DEBUG=no) |
---|
| 138 | |
---|
| 139 | AM_CONDITIONAL(WANT_DEBUG, test x"${ENABLE_DEBUG}" == xyes) |
---|
| 140 | |
---|
[d1fbbf] | 141 | AC_ARG_ENABLE(countedref, AS_HELP_STRING([--enable-countedref], [Enable autoloading of reference counted types]), |
---|
| 142 | [if test "x$enableval" = "xyes"; then |
---|
| 143 | ENABLE_COUNTEDREF_AUTOLOAD=yes |
---|
| 144 | fi], ENABLE_COUNTEDREF_AUTOLOAD=no) |
---|
| 145 | |
---|
| 146 | if test x"${ENABLE_COUNTEDREF_AUTOLOAD}" == xyes; then |
---|
| 147 | AC_DEFINE([SI_COUNTEDREF_AUTOLOAD],1,[Enable autoloading of reference counted types]) |
---|
| 148 | AC_SUBST(SI_COUNTEDREF_AUTOLOAD) |
---|
| 149 | fi |
---|
| 150 | |
---|
[81384b] | 151 | AC_CONFIG_SUBDIRS([findexec]) |
---|
[461f40] | 152 | AC_CONFIG_SUBDIRS([omalloc]) |
---|
[715936] | 153 | |
---|
[461f40] | 154 | if test "x$ENABLE_FACTORY" = xyes; then |
---|
| 155 | AC_CONFIG_SUBDIRS([factory]) |
---|
[6b61be] | 156 | fi |
---|
[715936] | 157 | |
---|
[461f40] | 158 | AC_CONFIG_SUBDIRS([libpolys]) |
---|
[5417ff] | 159 | |
---|
[715936] | 160 | AC_CONFIG_FILES([Makefile]) |
---|
[3aea08] | 161 | AC_CONFIG_FILES([kernel/Makefile]) |
---|
[b9cf41] | 162 | AC_CONFIG_FILES([numeric/Makefile]) |
---|
[151a06] | 163 | AC_CONFIG_FILES([Singular/Makefile]) |
---|
[1114d2] | 164 | AC_CONFIG_FILES([dyn_modules/Makefile]) |
---|
| 165 | AC_CONFIG_FILES([dyn_modules/bigintm/Makefile]) |
---|
| 166 | AC_CONFIG_FILES([dyn_modules/syzextra/Makefile]) |
---|
[5417ff] | 167 | AC_CONFIG_FILES([dyn_modules/callgfanlib/Makefile]) |
---|
| 168 | AC_CONFIG_FILES([IntegerProgramming/Makefile]) |
---|
[584f6b0] | 169 | AC_CONFIG_FILES([libsingular-config]) |
---|
[5417ff] | 170 | AC_CONFIG_SUBDIRS([gfanlib]) |
---|
[b9cf41] | 171 | |
---|
[9634a6] | 172 | AC_OUTPUT |
---|