From 8026fa9bc7525c4cef02c17099e2db79284078f8 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 17 Sep 2014 10:56:46 +0200 Subject: build-sys: use -lutil for BSD only Signed-off-by: Karel Zak --- configure.ac | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 5b558ec11..387372fd9 100644 --- a/configure.ac +++ b/configure.ac @@ -136,9 +136,17 @@ PKG_PROG_PKG_CONFIG GTK_DOC_CHECK([1.10]) AC_PATH_PROG([XSLTPROC], [xsltproc]) + linux_os=no -AS_CASE([${host_os}], [*linux*], [linux_os=yes]) +bsd_os=no +AS_CASE([${host_os}], + [*linux*], + [linux_os=yes], + [*bsd*], + [bsd_os=yes]) AM_CONDITIONAL([LINUX], [test "x$linux_os" = xyes]) +AM_CONDITIONAL([BSD], [test "x$bsd_os" = xyes]) + dnl define ARCH_ conditionals UL_SET_ARCH([I86], [i?86-*]) -- cgit v1.2.3-55-g7522