add macOS to OS_COMPILED

This commit is contained in:
Holger Vogt 2019-12-30 18:46:53 +01:00
parent f07d5ef5dc
commit 7af5ae0108
1 changed files with 4 additions and 1 deletions

View File

@ -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