From ebe22ca61f76a45d9917913694aa118b3d36e1a5 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Tue, 24 May 2016 15:46:45 -0400 Subject: [PATCH] Fix The name of the pc file for Ecore_Win32 Summary: With the current detection, ecore_win32.pc was used. Fix this to use ecore-win32.pc Test Plan: compilation Reviewers: cedric, jpeg, zmike Differential Revision: https://phab.enlightenment.org/D3980 --- m4/efl.m4 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/m4/efl.m4 b/m4/efl.m4 index 990f629f46..c9e15f3537 100644 --- a/m4/efl.m4 +++ b/m4/efl.m4 @@ -171,6 +171,9 @@ case "m4_defn([DOWNOTHER])" in ecore_cocoa) depname="ecore-cocoa" ;; + ecore_win32) + depname="ecore-win32" + ;; esac requirements_pc_[]m4_defn([DOWNEFL])="${depname} >= ${PACKAGE_VERSION} ${requirements_pc_[][]m4_defn([DOWNEFL])}" requirements_cflags_[]m4_defn([DOWNEFL])="-I\$(top_srcdir)/src/lib/${libdirname} -I\$(top_builddir)/src/lib/${libdirname} ${requirements_cflags_[][]m4_defn([DOWNEFL])}"