Skip to content

Instantly share code, notes, and snippets.

@arobb
Last active August 14, 2016 22:50
Show Gist options
  • Save arobb/daf86e53e0e60439972e1e894ede5701 to your computer and use it in GitHub Desktop.
Save arobb/daf86e53e0e60439972e1e894ede5701 to your computer and use it in GitHub Desktop.
# ip utility (OS X)
git clone git@github.com: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)
git@github.com: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