summaryrefslogtreecommitdiff
path: root/pkgconfig
diff options
context:
space:
mode:
Diffstat (limited to 'pkgconfig')
-rw-r--r--pkgconfig/Makefile.am57
-rw-r--r--pkgconfig/libva-drm.pc.in12
-rw-r--r--pkgconfig/libva-egl.pc.in13
-rw-r--r--pkgconfig/libva-glx.pc.in12
-rw-r--r--pkgconfig/libva-tpi.pc.in11
-rw-r--r--pkgconfig/libva-wayland.pc.in12
-rw-r--r--pkgconfig/libva-x11.pc.in12
-rw-r--r--pkgconfig/libva.pc.in11
8 files changed, 0 insertions, 140 deletions
diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am
deleted file mode 100644
index a3435a4..0000000
--- a/pkgconfig/Makefile.am
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright (c) 2007 Intel Corporation. All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the
-# "Software"), to deal in the Software without restriction, including
-# without limitation the rights to use, copy, modify, merge, publish,
-# distribute, sub license, and/or sell copies of the Software, and to
-# permit persons to whom the Software is furnished to do so, subject to
-# the following conditions:
-#
-# The above copyright notice and this permission notice (including the
-# next paragraph) shall be included in all copies or substantial portions
-# of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
-# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
-# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-pcfiles = libva.pc
-pcfiles += libva-tpi.pc
-if USE_DRM
-pcfiles += libva-drm.pc
-endif
-if USE_X11
-pcfiles += libva-x11.pc
-endif
-if USE_GLX
-pcfiles += libva-glx.pc
-endif
-if USE_EGL
-pcfiles += libva-egl.pc
-endif
-if USE_WAYLAND
-pcfiles += libva-wayland.pc
-endif
-
-all_pcfiles_in = libva.pc.in
-all_pcfiles_in += libva-tpi.pc.in
-all_pcfiles_in += libva-drm.pc.in
-all_pcfiles_in += libva-x11.pc.in
-all_pcfiles_in += libva-glx.pc.in
-all_pcfiles_in += libva-egl.pc.in
-all_pcfiles_in += libva-wayland.pc.in
-
-pkgconfigdir = @pkgconfigdir@
-pkgconfig_DATA = $(pcfiles)
-
-EXTRA_DIST = $(all_pcfiles_in)
-
-DISTCLEANFILES = $(pcfiles)
-
-# Extra clean files so that maintainer-clean removes *everything*
-MAINTAINERCLEANFILES = Makefile.in
diff --git a/pkgconfig/libva-drm.pc.in b/pkgconfig/libva-drm.pc.in
deleted file mode 100644
index b3fb471..0000000
--- a/pkgconfig/libva-drm.pc.in
+++ /dev/null
@@ -1,12 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-display=drm
-
-Name: libva-${display}
-Description: Userspace Video Acceleration (VA) ${display} interface
-Requires: libva
-Version: @VA_API_VERSION@
-Libs: -L${libdir} -lva-${display}
-Cflags: -I${includedir}
diff --git a/pkgconfig/libva-egl.pc.in b/pkgconfig/libva-egl.pc.in
deleted file mode 100644
index d80fcc8..0000000
--- a/pkgconfig/libva-egl.pc.in
+++ /dev/null
@@ -1,13 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-display=egl
-
-Name: libva-${display}
-Description: Userspace Video Acceleration (VA) ${display} interface
-Requires: libva
-Version: @VA_API_VERSION@
-Libs: -L${libdir} -lva-${display}
-Cflags: -I${includedir}
-
diff --git a/pkgconfig/libva-glx.pc.in b/pkgconfig/libva-glx.pc.in
deleted file mode 100644
index 8599866..0000000
--- a/pkgconfig/libva-glx.pc.in
+++ /dev/null
@@ -1,12 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-display=glx
-
-Name: libva-${display}
-Description: Userspace Video Acceleration (VA) ${display} interface
-Requires: libva
-Version: @VA_API_VERSION@
-Libs: -L${libdir} -lva-${display}
-Cflags: -I${includedir}
diff --git a/pkgconfig/libva-tpi.pc.in b/pkgconfig/libva-tpi.pc.in
deleted file mode 100644
index bc7fdd7..0000000
--- a/pkgconfig/libva-tpi.pc.in
+++ /dev/null
@@ -1,11 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-
-Name: libva-tpi
-Description: Userspace Video Acceleration (VA) 3rd party interface
-Requires: libva
-Version: @VA_API_VERSION@
-Libs: -L${libdir} -lva-tpi
-Cflags: -I${includedir}
diff --git a/pkgconfig/libva-wayland.pc.in b/pkgconfig/libva-wayland.pc.in
deleted file mode 100644
index ee92ac2..0000000
--- a/pkgconfig/libva-wayland.pc.in
+++ /dev/null
@@ -1,12 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-display=wayland
-
-Name: libva-${display}
-Description: Userspace Video Acceleration (VA) ${display} interface
-Requires: libva wayland-client
-Version: @VA_API_VERSION@
-Libs: -L${libdir} -lva-${display}
-Cflags: -I${includedir}
diff --git a/pkgconfig/libva-x11.pc.in b/pkgconfig/libva-x11.pc.in
deleted file mode 100644
index 4e7330c..0000000
--- a/pkgconfig/libva-x11.pc.in
+++ /dev/null
@@ -1,12 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-display=x11
-
-Name: libva-${display}
-Description: Userspace Video Acceleration (VA) ${display} interface
-Requires: libva
-Version: @VA_API_VERSION@
-Libs: -L${libdir} -lva-${display}
-Cflags: -I${includedir}
diff --git a/pkgconfig/libva.pc.in b/pkgconfig/libva.pc.in
deleted file mode 100644
index 8b03f98..0000000
--- a/pkgconfig/libva.pc.in
+++ /dev/null
@@ -1,11 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-driverdir=@LIBVA_DRIVERS_PATH@
-
-Name: libva
-Description: Userspace Video Acceleration (VA) core interface
-Version: @VA_API_VERSION@
-Libs: -L${libdir} -lva
-Cflags: -I${includedir}