[Zope-Checkins] CVS: Zope - configure:1.3
Chris McDonough
chrism@zope.com
Fri, 21 Mar 2003 16:35:34 -0500
Update of /cvs-repository/Zope
In directory cvs.zope.org:/tmp/cvs-serv23313
Modified Files:
configure
Log Message:
Allow for Zope's 'configure' to be run from outside the source directory.
When this is done, the makefile and all temp build files are written to
the directory from which you run configure. This is to support
Tres' desire to be able to install Zope from read-only media.
Perform minor cleanups, extensions, and refactorings of setup.py and
configure.py along the way.
=== Zope/configure 1.2 => 1.3 ===
--- Zope/configure:1.2 Tue Mar 18 16:27:49 2003
+++ Zope/configure Fri Mar 21 16:35:03 2003
@@ -8,6 +8,9 @@
# BEGIN EDITABLE PARAMETERS #
#####################################################################
+# Place the Zope major version number below.
+ZOPE_VERS=2.7
+
# Place the optimal target version number for Zope (as returned by sys.version)
# below
TARGET="2.2.2"
@@ -33,7 +36,7 @@
{
echo
echo "configure [--help] [--with-python=path] [--prefix=path] "
- echo " [--ignore-largefile]"
+ echo " [--build-base=path] [--ignore-largefile] [--ignore-zlib]"
echo
echo " Creates a Makefile suitable for building and installing Zope"
echo
@@ -41,11 +44,13 @@
echo " --help shows usage and quits"
echo " --with-python specify a path to a Python interpreter to use"
echo " --prefix specify an installation path for binary data"
+ echo " --build-base specify a temporary path for build files"
echo " --ignore-largefile ignore large file support warnings"
echo " --ignore-zlib ignore warnings about zlib"
+ echo " --quiet suppress nonessential output"
echo
echo " Given no options, configure will search your PATH for a suitable"
- echo " Python interpreter and will use '/usr/local/zope' as a prefix."
+ echo " Python interpreter and will use '/opt/Zope-$ZOPE_VERS' as a prefix."
echo
}