From 8720acd237f415983c5ca2acd4b5135415114758 Mon Sep 17 00:00:00 2001 From: jsdelfino Date: Sun, 28 Feb 2010 20:01:44 +0000 Subject: Strawman WSGI integration, allowing Python components to run in a Python WSGI server. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@917286 13f79535-47bb-0310-9956-ffa450edef68 --- sca-cpp/trunk/configure.ac | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sca-cpp/trunk/configure.ac') diff --git a/sca-cpp/trunk/configure.ac b/sca-cpp/trunk/configure.ac index 0aaec2814d..4e8cac1b8b 100644 --- a/sca-cpp/trunk/configure.ac +++ b/sca-cpp/trunk/configure.ac @@ -277,14 +277,17 @@ fi # Configure path to Python 2.6 includes and lib. AC_MSG_CHECKING([for python]) AC_ARG_WITH([python], [AC_HELP_STRING([--with-python=PATH], [path to installed Python 2.6 [default=/usr]])], [ + PYTHON_PREFIX="${withval}" PYTHON_INCLUDE="${withval}/include" PYTHON_LIB="${withval}/lib" AC_MSG_RESULT("${withval}") ], [ + PYTHON_PREFIX="/usr" PYTHON_INCLUDE="/usr/include" PYTHON_LIB="/usr/lib" AC_MSG_RESULT(/usr) ]) +AC_SUBST(PYTHON_PREFIX) AC_SUBST(PYTHON_INCLUDE) AC_SUBST(PYTHON_LIB) @@ -523,6 +526,7 @@ AC_CONFIG_FILES([Makefile modules/python/Makefile modules/java/Makefile modules/server/Makefile + modules/wsgi/Makefile components/Makefile components/cache/Makefile components/log/Makefile -- cgit v1.2.3