From: Sangyoon Jang Date: Mon, 17 Aug 2015 10:13:48 +0000 (+0900) Subject: Add dependency to sqlite3 X-Git-Tag: accepted/tizen/mobile/20150817.134150^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3351d7b8afc925e131cb848567529045692b71b6;p=platform%2Fcore%2Fconnectivity%2Fbluetooth-share.git Add dependency to sqlite3 including sqlite3.h is required instead of db-util.h at bluetooth-share-api.h bluetooth-share-api exports sqlite3(in past, db-util.h) in its header but it doesn't have dependency to sqlite3 [ 229s] /home/abuild/rpmbuild/BUILD/bluetooth-share-0.0.47/lib/bluetooth-share-api.h:27:21: fatal error: db-util.h: No such file or directory Change-Id: I7650a7c9e2d2e04ad61204dc26642889401c950f Signed-off-by: Sangyoon Jang --- diff --git a/lib/bluetooth-share-api.h b/lib/bluetooth-share-api.h index a71ebba..1e2390c 100644 --- a/lib/bluetooth-share-api.h +++ b/lib/bluetooth-share-api.h @@ -24,7 +24,7 @@ extern "C" { #endif -#include +#include #ifndef EXPORT_API #define EXPORT_API __attribute__((visibility("default"))) diff --git a/lib/bluetooth-share-api.pc.in b/lib/bluetooth-share-api.pc.in index 52917a6..a24dee2 100644 --- a/lib/bluetooth-share-api.pc.in +++ b/lib/bluetooth-share-api.pc.in @@ -7,6 +7,6 @@ Name: bluetooth-share-api Description: SAMSUNG Linux platform Bluetooth share API Version: @VERSION@ Requires.private: dlog vconf -Requires: dbus-glib-1 +Requires: dbus-glib-1 sqlite3 Libs: -L${libdir} -lbluetooth-share-api Cflags: -I${includedir} -I${includedir}/bluetooth-share-api