1 From 8589b44c573d4228a9df3ba7bffdfdf584e7b033 Mon Sep 17 00:00:00 2001
2 From: Peter Korsgaard <peter@korsgaard.com>
3 Date: Mon, 9 Jan 2017 21:38:29 +0100
4 Subject: [PATCH] configure.ac: relax linux OS detection
6 Not all linux hosts match the *-pc-linux-gnu wildcard, causing build
7 failures for older glibc versions where we need to link with -lrt for
10 - arm-unknown-linux-musleabihf
11 - powerpc-unknown-linux-gnuspe
12 - bfin-linux-linux-uclibc
15 Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
18 1 file changed, 1 insertion(+), 1 deletion(-)
20 diff --git a/configure.ac b/configure.ac
21 index 070ab357..235d2717 100644
24 @@ -186,7 +186,7 @@ esac
25 AM_CONDITIONAL(OS_IS_WINDOWS, test "x$os_is_windows" = xyes)
31 AC_DEFINE(FLAC__SYS_LINUX)
32 AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])