Last active
August 14, 2016 22:50
-
-
Save arobb/daf86e53e0e60439972e1e894ede5701 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ip utility (OS X) | |
git clone [email protected]:brona/iproute2mac.git | |
sudo cp iproute2mac/src/ip.py /usr/local/bin/ip | |
sudo chown root:wheel /usr/local/bin/ip | |
# LZO headers (OS X) | |
http://www.oberhumer.com/opensource/lzo/#download | |
~/Download/lzo-2.09/src | |
./configure | |
make | |
make install | |
# LZ4 (OS X) | |
[email protected]:Cyan4973/lz4.git | |
~/git/lz4/lib | |
make | |
make install | |
# Mac Dependencies (OSX 10.11.6) | |
port install autoconf automake pkgconfig libtool | |
# OpenVPN | |
autoreconf -i -v -f | |
./configure CFLAGS="-I/opt/local/include" LDFLAGS="-L/opt/local/lib" --enable-lzo \ | |
--enable-crypto \ | |
--enable-multi \ | |
--enable-fragment \ | |
--enable-iproute2 \ | |
--with-crypto-library=openssl | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment