From 885023e2761cd818653e9eb7c4c9a733de979c8f Mon Sep 17 00:00:00 2001 From: Shuichi Ihara Date: Mon, 22 Jul 2013 18:42:54 +0900 Subject: [PATCH] LU-3612 e2scan: fix missing header for e2scan to enable sqlite sqlite function is always disabled due to missing config.h to e2scan. Signed-off-by: Shuichi Ihara Change-Id: Ie4b49bd6d04a6f1e25610df51d17b97d3dc4fe5f --- e2scan/db.c | 1 + e2scan/e2scan.c | 1 + 2 files changed, 2 insertions(+) diff --git a/e2scan/db.c b/e2scan/db.c index c9384ee..9715f9a 100644 --- a/e2scan/db.c +++ b/e2scan/db.c @@ -1,6 +1,7 @@ #define _GNU_SOURCE #define _FILE_OFFSET_BITS 64 +#include "config.h" #include #include #include diff --git a/e2scan/e2scan.c b/e2scan/e2scan.c index 58b1e30..2a9e7e3 100644 --- a/e2scan/e2scan.c +++ b/e2scan/e2scan.c @@ -3,6 +3,7 @@ #define _XOPEN_SOURCE /* for getdate */ #define _XOPEN_SOURCE_EXTENDED /* for getdate */ +#include "config.h" #include #include #include -- 1.8.3.1