Hi, I noticed that ./configure checks for the uuid dev package, yet there is no code afaics that uses libuuid.
I guess this check can safely be removed. I grepped through the git history. It seems Philip had used uuid.h in the past but this code was removed again. Trivial patch attached. Cheers, Michael -- Why is it that all of the instruments seeking intelligent life in the universe are pointed away from Earth?
From df48d687054b54b9ca4374ece1ffe4fda11114e1 Mon Sep 17 00:00:00 2001 From: Michael Biebl <[email protected]> Date: Fri, 15 Jan 2010 05:38:31 +0100 Subject: [PATCH] Remove check for uuid It seems to not be used anymore. --- configure.ac | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 41f7d1d..ba5109f 100644 --- a/configure.ac +++ b/configure.ac @@ -203,11 +203,6 @@ AC_SUBST(GCONF_LIBS) AM_CONDITIONAL(HAVE_GCONF, test "$have_gconf" = "yes") -# Check for libuuid -PKG_CHECK_MODULES(UUID, [uuid]) -AC_SUBST(UUID_CFLAGS) -AC_SUBST(UUID_LIBS) - # Check for enca, detects defect Russian or Cyrillic language specifics in mp3s PKG_CHECK_MODULES(ENCA, [enca >= 1.9], have_enca=yes, have_enca=no) AC_SUBST(ENCA_CFLAGS) -- 1.6.6
_______________________________________________ tracker-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/tracker-list
