From: aBainbridge11 <113794078+aBainbridge11@users.noreply.github.com> Date: Fri, 19 Jul 2024 17:31:49 +0000 (-0400) Subject: Create Building on macOS X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abe3f393db1294efe9f38d47cc7ef90868419cc1;p=thirdparty%2Ffreeradius-server.git Create Building on macOS --- diff --git a/doc/antora/modules/installation/pages/osx.adoc b/doc/antora/modules/installation/pages/osx.adoc new file mode 100644 index 00000000000..ea0af445c08 --- /dev/null +++ b/doc/antora/modules/installation/pages/osx.adoc @@ -0,0 +1,22 @@ +# Building on macOS + +## Hard dependencies + +If you don't have homebrew package manager installed, [do it now](http://brew.sh)... it'll make your life on macOS far simpler. + +```bash +brew install talloc +``` + +## Getting the source + +include:Getting-the-Source + +## Building from source + +```bash +# Use ./configure --enable-developer if you're debugging issues, or using unstable code. +./configure +make +sudo make install +```