Skip to content
Snippets Groups Projects
Commit 2a1f2d59 authored by Brandon Heller's avatar Brandon Heller
Browse files

Merge pull request #175 from daviderickson/extensibility

Extensibility Improvements
parents c188bee3 3e70b01e
No related branches found
No related tags found
No related merge requests found
......@@ -185,7 +185,12 @@ function of13 {
unzip libpcre3-dev flex bison libboost-dev
if [ ! -d "ofsoftswitch13" ]; then
git clone https://github.com/CPqD/ofsoftswitch13.git
git clone https://github.com/CPqD/ofsoftswitch13.git
if [[ -n "$OF13_SWITCH_REV" ]]; then
cd ofsoftswitch13
git checkout ${OF13_SWITCH_REV}
cd ..
fi
fi
# Install netbee
......@@ -221,7 +226,11 @@ function wireshark {
sudo apt-get install -y libwiretap-dev libwireshark-dev
cd $BUILD_DIR
hg clone https://bitbucket.org/barnstorm/of-dissector
cd of-dissector/src
cd of-dissector
if [[ -n "$WS_DISSECTOR_REV" ]]; then
hg checkout ${WS_DISSECTOR_REV}
fi
cd src
export WIRESHARK=/usr/include/wireshark
scons
# libwireshark0/ on 11.04; libwireshark1/ on later
......
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