Skip to content
Snippets Groups Projects
Commit 9a06b475 authored by Mikael Brandström's avatar Mikael Brandström
Browse files

* Added instructions for getting pike from cvs.

* Added README-CVS.txt to the dists.

Rev: README-CVS.txt:1.14
Rev: bin/export.pike:1.45
parent c338fc75
No related branches found
No related tags found
No related merge requests found
$Id: README-CVS.txt,v 1.13 2002/04/06 20:49:08 mikael%unix.pp.se Exp $
$Id: README-CVS.txt,v 1.14 2002/04/08 17:02:43 mikael%unix.pp.se Exp $
HOW TO BUILD PIKE FROM CVS
The top-level makefile (in this directory, not the src directory) has
all the magic you need to build pike directly from CVS. Just type
'make'.
If you like to live at the bleeding edge you can download pike from CVS
whith all the latest additions from the developers. There are two
major branches in the archive, the latest stable branch and latest
development branch. Stable versions have an even minor version number,
ie. 7.0.x, 7.2.x, 7.4.x wheras the development branches have an odd
minor version.
Keep in mind that the cvs versions are under heavy development and
have not been tested nearly as well as the offcial releases. You use
the code at YOUR OWN RISK.
There are a few simple steps to get pike from cvs:
1. Get a recent version of cvs.
2. Login to the cvs-server:
cvs -d :pserver:anon@cvs.roxen.com:/cvs login
just hit enter on the password prompt
3. Check out the source:
Building Pike from cvs, in addition to the requirements for a normal
cvs -z3 -d :pserver:anon@cvs.roxen.com:/cvs co Pike/7.3
subistute 7.3 for whatever version you want to get.
Building Pike from cvs, in addition to the requirements of a normal
build, requires a working Pike. You will also need automake, gnu m4
and bison.
The top-level makefile (in this directory, not the src directory) has
all the magic you need to build pike directly from CVS. Just type
'make'. It is preferable to build from the toplevel since it avoids
contaminating the source tree with object files and other generated
files.
Other interesting make targets are:
install compile and install in default location
......
#! /usr/bin/env pike
/* $Id: export.pike,v 1.44 2002/04/07 15:19:02 nilsson Exp $ */
/* $Id: export.pike,v 1.45 2002/04/08 17:02:43 mikael%unix.pp.se Exp $ */
multiset except_modules = (<>);
string vpath;
......@@ -196,7 +196,7 @@ int main(int argc, array(string) argv)
files=`+( ({ vpath+"/README.txt", vpath+"/ANNOUNCE",
vpath+"/COPYING", vpath+"/COPYRIGHT",
vpath+"/Makefile" }),
vpath+"/Makefile", vpath+"/README-CVS.txt" }),
get_files(vpath+"/src"),
get_files(vpath+"/lib"),
get_files(vpath+"/bin"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment