summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2016-08-26 16:04:02 -0500
committerDaniel Stone <daniels@collabora.com>2016-11-21 11:17:17 +0000
commit84776648a55558a59913fb0b0b4b76229fb89a8e (patch)
tree115b2ce445c65e01cdb962f48e381f7db0a9f0e3
parent8d335bf264ee388034d9ac505daef0ea72d9f214 (diff)
buildsystem: adjust uninstalled -client/server pkg-config infra
Add missing protocol dir to uninstalled include path. Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> Reviewed-by: Derek Foreman <derekf@osg.samsung.com> Signed-off-by: Derek Foreman <derekf@osg.samsung.com> Acked-by: Bryce Harrington <bryce@osg.samsung.com> Signed-off-by: Daniel Stone <daniels@collabora.com>
-rw-r--r--src/wayland-client-uninstalled.pc.in3
-rw-r--r--src/wayland-server-uninstalled.pc.in3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/wayland-client-uninstalled.pc.in b/src/wayland-client-uninstalled.pc.in
index 3086621..732736e 100644
--- a/src/wayland-client-uninstalled.pc.in
+++ b/src/wayland-client-uninstalled.pc.in
@@ -1,8 +1,9 @@
libdir=@abs_builddir@/.libs
includedir=@abs_srcdir@
+protocoldir=@abs_top_builddir@/protocol
Name: Wayland Client
Description: Wayland client side library (not installed)
Version: @PACKAGE_VERSION@
-Cflags: -I${includedir}
+Cflags: -I${includedir} -I${protocoldir}
Libs: -L${libdir} -lwayland-client
diff --git a/src/wayland-server-uninstalled.pc.in b/src/wayland-server-uninstalled.pc.in
index 9057782..562686c 100644
--- a/src/wayland-server-uninstalled.pc.in
+++ b/src/wayland-server-uninstalled.pc.in
@@ -1,8 +1,9 @@
libdir=@abs_builddir@/.libs
includedir=@abs_srcdir@
+protocoldir=@abs_top_builddir@/protocol
Name: Wayland Server
Description: Server side implementation of the Wayland protocol (not installed)
Version: @PACKAGE_VERSION@
-Cflags: -I${includedir}
+Cflags: -I${includedir} -I${protocoldir}
Libs: -L${libdir} -lwayland-server