ecore_sdl: fix detection of sdl with meson build
authorVincent Torri <vincent.torri@gmail.com>
Thu, 18 Apr 2019 13:29:31 +0000 (09:29 -0400)
committerYeongjong Lee <yj34.lee@samsung.com>
Wed, 24 Apr 2019 05:24:47 +0000 (14:24 +0900)
Summary: SDL 2.* pkconfig file is sdl2, not sdl

Test Plan: meson configuration

Reviewers: zmike, raster

Reviewed By: zmike

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8647

src/lib/ecore_sdl/meson.build

index 01ef398..b468581 100644 (file)
@@ -10,7 +10,7 @@ ecore_sdl_header_src = [
   'Ecore_Sdl_Keys.h'
 ]
 
-ecore_sdl_deps += dependency('sdl')
+ecore_sdl_deps += dependency('sdl2')
 
 ecore_sdl_lib = library('ecore_sdl',
     ecore_sdl_src,