1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00

Update: Set SYS for easier host os detection in configure

This commit is contained in:
Marvin Scholz 2018-07-11 12:10:57 +02:00
parent e55f42c528
commit fae2bccf96

View File

@ -32,6 +32,12 @@ dnl Set build/host to default values
AC_CANONICAL_HOST
AC_CANONICAL_BUILD
dnl Check for which host we are compiling
AS_CASE("${host_os}",
[linux*], [SYS="linux"],
[darwin*], [SYS="darwin"],
[SYS="${host_os}"]
)
AM_INIT_AUTOMAKE([tar-ustar foreign dist-zip])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])