|
From: <mk...@us...> - 2003-04-12 01:25:34
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim
In directory sc8-pr-cvs1:/tmp/cvs-serv2337
Modified Files:
CHANGES.current acinclude.m4
Log Message:
see CHANGES.current
Index: CHANGES.current
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/CHANGES.current,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** CHANGES.current 12 Apr 2003 00:55:18 -0000 1.17
--- CHANGES.current 12 Apr 2003 01:25:31 -0000 1.18
***************
*** 2,5 ****
--- 2,11 ----
===========================
+ 2003-04-11: onsight
+ Modified autoconf scripts to get the actual python
+ include path using distutils, rather than just using
+ PYTHON_PREFIX/include/python2.2, which is version
+ dependent.
+
*********** VC USERS: please remove Platform.cpp from the VC project
files.
Index: acinclude.m4
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/acinclude.m4,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** acinclude.m4 26 Mar 2003 10:17:54 -0000 1.6
--- acinclude.m4 12 Apr 2003 01:25:31 -0000 1.7
***************
*** 140,144 ****
--- 140,147 ----
python=yes
PYTHON_PREFIX=`python -c 'import sys; print sys.prefix'`
+ dnl hopefully distutils is installed...
+ PYTHON_INCLUDE=`python -c 'from distutils.sysconfig import get_python_inc; print get_python_inc()'`
AC_SUBST(PYTHON_PREFIX)
+ AC_SUBST(PYTHON_INCLUDE)
else
AC_MSG_RESULT(no)
|