Skip to content

Instantly share code, notes, and snippets.

@briandowns
Created October 10, 2018 04:10
Show Gist options
  • Save briandowns/47f21d6b93435243f327e93c215c97ca to your computer and use it in GitHub Desktop.
Save briandowns/47f21d6b93435243f327e93c215c97ca to your computer and use it in GitHub Desktop.

Ulfius Installation for MacOS

Dependencies

brew install libmicrohttpd jansson gnutls 

cmake

Make sure cmake is installed if if it's not, install it.

brew install cmake

Build

Clone the repository and setup the build env

git clone [email protected]:babelouest/ulfius.git
cd ulfius
mkdir build
cd build

Next we need to run cmake. We need to turn off journald and RPM.

cmake -DWITH_JOURNALD=off -DWITH_RPM=off ..

Now we "make" and install

make && sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment