BUG-Tizen=TC-2399
Linked to this change : https://review.tizen.org/gerrit/#/c/34380/
Change-Id: Ifee7f850bdec2d6d55c8b513bc888c99c1e523cc
Signed-off-by: Baptiste DURAND <baptiste.durand@open.eurogiciel.org>
BuildRequires: libsmack
BuildRequires: fdupes
+## Work around for https://bugs.tizen.org/jira/browse/TC-2399
+BuildRequires: ail-vconf-devel
+
%description
Packager Manager client library package for packaging
#include <unistd.h>
#include <sys/types.h>
#include <vconf.h>
+//Work around for https://bugs.tizen.org/jira/browse/TC-2399
+#include <ail_vconf.h>
#include <pkgmgr_parser.h>
#include <pkgmgr-info.h>
#include "package-manager.h"
gettimeofday(&tv, NULL);
starttime = tv.tv_sec * 1000l + tv.tv_usec / 1000l;
- locale = vconf_get_str(VCONFKEY_LANGSET);
+ locale = ail_vconf_get_str(VCONFKEY_LANGSET);
+ //Work around for https://bugs.tizen.org/jira/browse/TC-2399
if (locale == NULL) {
printf("locale is NULL\n");
ret = -1;