mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
Add crossreferences to glib/gobject/gstream docs.
Original commit message from CVS: * configure.ac: * docs/plugins/Makefile.am: Add crossreferences to glib/gobject/gstream docs.
This commit is contained in:
parent
ecc16f3e31
commit
15075edea2
3 changed files with 20 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2007-02-13 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
* docs/plugins/Makefile.am:
|
||||||
|
Add crossreferences to glib/gobject/gstream docs.
|
||||||
|
|
||||||
2007-02-12 Tim-Philipp Müller <tim at centricular dot net>
|
2007-02-12 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/monoscope/Makefile.am:
|
* gst/monoscope/Makefile.am:
|
||||||
|
|
10
configure.ac
10
configure.ac
|
@ -236,7 +236,7 @@ dnl Check for mmap (needed by electricfence plugin)
|
||||||
AC_FUNC_MMAP
|
AC_FUNC_MMAP
|
||||||
AM_CONDITIONAL(GST_HAVE_MMAP, test "x$ac_cv_func_mmap_fixed_mapped" == "xyes")
|
AM_CONDITIONAL(GST_HAVE_MMAP, test "x$ac_cv_func_mmap_fixed_mapped" == "xyes")
|
||||||
|
|
||||||
dnl *** checks for dependancy libraries ***
|
dnl *** checks for dependency libraries ***
|
||||||
|
|
||||||
dnl GLib is required
|
dnl GLib is required
|
||||||
GST_GLIB_CHECK([2.6])
|
GST_GLIB_CHECK([2.6])
|
||||||
|
@ -270,6 +270,14 @@ dnl check for "check", unit testing library/header
|
||||||
AM_PATH_CHECK(0.9.2, HAVE_CHECK=yes, HAVE_CHECK=no)
|
AM_PATH_CHECK(0.9.2, HAVE_CHECK=yes, HAVE_CHECK=no)
|
||||||
AM_CONDITIONAL(HAVE_CHECK, test "x$HAVE_CHECK" = "xyes")
|
AM_CONDITIONAL(HAVE_CHECK, test "x$HAVE_CHECK" = "xyes")
|
||||||
|
|
||||||
|
dnl Check for documentation xrefs
|
||||||
|
GLIB_PREFIX="`$PKG_CONFIG --variable=prefix glib-2.0`"
|
||||||
|
GST_PREFIX="`$PKG_CONFIG --variable=prefix gstreamer-$GST_MAJORMINOR`"
|
||||||
|
GSTPB_PREFIX="`$PKG_CONFIG --variable=prefix gstreamer-plugins-base-$GST_MAJORMINOR`"
|
||||||
|
AC_SUBST(GLIB_PREFIX)
|
||||||
|
AC_SUBST(GST_PREFIX)
|
||||||
|
AC_SUBST(GSTPB_PREFIX)
|
||||||
|
|
||||||
dnl GTK is optional and used in examples
|
dnl GTK is optional and used in examples
|
||||||
HAVE_GTK=NO
|
HAVE_GTK=NO
|
||||||
PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.2.0, HAVE_GTK_22=yes, HAVE_GTK_22=no)
|
PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.2.0, HAVE_GTK_22=yes, HAVE_GTK_22=no)
|
||||||
|
|
|
@ -48,8 +48,11 @@ SCAN_OPTIONS=
|
||||||
MKDB_OPTIONS=--sgml-mode --source-suffixes=c,h,cc
|
MKDB_OPTIONS=--sgml-mode --source-suffixes=c,h,cc
|
||||||
|
|
||||||
# Extra options to supply to gtkdoc-fixref.
|
# Extra options to supply to gtkdoc-fixref.
|
||||||
# FIXME get the location of the installed gstreamer docs
|
FIXXREF_OPTIONS=--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/gobject \
|
||||||
#FIXXREF_OPTIONS=--extra-dir=../gst/html
|
--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/glib \
|
||||||
|
--extra-dir=$(GST_PREFIX)/share/gtk-doc/html/gstreamer-@GST_MAJORMINOR@ \
|
||||||
|
--extra-dir=$(GST_PREFIX)/share/gtk-doc/html/gstreamer-libs-@GST_MAJORMINOR@ \
|
||||||
|
--extra-dir=$(GSTPB_PREFIX)/share/gtk-doc/html/gst-plugins-base-libs-@GST_MAJORMINOR@
|
||||||
|
|
||||||
# Used for dependencies.
|
# Used for dependencies.
|
||||||
HFILE_GLOB=$(DOC_SOURCE_DIR)/*/*/*.h
|
HFILE_GLOB=$(DOC_SOURCE_DIR)/*/*/*.h
|
||||||
|
|
Loading…
Reference in a new issue