mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
configure.ac: add srcdir, builddir includes to GST_ALL_CFLAGS, since everything that uses GStreamer API should have t...
Original commit message from CVS: * configure.ac: add srcdir, builddir includes to GST_ALL_CFLAGS, since everything that uses GStreamer API should have the includes
This commit is contained in:
parent
4df2acee2e
commit
4beb1c4224
2 changed files with 12 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2005-10-15 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
add srcdir, builddir includes to GST_ALL_CFLAGS, since
|
||||||
|
everything that uses GStreamer API should have the includes
|
||||||
|
|
||||||
2005-10-15 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-10-15 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* docs/gst/gstreamer-sections.txt:
|
* docs/gst/gstreamer-sections.txt:
|
||||||
|
|
|
@ -578,10 +578,13 @@ AC_SUBST(GST_OPTION_CFLAGS)
|
||||||
|
|
||||||
dnl GST_ALL_*
|
dnl GST_ALL_*
|
||||||
dnl vars common to for all internal objects (core libs, elements, applications)
|
dnl vars common to for all internal objects (core libs, elements, applications)
|
||||||
dnl CFLAGS: XML needs to be added because xmlPtr is used in core
|
dnl CFLAGS:
|
||||||
|
dnl - XML needs to be added because xmlPtr is used in core
|
||||||
|
dnl - src and build dirs need to be added because every piece that gets built
|
||||||
|
dnl will need the GStreamer source and generated headers
|
||||||
dnl LIBS: XML doesn't need to be added because we don't explicitly use symbols
|
dnl LIBS: XML doesn't need to be added because we don't explicitly use symbols
|
||||||
dnl from LibXML
|
dnl from LibXML
|
||||||
GST_ALL_CFLAGS="$GLIB_CFLAGS $XML_CFLAGS \$(GST_OPTION_CFLAGS)"
|
GST_ALL_CFLAGS="-I\$(top_srcdir)/libs -I\$(top_srcdir) -I\$(top_builddir) $GLIB_CFLAGS $XML_CFLAGS \$(GST_OPTION_CFLAGS)"
|
||||||
dnl FIXME: check if LTLIBINTL is needed everywhere
|
dnl FIXME: check if LTLIBINTL is needed everywhere
|
||||||
dnl I presume it is given that it contains the symbols that _() stuff maps to
|
dnl I presume it is given that it contains the symbols that _() stuff maps to
|
||||||
GST_ALL_LIBS="$GLIB_LIBS $LTLIBINTL"
|
GST_ALL_LIBS="$GLIB_LIBS $LTLIBINTL"
|
||||||
|
@ -594,7 +597,7 @@ AC_SUBST(GST_ALL_LDFLAGS)
|
||||||
|
|
||||||
dnl GST_OBJ_*
|
dnl GST_OBJ_*
|
||||||
dnl default vars for all internal objects built on libgstreamer
|
dnl default vars for all internal objects built on libgstreamer
|
||||||
GST_OBJ_CFLAGS="-I\$(top_srcdir)/libs -I\$(top_srcdir) \$(GST_ALL_CFLAGS)"
|
GST_OBJ_CFLAGS="\$(GST_ALL_CFLAGS)"
|
||||||
GST_OBJ_LIBS="\$(top_builddir)/gst/libgstreamer-$GST_MAJORMINOR.la \$(GST_ALL_LIBS)"
|
GST_OBJ_LIBS="\$(top_builddir)/gst/libgstreamer-$GST_MAJORMINOR.la \$(GST_ALL_LIBS)"
|
||||||
GST_OBJ_LDFLAGS="$GST_LT_LDFLAGS $GST_ALL_LDFLAGS"
|
GST_OBJ_LDFLAGS="$GST_LT_LDFLAGS $GST_ALL_LDFLAGS"
|
||||||
AC_SUBST(GST_OBJ_CFLAGS)
|
AC_SUBST(GST_OBJ_CFLAGS)
|
||||||
|
|
Loading…
Reference in a new issue