Make this a warning not an error. libuuid and its associated dev packages are HIGHLY recommended.

This commit is contained in:
Ken Rice 2013-07-05 10:12:45 -05:00
parent 37a1f2c633
commit 9202f0398f
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ AC_DEFUN([CHECK_LIBUUID],
PKG_CHECK_MODULES([LIBUUID], [uuid],
[LIBUUID_FOUND=yes], [LIBUUID_FOUND=no])
if test "$LIBUUID_FOUND" = "no" ; then
AC_MSG_ERROR([libuuid development files required])
AC_MSG_WARN([libuuid development package highly recommended!])
else
LIBUUID_INCLUDEDIR=$(pkg-config --variable=includedir uuid)
LIBUUID_CFLAGS+=" -I$LIBUUID_INCLUDEDIR/uuid "