Skip to content

Commit

Permalink
Update build requirements.
Browse files Browse the repository at this point in the history
Libtool is now required as of commit 38b7a52 (openvswitch: Use libtool
and allow building shared libs).

It seems that a build requirement for Python slipped in a while back, for
generating ovs-vswitchd.conf.db.5, and no one complained, so we might as
well make it official.  (That will let us simplify some bits of the build,
too, since they won't have to be conditional on Python anymore, so I'm all
in favor of this change.)

Signed-off-by: Ben Pfaff <[email protected]>
  • Loading branch information
blp committed Jan 10, 2014
1 parent 32015a3 commit deb6447
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ you will need the following software:
libssl is installed, then Open vSwitch will automatically build
with support for it.

- Python 2.x, for x >= 4.

To compile the kernel module on Linux, you must also install the
following. If you cannot build or install the kernel module, you may
use the userspace-only implementation, at a cost in performance. The
Expand Down Expand Up @@ -82,7 +84,7 @@ or the database schema, you will also need the following software:

- Automake version 1.10 or later.

- Python 2.x, for x >= 4.
- libtool version 2.4 or later. (Older versions might work too.)

If you modify the ovsdbmonitor tool, then you will also need the
following:
Expand Down
5 changes: 3 additions & 2 deletions INSTALL.RHEL
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ RHEL. On RHEL 5, the default RPM source directory is

2. Install build prerequisites:

yum install gcc make python-devel openssl-devel kernel-devel, graphviz \
kernel-debug-devel autoconf automake rpm-build redhat-rpm-config
yum install gcc make python-devel openssl-devel kernel-devel graphviz \
kernel-debug-devel autoconf automake rpm-build redhat-rpm-config \
libtool

3. Some versions of the RHEL 6 kernel-devel package contain a broken
"build" symlink. If you are using such a version, you must fix
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Build-Depends:
debhelper (>= 8), autoconf (>= 2.64), automake (>= 1.10) | automake1.10,
libssl-dev, bzip2, openssl, graphviz,
python-all (>= 2.6.6-3~), procps, python-qt4,
python-zopeinterface, python-twisted-conch
python-zopeinterface, python-twisted-conch, libtool
Standards-Version: 3.9.3
Homepage: http://openvswitch.org/

Expand Down

0 comments on commit deb6447

Please sign in to comment.