You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by jg...@apache.org on 2005/10/22 17:55:55 UTC

svn commit: r327671 - in /httpd/mod_python/trunk: configure configure.in

Author: jgallacher
Date: Sat Oct 22 08:55:52 2005
New Revision: 327671

URL: http://svn.apache.org/viewcvs?rev=327671&view=rev
Log:
Changed a couple of descriptions displayed by ./configure --help. ie.
--with-python=PATH      Path to specific Python binary
--with-python-src=DIR   Path to python sources - required if you want to 
generate the documenation

Modified:
    httpd/mod_python/trunk/configure
    httpd/mod_python/trunk/configure.in

Modified: httpd/mod_python/trunk/configure
URL: http://svn.apache.org/viewcvs/httpd/mod_python/trunk/configure?rev=327671&r1=327670&r2=327671&view=diff
==============================================================================
--- httpd/mod_python/trunk/configure (original)
+++ httpd/mod_python/trunk/configure Sat Oct 22 08:55:52 2005
@@ -801,8 +801,8 @@
   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
 --with-apxs=PATH 	Path to apxs
 --with-apache=DIR 	Path to Apache sources
---with-python=DIR	Path to specific Python binary
---with-python-src=PATH	Path to python src - required to generate documenation
+--with-python=PATH	Path to specific Python binary
+--with-python-src=DIR	Path to python sources - required if you want to generate the documenation
 --with-max-locks=INTEGER	Maximum number of locks
 --with-flex=PATH	Path to specific flex binary.
 	Flex Version 2.5.31 or greater is required to regenerate psp_parser.c

Modified: httpd/mod_python/trunk/configure.in
URL: http://svn.apache.org/viewcvs/httpd/mod_python/trunk/configure.in?rev=327671&r1=327670&r2=327671&view=diff
==============================================================================
--- httpd/mod_python/trunk/configure.in (original)
+++ httpd/mod_python/trunk/configure.in Sat Oct 22 08:55:52 2005
@@ -182,7 +182,7 @@
 
 AC_SUBST(PYTHON_BIN)
 AC_MSG_CHECKING(for --with-python)
-AC_ARG_WITH(python, [--with-python=DIR	Path to specific Python binary],
+AC_ARG_WITH(python, [--with-python=PATH	Path to specific Python binary],
 [
   PYTHON_BIN="$withval"
   AC_MSG_RESULT($PYTHON_BIN)
@@ -292,7 +292,7 @@
 # It is not required to compile or install mod_python itself
 AC_SUBST(PYTHON_SRC)
 AC_MSG_CHECKING(for --with-python-src)
-AC_ARG_WITH(python-src, [--with-python-src=PATH	Path to python src - required to generate documenation],
+AC_ARG_WITH(python-src, [--with-python-src=DIR	Path to python sources - required if you want to generate the documenation],
 [
   PYTHON_SRC="$withval"
   AC_MSG_RESULT($PYTHON_SRC)