Changeset 3a40eb in git
- Timestamp:
- Aug 20, 2013, 11:36:28 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 1dbfb4a46972767ca8f476540e393e0f2f779abb
- Parents:
- 737c95d182062884bee7e54bf8afd4484d84f6c6
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-08-20 23:36:28+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-08-21 00:31:27+02:00
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.am
r737c95 r3a40eb 138 138 subexpr.cc\ 139 139 pyobject_setup.cc\ 140 singmathic.cc\ 140 141 walk.cc\ 141 142 walk_ip.cc\ -
Singular/mod_lib.h
r737c95 r3a40eb 2 2 #define MOD_LIB_H 3 3 4 // #include <config.h> /* for EMBED_PYTHON */4 // #include <config.h> /* for EMBED_PYTHON, HAVE_MATHICGB */ 5 5 6 6 #include <polys/mod_raw.h> /* for lib_types */ … … 10 10 #ifdef EMBED_PYTHON 11 11 #define SI_BUILTIN_PYOBJECT(add) add(pyobject) add(syzextra) 12 //TODO: the line above means that syzextra should be staticly embedded IFF pyobjects do so :( 12 13 #else 13 14 #define SI_BUILTIN_PYOBJECT(add) 15 #endif 16 17 #ifdef HAVE_MATHICGB 18 # define SI_BUILTIN_MATHIC(add) add(singmathic) 19 #else 20 # define SI_BUILTIN_MATHIC(add) 14 21 #endif 15 22 … … 18 25 #define SI_FOREACH_BUILTIN(add)\ 19 26 add(staticdemo)\ 27 SI_BUILTIN_MATHIC(add)\ 20 28 SI_BUILTIN_PYOBJECT(add) 21 29 … … 23 31 24 32 #endif 33 -
configure.ac
r737c95 r3a40eb 10 10 11 11 AC_CONFIG_HEADER([config.h]) 12 13 dnl Apparently, this is required for using an AC_CHECK_HEADER within AS_IF(...), at least on Cygwin. 14 AC_USE_SYSTEM_EXTENSIONS 12 15 13 16 AM_MAINTAINER_MODE … … 57 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)])) 58 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)])) 62 LB_CHECK_MATHICGB 63 59 64 60 65 AX_PYTHON_DEFAULT() … … 87 92 ### the following is needed due to the use of om_sing_opt_show_mem in misc_ip.cc... 88 93 #ac_configure_args="$ac_configure_args --with-external-config_h=../Singular/omSingularConfig.h" 94 89 95 90 96 AC_ARG_ENABLE(omalloc, AS_HELP_STRING([--disable-omalloc], [do NOT use omalloc within the factory]),
Note: See TracChangeset
for help on using the changeset viewer.