Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Williams <bmwill@google.com>2017-06-14 21:07:36 +0300
committerJunio C Hamano <gitster@pobox.com>2017-06-15 22:56:22 +0300
commitb2141fc1d20e659810245ec6ca1c143c60e033ec (patch)
tree12230b8b41fc2786e74a95809a5c3c2256266ceb /archive-zip.c
parentf1c985da05c136414c10f034cdc09bdb6939cb8f (diff)
config: don't include config.h by default
Stop including config.h by default in cache.h. Instead only include config.h in those files which require use of the config system. Signed-off-by: Brandon Williams <bmwill@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'archive-zip.c')
-rw-r--r--archive-zip.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/archive-zip.c b/archive-zip.c
index b429a8d974..04fcd86872 100644
--- a/archive-zip.c
+++ b/archive-zip.c
@@ -2,6 +2,7 @@
* Copyright (c) 2006 Rene Scharfe
*/
#include "cache.h"
+#include "config.h"
#include "archive.h"
#include "streaming.h"
#include "utf8.h"