From 7af5ae01080998ffae78e92b4bd14a621367e350 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Mon, 30 Dec 2019 18:46:53 +0100 Subject: [PATCH] add macOS to OS_COMPILED --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 23d3fea5e..ddeef170d 100644 --- a/configure.ac +++ b/configure.ac @@ -317,8 +317,11 @@ case $host_os in *linux* ) AC_DEFINE([OS_COMPILED], [6], [Linux]) ;; + *darwin* ) + AC_DEFINE([OS_COMPILED], [7], [macOS]) + ;; * ) - AC_DEFINE([OS_COMPILED], [7], [Other Operating System]) + AC_DEFINE([OS_COMPILED], [8], [Other Operating System]) ;; esac