summaryrefslogtreecommitdiff
path: root/pkgconfig
AgeCommit message (Collapse)AuthorFilesLines
2012-11-26gst: don't require gthread-2.0Tim-Philipp Müller2-2/+2
We don't need to link to gthread-2.0 any longer, since all the normal thread-related stuff is in GLib proper, and we don't use g_thread_init() any more. https://bugzilla.gnome.org/show_bug.cgi?id=689043
2012-11-25gstreamer-1.0.pc: move gmodule-no-export-2.0 dependency to Requires.privateTim-Philipp Müller2-2/+4
Users of GStreamer are not generally expected to use the GModule API directly. so don't force them all to link against it. While we're at it, no need to define this via configure.ac really, just put the dependencies directly into the .pc.in file.
2012-04-04gst: Change versioningSebastian Dröge11-36/+36
Remove GST_MAJORMINOR and replace it by GST_API_VERSION Also set GST_VERSION_{MAJOR,MINOR,MICRO,NANO} explicitely now. All versions are at 1.0.0 now for the release soon but API/ABI can still change until the 1.0.0 release. Next release versions until 1.0.0 will be 0.10.9X and these will be release candidates. GST_VERSION_* will nonetheless stay at 1.0.0.0.
2012-01-17netaddressmeta: Use GSocketAddress instead of our own wrapper typeSebastian Dröge2-2/+2
2011-12-25libs: remove gdp dataprotocol libraryTim-Philipp Müller3-34/+0
Made private and moved to gdp plugin in -base for the time being, until we figure out what we do with gdp and 0.11.
2011-06-04Remove everything libxml2- and loadsave-relatedTim-Philipp Müller2-2/+2
2011-01-11pkgconfig: also add libdir to -uninstalled .pc filesTim-Philipp Müller6-6/+6
This way we can find the paths to pass e.g. g-ir-scanner for uninstalled setups. https://bugzilla.gnome.org/show_bug.cgi?id=639039
2010-03-30pkgconfig: add girdir and typelibdir variables to .pc filesTim-Philipp Müller12-0/+36
So that the -base libs can figure out the right include paths for the gobject-introspection tools even if core got installed into a prefix that's not the same prefix as gobject-introspection is installed in or it's being build in an uninstalled gstreamer setup.
2010-03-22pkgconfig: Use @LIBM@ instead of -lmSebastian Dröge1-1/+1
2010-03-19pkgconfig: add back support for builddir != srcdir case in uninstalled setupTim-Philipp Müller6-27/+28
Attempt to add back support for builddir != srcdir. Use absolute paths instead of relative paths based on pcfiledir this time to make things clearer - there's not really any need for uninstalled trees to be relocatable without re-running configure.
2010-03-17Revert "Add srcdir to includes for out-of-source builds"Tim-Philipp Müller6-6/+6
I don't know how this ever worked, as it seems to put -I./.. and -I./../libs verbatim into the includes, at least with current autotools versions. This reverts commit 279a80ff27ba4c90f52981e89e710eb1181bc201.
2010-03-09build: Make some more rules silent if requestedSebastian Dröge1-2/+6
2010-01-30pkgconfig: don't put -DG_THREADS_MANDATORY into our pkg-config CFLAGSTim-Philipp Müller2-2/+2
If we force -DG_THREADS_MANDATORY onto apps, then g_thread_supported() will always evaluate to TRUE, so the typical thread initialisation boilerplate code if (!g_thread_supported()) g_thread_init(NULL); will no longer work, and the threading system not be initialised and us printing a warning in gst_init. This may be fine in most cases, since late initialisation is allowed and automatically done in g_type_init() since GLib 2.23.2, but let's be cautious and only use this define when compiling GStreamer itself. See #608398.
2010-01-20build: Define G_THREADS_MANDATORY everywhereSebastian Dröge2-2/+2
We require threads to be supported in any case and defining this will simplify the mutex, condition variable, etc. macros from gthread to not always check if threads are really supported. Fixes bug #607481.
2009-08-06check: use private copy of check for libgstcheckTim-Philipp Müller2-4/+4
See #577275. Seems to work fine, but doesn't distcheck yet.
2009-02-23Add srcdir to includes for out-of-source buildsDavid Flynn6-6/+6
When you use gstreamer uninstalled and build outside the source tree, the includes need to be specified for both the source tree and the build tree. Signed-off-by: David Schleef <ds@schleef.org>
2008-08-12pkgconfig/: Remove -lgstcontrol-0.10 which never worked anyway as the lib is ↵Stefan Kost2-3/+0
called gstcontroller-0.10. Original commit message from CVS: * pkgconfig/gstreamer-uninstalled.pc.in: * pkgconfig/gstreamer.pc.in: Remove -lgstcontrol-0.10 which never worked anyway as the lib is called gstcontroller-0.10.
2007-07-13pkgconfig/: Substitute the CFLAGS for libcheck into our .pc file too so that ↵Jan Schmidt2-2/+2
dependent modules will pick it up proper... Original commit message from CVS: * pkgconfig/gstreamer-check-uninstalled.pc.in: * pkgconfig/gstreamer-check.pc.in: Substitute the CFLAGS for libcheck into our .pc file too so that dependent modules will pick it up properly if libcheck is installed into some other prefix.
2007-06-14Ugly 'fix' for the controller unit test on the p5 bot: in ↵Tim-Philipp Müller2-2/+2
fail_unless_equals_float() check whether the values are 'al... Original commit message from CVS: * libs/gst/check/Makefile.am: * libs/gst/check/gstcheck.h: * pkgconfig/gstreamer-check-uninstalled.pc.in: * pkgconfig/gstreamer-check.pc.in: Ugly 'fix' for the controller unit test on the p5 bot: in fail_unless_equals_float() check whether the values are 'almost equal' by allowing a small absolute error, which should be good enough for our use cases (normal numbers and values close to 0). Proper fixage left to floating point arithmetic aficionados.
2006-03-21pkgconfig/: Use @CHECK_LIBS@ here instead of hard-coding -lcheck (#334109).Loïc Minier2-2/+2
Original commit message from CVS: Patch by: Loïc Minier <lool + gnome at via dot ecp dot fr> * pkgconfig/gstreamer-check-uninstalled.pc.in: * pkgconfig/gstreamer-check.pc.in: Use @CHECK_LIBS@ here instead of hard-coding -lcheck (#334109).
2005-11-29update uninstalled pc filesThomas Vander Stichele3-4/+5
Original commit message from CVS: update uninstalled pc files
2005-11-29Rename gstnet-tempname to gstnet. Fixes #322257.Andy Wingo2-2/+2
Original commit message from CVS: 2005-11-29 Andy Wingo <wingo@pobox.com> * check/Makefile.am: * pkgconfig/gstreamer-net-uninstalled.pc.in: * pkgconfig/gstreamer-net.pc.in: * gst/net/Makefile.am: Rename gstnet-tempname to gstnet. Fixes #322257.
2005-11-18Add net pkgconfig files.Andy Wingo3-3/+31
Original commit message from CVS: 2005-11-18 Andy Wingo <wingo@pobox.com> * configure.ac: * pkgconfig/gstreamer-net.pc.in: * pkgconfig/gstreamer-net-uninstalled.pc.in: * pkgconfig/Makefile.am: Add net pkgconfig files.
2005-10-16remove more PKG_CFLAGSThomas Vander Stichele2-2/+2
Original commit message from CVS: remove more PKG_CFLAGS
2005-10-16remove GST_PKG_CFLAGSThomas Vander Stichele2-2/+2
Original commit message from CVS: remove GST_PKG_CFLAGS
2005-10-15clean up pc filesThomas Vander Stichele7-8/+8
Original commit message from CVS: clean up pc files
2005-09-04need to add -lcheck to the pkgconfig fileThomas Vander Stichele2-2/+2
Original commit message from CVS: need to add -lcheck to the pkgconfig file
2005-08-24add pluginsdir to pkgconfig filesThomas Vander Stichele2-0/+3
Original commit message from CVS: add pluginsdir to pkgconfig files
2005-08-20move check stuff to its own library to be used by other modulesThomas Vander Stichele3-2/+38
Original commit message from CVS: move check stuff to its own library to be used by other modules
2005-08-02that one tooStefan Kost1-0/+13
Original commit message from CVS: that one too
2005-08-02added missing pc filesStefan Kost1-0/+11
Original commit message from CVS: added missing pc files
2005-08-02added controller code removed dparam pc filesStefan Kost3-29/+4
Original commit message from CVS: added controller code removed dparam pc files
2005-07-06pc file cleanupsThomas Vander Stichele2-5/+4
Original commit message from CVS: pc file cleanups
2005-07-05Ported dataprotol to 0.9.Wim Taymans3-3/+32
Original commit message from CVS: * configure.ac: * libs/gst/dataprotocol/Makefile.am: * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_validate_packet): * libs/gst/dataprotocol/dataprotocol.h: * pkgconfig/Makefile.am: * pkgconfig/gstreamer-dataprotocol-uninstalled.pc.in: * pkgconfig/gstreamer-dataprotocol.pc.in: Ported dataprotol to 0.9. Added pkgconfig files.
2005-04-06pkgconfig/: New files.Andy Wingo3-0/+28
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.
2004-04-19docs/libs/Makefile.am: Change sinclude to includeDavid Schleef1-2/+2
Original commit message from CVS: * docs/libs/Makefile.am: Change sinclude to include * docs/gst/Makefile.am: same * pkgconfig/Makefile.am: Remove GNU-ism from makefile target
2003-11-24merge in taggingBenjamin Otte1-8/+8
Original commit message from CVS: merge in tagging Includes: - gsttag.[ch] - The definition of GstTagList and tag registering/querying - gsttaginterface.[ch] - Interface for elements that can handle setting of tags - updates and merges to gststructure.[ch] and gstvalue.[ch] - testsuite/tags - some tests for tagging - bugfixes - updates to make make distcheck work - updates the version number to 0.7.2.1 Does not include: - including tagging stuff in docs - extensive tests
2003-04-27ignore .pc filesSteve Baker1-0/+1
Original commit message from CVS: ignore .pc files
2003-04-07Port some changes from 0.6.0/0.6.1 back to HEAD (.pc files moved to ↵Ronald S. Bultje5-0/+79
pkg-config/, .m4 file moved from plugins to core) Original commit message from CVS: Port some changes from 0.6.0/0.6.1 back to HEAD (.pc files moved to pkg-config/, .m4 file moved from plugins to core)