Skip to content

Commit

Permalink
updated the Installation section to state that the last drizzle7 rele…
Browse files Browse the repository at this point in the history
…ase that supports building libdrizzle-1.0 separately is drizzle7-2011.07.21.
  • Loading branch information
agentzh committed Nov 28, 2011
1 parent 46b744a commit 7e5bc4a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 16 deletions.
19 changes: 13 additions & 6 deletions README
Expand Up @@ -529,15 +529,22 @@ Installation

* You should first install libdrizzle 1.0 which is now distributed
with the drizzle project and can be obtained from
https://launchpad.net/drizzle (<https://launchpad.net/drizzle>).
Installation of libdrizzle 1.0 is usually as simple as

tar xzvf drizzle7-VERSION.tar.gz
cd drizzle7-VERSION/
https://launchpad.net/drizzle (<https://launchpad.net/drizzle>). The
latest drizzle7 release does not support building libdrizzle 1.0
separately and requires a lot of external dependencies like Boost
and Protobuf which are painful to install. The last version
supporting building libdrizzle 1.0 separately is 2011.07.21. You can
download it from
http://agentzh.org/misc/nginx/drizzle7-2011.07.21.tar.gz . Which
this version of drizzle7, installation of libdrizzle 1.0 is usually
as simple as

tar xzvf drizzle7-2011.07.21.tar.gz
cd drizzle7-2011.07.21/
./configure --without-server
make libdrizzle-1.0
make install-libdrizzle-1.0
where C<VERSION> should be replaced by real version numbers like C<2011.07.21>.Ensure that you have the C<python> command point to a C<python2> interpreter. It's known that on recent : Arch Linux distribution, C<python> is linked to C<python3> by default, and while running C<make libdrizzle-1.0> will yield the error File "config/pandora-plugin", line 185
Ensure that you have the C<python> command point to a C<python2> interpreter. It's known that on recent : Arch Linux distribution, C<python> is linked to C<python3> by default, and while running C<make libdrizzle-1.0> will yield the error File "config/pandora-plugin", line 185
print "Dependency loop detected with %s" % plugin['name']
^
SyntaxError: invalid syntax
Expand Down
8 changes: 3 additions & 5 deletions README.markdown
Expand Up @@ -551,16 +551,14 @@ The installation steps are usually as simple as `./configure --with-http_drizzle

Alternatively, you can compile this module with Nginx core's source by hand:

* You should first install libdrizzle 1.0 which is now distributed with the drizzle project and can be obtained from [<https://launchpad.net/drizzle]>(https://launchpad.net/drizzle).
Installation of libdrizzle 1.0 is usually as simple as
* You should first install libdrizzle 1.0 which is now distributed with the drizzle project and can be obtained from [<https://launchpad.net/drizzle]>(https://launchpad.net/drizzle). The latest drizzle7 release does not support building libdrizzle 1.0 separately and requires a lot of external dependencies like Boost and Protobuf which are painful to install. The last version supporting building libdrizzle 1.0 separately is `2011.07.21`. You can download it from <http://agentzh.org/misc/nginx/drizzle7-2011.07.21.tar.gz> . Which this version of drizzle7, installation of libdrizzle 1.0 is usually as simple as

tar xzvf drizzle7-VERSION.tar.gz
cd drizzle7-VERSION/
tar xzvf drizzle7-2011.07.21.tar.gz
cd drizzle7-2011.07.21/
./configure --without-server
make libdrizzle-1.0
make install-libdrizzle-1.0

where `VERSION` should be replaced by real version numbers like `2011.07.21`.
Ensure that you have the `python` command point to a `python2` interpreter. It's known that on recent : Arch Linux distribution, `python` is linked to `python3` by default, and while running `make libdrizzle-1.0` will yield the error

File "config/pandora-plugin", line 185
Expand Down
8 changes: 3 additions & 5 deletions doc/HttpDrizzleModule.wiki
Expand Up @@ -518,16 +518,14 @@ The installation steps are usually as simple as <code>./configure --with-http_dr
Alternatively, you can compile this module with Nginx core's source by hand:
* You should first install libdrizzle 1.0 which is now distributed with the drizzle project and can be obtained from [https://launchpad.net/drizzle https://launchpad.net/drizzle].
: Installation of libdrizzle 1.0 is usually as simple as
* You should first install libdrizzle 1.0 which is now distributed with the drizzle project and can be obtained from [https://launchpad.net/drizzle https://launchpad.net/drizzle]. The latest drizzle7 release does not support building libdrizzle 1.0 separately and requires a lot of external dependencies like Boost and Protobuf which are painful to install. The last version supporting building libdrizzle 1.0 separately is <code>2011.07.21</code>. You can download it from http://agentzh.org/misc/nginx/drizzle7-2011.07.21.tar.gz . Which this version of drizzle7, installation of libdrizzle 1.0 is usually as simple as
<geshi lang="nginx">
tar xzvf drizzle7-VERSION.tar.gz
cd drizzle7-VERSION/
tar xzvf drizzle7-2011.07.21.tar.gz
cd drizzle7-2011.07.21/
./configure --without-server
make libdrizzle-1.0
make install-libdrizzle-1.0
</geshi>
: where <code>VERSION</code> should be replaced by real version numbers like <code>2011.07.21</code>.
: Ensure that you have the <code>python</code> command point to a <code>python2</code> interpreter. It's known that on recent : Arch Linux distribution, <code>python</code> is linked to <code>python3</code> by default, and while running <code>make libdrizzle-1.0</code> will yield the error
<geshi lang="bash">
File "config/pandora-plugin", line 185
Expand Down

0 comments on commit 7e5bc4a

Please sign in to comment.