Changeset c2ff413 in git
- Timestamp:
- Jan 9, 2013, 6:09:44 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 538512de5ab210253d8edeee07e4a22b42392e56
- Parents:
- 7649f8a6c86d9e16fbb5ceb98a83a9647c360d53
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-01-09 18:09:44+01:00
- git-committer:
- Oleksandr Motsak <http://goo.gl/mcpzY>2013-01-09 18:13:19+01:00
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/pyobject.cc
r7649f8a rc2ff413 18 18 //#include "newstruct.h" 19 19 20 #i nclude <Python.h>20 #ifdef HAVE_PYTHON 21 21 22 22 #include <Singular/ipid.h> … … 40 40 #include "blackbox.h" 41 41 #include "ipshell.h" 42 43 44 45 46 //#include <Python.h> 42 #include "newstruct.h" 43 44 #include <Python.h> 45 47 46 // #include <iterator> // std::distance 48 47 // #include <stdio.h> … … 753 752 } 754 753 #endif 754 755 #endif /* HAVE_PYTHON */ -
m4/ax_python_with_version.m4
r7649f8a rc2ff413 91 91 fi 92 92 fi 93 AM_CONDITIONAL(PYTHON_USE, test x"$ax_python_use" = x"true")94 AM_CONDITIONAL(SI_EMBED_PYTHON, test x"$si_embed_python" = x"true")95 93 96 94 if test x"$si_embed_python" = x"true" … … 100 98 AC_SUBST(EMBED_PYOBJECT_LDFLAGS,"\${PYTHON_LSPEC}") 101 99 fi 102 103 AM_CONDITIONAL(PYTHON_MODULE, test x"$si_embed_python" != x"true") 100 if test x"$ax_python_use" = x"true" 101 then 102 AC_DEFINE(HAVE_PYTHON,1,[compile python-related stuff]) 103 fi 104 104 fi 105 106 AM_CONDITIONAL(PYTHON_USE, test x"$ax_python_use" = x"true") 107 AM_CONDITIONAL(SI_EMBED_PYTHON, test x"$si_embed_python" = x"true") 108 AM_CONDITIONAL(PYTHON_MODULE, test x"$si_embed_python" != x"true") 105 109 106 110 ])
Note: See TracChangeset
for help on using the changeset viewer.