29 lines
805 B
Diff
29 lines
805 B
Diff
From ab99b7c51f18eb5e11b4350024f05f9c5b3795e6 Mon Sep 17 00:00:00 2001
|
|
From: Jaroslav Mracek <jmracek@redhat.com>
|
|
Date: Tue, 2 Jul 2019 18:32:38 +0200
|
|
Subject: [PATCH] Define LRO_SUPPORTS_CACHEDIR only with zchunk (RhBug:1726141,1719830)
|
|
|
|
---
|
|
librepo/handle.h | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/librepo/handle.h b/librepo/handle.h
|
|
index 48fdac6..96ac027 100644
|
|
--- a/librepo/handle.h
|
|
+++ b/librepo/handle.h
|
|
@@ -37,9 +37,11 @@ G_BEGIN_DECLS
|
|
*/
|
|
typedef struct _LrHandle LrHandle;
|
|
|
|
+#ifdef WITH_ZCHUNK
|
|
/** Define LRO_SUPPORTS_CACHEDIR so clients can check for this feature at build
|
|
* time */
|
|
#define LRO_SUPPORTS_CACHEDIR
|
|
+#endif /* WITH_ZCHUNK */
|
|
|
|
/** LRO_FASTESTMIRRORMAXAGE default value */
|
|
#define LRO_FASTESTMIRRORMAXAGE_DEFAULT 2592000L // 30 days
|
|
--
|
|
libgit2 0.27.8
|
|
|