pkgconfig/: New files.

Original commit message from CVS:
2005-04-06  Andy Wingo  <wingo@pobox.com>

* pkgconfig/gstreamer-base.pc.in:
* pkgconfig/gstreamer-base-uninstalled.pc.in: New files.

* pkgconfig/Makefile.am:
* configure.ac (AC_OUTPUT): Add gstreamer-base pkgconfig files.
This commit is contained in:
Andy Wingo 2005-04-06 11:08:07 +00:00
parent d617ba6a53
commit 4c712824b9
7 changed files with 48 additions and 13 deletions

View file

@ -1,3 +1,11 @@
2005-04-06 Andy Wingo <wingo@pobox.com>
* pkgconfig/gstreamer-base.pc.in:
* pkgconfig/gstreamer-base-uninstalled.pc.in: New files.
* pkgconfig/Makefile.am:
* configure.ac (AC_OUTPUT): Add gstreamer-base pkgconfig files.
2005-04-04 Wim Taymans <wim@fluendo.com>
* gst/base/Makefile.am:

View file

@ -731,6 +731,8 @@ pkgconfig/Makefile
stamp.h
pkgconfig/gstreamer.pc
pkgconfig/gstreamer-uninstalled.pc
pkgconfig/gstreamer-base.pc
pkgconfig/gstreamer-base-uninstalled.pc
pkgconfig/gstreamer-control.pc
pkgconfig/gstreamer-control-uninstalled.pc
gstreamer.spec,

View file

@ -260,15 +260,6 @@ Indicates how accurate the event was performed.
@event: The event to query
<!-- ##### MACRO GST_EVENT_DISCONT_NEW_MEDIA ##### -->
<para>
Flag that indicates the discont event was because of a new media
type.
</para>
@event: The event to operate on
<!-- ##### MACRO GST_EVENT_DISCONT_OFFSET ##### -->
<para>
The offset of the discont event. A discont event can hold up to 8 different
@ -400,10 +391,12 @@ Copy the event using the event specific copy function
</para>
@new_media:
@rate:
@format1:
@Varargs:
@Returns:
<!-- # Unused Parameters # -->
@new_media:
<!-- ##### FUNCTION gst_event_new_discontinuous_valist ##### -->
@ -411,10 +404,12 @@ Copy the event using the event specific copy function
</para>
@new_media:
@rate:
@format1:
@var_args:
@Returns:
<!-- # Unused Parameters # -->
@new_media:
<!-- ##### FUNCTION gst_event_discont_get_value ##### -->
@ -424,8 +419,11 @@ Copy the event using the event specific copy function
@event:
@format:
@value:
@start_value:
@end_value:
@Returns:
<!-- # Unused Parameters # -->
@value:
<!-- ##### MACRO gst_event_new_filler ##### -->

View file

@ -24,7 +24,6 @@
#include <string.h> /* memset */
#include "gstutils.h"
#include "gstmemchunk.h"
#include "gsttrashstack.h"
#ifdef HAVE_VALGRIND

View file

@ -1,10 +1,12 @@
### all of the standard pc files we need to generate
pcfiles = \
gstreamer-@GST_MAJORMINOR@.pc \
gstreamer-base-@GST_MAJORMINOR@.pc \
gstreamer-control-@GST_MAJORMINOR@.pc
pcfiles_uninstalled = \
gstreamer-@GST_MAJORMINOR@-uninstalled.pc \
gstreamer-base-@GST_MAJORMINOR@-uninstalled.pc \
gstreamer-control-@GST_MAJORMINOR@-uninstalled.pc
all-local: $(pcfiles) $(pcfiles_uninstalled)
@ -21,6 +23,8 @@ pkgconfig_DATA = $(pcfiles)
EXTRA_DIST = \
gstreamer.pc.in \
gstreamer-uninstalled.pc.in \
gstreamer-base.pc.in \
gstreamer-base-uninstalled.pc.in \
gstreamer-control.pc.in \
gstreamer-control-uninstalled.pc.in

View file

@ -0,0 +1,13 @@
# the standard variables don't make sense for an uninstalled copy
prefix=
exec_prefix=
libdir=${pcfiledir}/../gst/base
includedir=${pcfiledir}/..
Name: GStreamer base classes, uninstalled
Description: Base classes for GStreamer elements
Requires: gstreamer-@GST_MAJORMINOR@ = @VERSION@
Version: @VERSION@
Libs: ${libdir}/libgstbase-@GST_MAJORMINOR@.la
Cflags: -I${includedir}

View file

@ -0,0 +1,11 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@/gstreamer-@GST_MAJORMINOR@
Name: GStreamer base classes
Description: Base classes for GStreamer elements
Requires: gstreamer-@GST_MAJORMINOR@
Version: @VERSION@
Libs: -L${libdir} -lgstbase-@GST_MAJORMINOR@
Cflags: -I${includedir}