X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=doc%2Fsource%2Fbuildsource.sgml;h=8e4ee791fb96904b324a9d1649c55b90b90cb297;hb=86c44446839fd2f9c1b0a28c2bac147ab51fb2a5;hp=d180c027a0309d0cac4c2f6d8e78e47dcf8495b7;hpb=8023259b48217910c1dd8038ffc16a57f9a10f37;p=privoxy.git diff --git a/doc/source/buildsource.sgml b/doc/source/buildsource.sgml index d180c027..8e4ee791 100644 --- a/doc/source/buildsource.sgml +++ b/doc/source/buildsource.sgml @@ -3,15 +3,10 @@ Purpose : Entity included in other project documents. - $Id: buildsource.sgml,v 1.1 2002/04/04 06:48:37 hal9 Exp $ - - Written by and Copyright (C) 2001 the SourceForge - Privoxy team. http://www.privoxy.org/ - - Based on the Internet Junkbuster originally written - by and Copyright (C) 1997 Anonymous Coders and - Junkbusters Corporation. http://www.junkbusters.com + $Id: buildsource.sgml,v 1.8 2002/05/03 17:41:41 oes Exp $ + Copyright (C) 2001, 2002 Privoxy Developers + See LICENSE. ====================================================================== This file used for inclusion with other documents only. @@ -28,27 +23,32 @@ --> - There are several ways to install Privoxy. + To build Privoxy from source, + autoconf, + GNU make + (gmake), and, of course, a C compiler like gcc are required. - To build Privoxy from source, - autoconf and GNU make (gmake) are required. Source is available as gzipped - tar archives. For this, first unpack the source: + When building from a source tarball (either release version or + nightly CVS + tarball), first unpack the source: tar xzvf privoxy-&p-version;-src* [.tgz or .tar.gz] cd privoxy-&p-version; - + - - For retrieving the current CVS sources, you'll need the CVS - package installed first. Note CVS source is development quality, - and may not be stable, or well tested. To download CVS source: + For retrieving the current CVS sources, you'll need CVS installed. + Note that sources from CVS are development quality, and may not be + stable, or well tested. To download CVS source: @@ -56,7 +56,7 @@ cvs -d:pserver:anonymous@cvs.ijbswa.sourceforge.net:/cvsroot/ijbswa login cvs -z3 -d:pserver:anonymous@cvs.ijbswa.sourceforge.net:/cvsroot/ijbswa co current cd current - + @@ -72,24 +72,37 @@ autoheader autoconf - ./configure (--help to see options) - make (the make from gnu, gmake for *BSD) + ./configure # (--help to see options) + make # (the make from gnu, gmake for *BSD) su - make -n install (to see where all the files will go) - make install (to really install) - + make -n install # (to see where all the files will go) + make install # (to really install) + + + + + If you have gnu make, you can have the first four steps + automatically done for you by just typing: + + + + + make + + + + + in the freshly downloaded or unpacked source directory. - Redhat and SuSE src and binary RPMs can be built with - make redhat-dist or - make suse-dist from unpacked sources. You - will need to run autoconf; autoheader; - ./configure beforehand. *BSD will require gmake (from - http://www.gnu.org). - + For more detailed instructions on how to build Redhat and SuSE RPMs, + Windows self-extracting installers, building on platforms with + special requirements etc, please consult the developer manual. + For binary RPM installation, and other platforms, see the user-manual