]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Create Building on macOS
authoraBainbridge11 <113794078+aBainbridge11@users.noreply.github.com>
Fri, 19 Jul 2024 17:31:49 +0000 (13:31 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 8 Aug 2024 21:36:52 +0000 (17:36 -0400)
doc/antora/modules/installation/pages/osx.adoc [new file with mode: 0644]

diff --git a/doc/antora/modules/installation/pages/osx.adoc b/doc/antora/modules/installation/pages/osx.adoc
new file mode 100644 (file)
index 0000000..ea0af44
--- /dev/null
@@ -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
+```