]> granicus.if.org Git - zfs/commitdiff
Fix error message to reference the new libuuid package.
authorBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 20 May 2010 17:00:03 +0000 (10:00 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 20 May 2010 17:00:03 +0000 (10:00 -0700)
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

index 0a669b7d6ac361f50a98eb0f9b99af1cf9019ca2..aba375a22820e7c2967438ca0904bbb31f1c1ec8 100644 (file)
@@ -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])