From b974e4bf4d6b589dbd7fb6ad5458ee250e64a686 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Thu, 20 May 2010 10:00:03 -0700 Subject: [PATCH] Fix error message to reference the new libuuid package. It used to be the case that libuuid was part of e2fsprogs. However, since other projects unrelated to e2fsprogs make use of that library it was getting aukward to have that dependency. The package was split from e2fsprogs and moved to its own devel package in the util-linux-ng project. Anyway, I'm just updating the error message to reflect the new upstream reality. --- config/user-libuuid.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/user-libuuid.m4 b/config/user-libuuid.m4 index 0a669b7d6a..aba375a228 100644 --- a/config/user-libuuid.m4 +++ b/config/user-libuuid.m4 @@ -5,13 +5,13 @@ AC_DEFUN([ZFS_AC_CONFIG_USER_LIBUUID], [ LIBUUID= AC_CHECK_HEADER([uuid/uuid.h], [], [AC_MSG_FAILURE([ - *** uuid/uuid.h missing, e2fsprogs-devel package required])]) + *** uuid/uuid.h missing, libuuid-devel package required])]) AC_CHECK_LIB([uuid], [uuid_generate], [], [AC_MSG_FAILURE([ - *** uuid_generate() missing, e2fsprogs-devel package required])]) + *** uuid_generate() missing, libuuid-devel package required])]) AC_CHECK_LIB([uuid], [uuid_is_null], [], [AC_MSG_FAILURE([ - *** uuid_is_null() missing, e2fsprogs-devel package required])]) + *** uuid_is_null() missing, libuuid-devel package required])]) AC_SUBST([LIBUUID], ["-luuid"]) AC_DEFINE([HAVE_LIBUUID], 1, [Define if you have libuuid])