582 | | In order to build the openflow modules, James needs autoconf which comes from the package |
583 | | {{{ |
584 | | autoconf.noarch 2.59-12 installed |
585 | | }}} |
| 582 | In order to build the openflow modules from the 0.8.9~2 [http://openflowswitch.org/downloads/openflow-0.8.9~2.tar.gz tarball], we need a bunch of tools not installed in the refrence CentOS system, this step is copied directly form [http://openflowswitch.org/wk/index.php?title=CentOS_Install CentOS instructions]: |
| 583 | {{{ |
| 584 | sudo yum install git automake pkgconfig libtool gcc |
| 585 | }}} |
| 586 | |
| 587 | Apparently you also need to compile automake from sources: |
| 588 | {{{ |
| 589 | wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.63.tar.gz |
| 590 | tar xvzf autoconf-2.63.tar.gz |
| 591 | cd autoconf-2.63 |
| 592 | ./configure --prefix=/usr |
| 593 | make |
| 594 | sudo make install |
| 595 | }}} |
| 596 | |
| 597 | |
| 598 | |