From: Yin Kangkai Date: Fri, 24 Aug 2012 08:52:58 +0000 (+0800) Subject: journal: add HAVE_XZ check to avoid build failure X-Git-Tag: v190~192 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=70f09301d5d47577cfa4fe70c7b3cba336529cdf;hp=32f0eca017b0fb64cc6c04c62744e03f130d8a22;p=elogind.git journal: add HAVE_XZ check to avoid build failure Without this, build fail with --disable-xz or xz not installed. --- diff --git a/src/journal/journal-verify.c b/src/journal/journal-verify.c index 24012931d..5d134bdb9 100644 --- a/src/journal/journal-verify.c +++ b/src/journal/journal-verify.c @@ -63,6 +63,7 @@ static int journal_file_object_verify(JournalFile *f, Object *o) { h1 = le64toh(o->data.hash); if (o->object.flags & OBJECT_COMPRESSED) { +#ifdef HAVE_XZ void *b = NULL; uint64_t alloc = 0, b_size; @@ -73,6 +74,9 @@ static int journal_file_object_verify(JournalFile *f, Object *o) { h2 = hash64(b, b_size); free(b); +#else + return -EPROTONOSUPPORT; +#endif } else h2 = hash64(o->data.payload, le64toh(o->object.size) - offsetof(Object, data.payload));