mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
docs/gst/Makefile.am: Call gst_init() in built gstreamer-scan.
Original commit message from CVS: * docs/gst/Makefile.am: Call gst_init() in built gstreamer-scan. * gst/gstatomic_impl.h: Disable sparc implementation.
This commit is contained in:
parent
1a484c065a
commit
de74af0114
4 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-02-11 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
|
* docs/gst/Makefile.am: Call gst_init() in built gstreamer-scan.
|
||||||
|
* gst/gstatomic_impl.h: Disable sparc implementation.
|
||||||
|
|
||||||
2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* gst-element-check.m4:
|
* gst-element-check.m4:
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit 759c50e2a908cfb369590c2099537c2f4da33bd8
|
Subproject commit c6f697f5a14c01e88a7cdf417b8e06b4417921c3
|
|
@ -135,7 +135,7 @@ scan-build.stamp: $(HFILE_GLOB) $(SCANOBJ_DEPS) $(basefiles)
|
||||||
if test x"$(srcdir)" != x. ; then \
|
if test x"$(srcdir)" != x. ; then \
|
||||||
cp $(srcdir)/$(DOC_MODULE).types . ; \
|
cp $(srcdir)/$(DOC_MODULE).types . ; \
|
||||||
fi ; \
|
fi ; \
|
||||||
CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" $(GTK_DOC_SCANOBJ) --module=$(DOC_MODULE) ; \
|
CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" $(GTK_DOC_SCANOBJ) --type-init-func="gst_init(NULL,NULL)" --module=$(DOC_MODULE) ; \
|
||||||
else \
|
else \
|
||||||
cd $(srcdir) ; \
|
cd $(srcdir) ; \
|
||||||
for i in $(SCANOBJ_FILES) ; do \
|
for i in $(SCANOBJ_FILES) ; do \
|
||||||
|
|
|
@ -211,7 +211,8 @@ gst_atomic_int_dec_and_test (GstAtomicInt *aint)
|
||||||
}
|
}
|
||||||
|
|
||||||
/***** Sun SPARC *****/
|
/***** Sun SPARC *****/
|
||||||
#elif defined(HAVE_CPU_SPARC) && defined(__GNUC__)
|
#elif 0 && defined(HAVE_CPU_SPARC) && defined(__GNUC__)
|
||||||
|
/* allegedly broken again */
|
||||||
|
|
||||||
GST_INLINE_FUNC void gst_atomic_int_destroy (GstAtomicInt *aint) { }
|
GST_INLINE_FUNC void gst_atomic_int_destroy (GstAtomicInt *aint) { }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue