rename package lottier-player to rlottie

This commit is contained in:
Hermet Park 2019-01-23 15:47:29 +09:00
parent 073e6874b5
commit 4fb1e659bc
5 changed files with 6 additions and 6 deletions

View File

@ -70,10 +70,10 @@ evas_vg_loader_[]$1[]_libs=""
AC_CHECK_HEADER([lottieanimation_capi.h], [have_dep="yes"])
if test "x${have_dep}" = "xyes" ; then
AC_CHECK_LIB([lottie-player],
AC_CHECK_LIB([rlottie],
[lottie_animation_from_file],
[
evas_vg_loader_[]$1[]_libs="-llottie-player"
evas_vg_loader_[]$1[]_libs="-lrlottie"
]
)
fi

View File

@ -29,7 +29,7 @@ evas_static_list = []
png = dependency('libpng')
tiff = dependency('libtiff-4')
giflib = cc.find_library('gif')
json = dependency('lottie-player', required: get_option('evas-loaders-disabler').contains('json') == false)
json = dependency('rlottie', required: get_option('evas-loaders-disabler').contains('json') == false)
webp = dependency('libwebp', required: get_option('evas-loaders-disabler').contains('webp') == false)
subdir('image_loaders')

View File

@ -1,4 +1,4 @@
#include <lottieanimation_capi.h>
#include <rlottie_capi.h>
#include "vg_common.h"
#ifdef ERR

View File

@ -5,7 +5,7 @@ vg_common_src = files([
'vg_common.h',
])
json = dependency('lottie-player', required: get_option('evas-loaders-disabler').contains('json') == false)
json = dependency('rlottie', required: get_option('evas-loaders-disabler').contains('json') == false)
if (json.found())
config_h.set('BUILD_VG_LOADER_JSON', '1')

View File

@ -7,7 +7,7 @@
#ifdef BUILD_VG_LOADER_JSON
#include <lottieanimation_capi.h>
#include <rlottie_capi.h>
static char*
_get_key_val(void *key)