mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
docs/gst/Makefile.am: Dear gtk-doc, please print out the unused symbols, because otherwise we don't know what they ar...
Original commit message from CVS: * docs/gst/Makefile.am: Dear gtk-doc, please print out the unused symbols, because otherwise we don't know what they are. Thanks, the GStreamer team. * gst/registries/gstxmlregistry.c: (make_dir): Remove a spurious ;
This commit is contained in:
parent
3a9c8f63d6
commit
eb8249f544
3 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-05-10 David Schleef <ds@schleef.org>
|
||||
|
||||
* docs/gst/Makefile.am: Dear gtk-doc, please print out the unused
|
||||
symbols, because otherwise we don't know what they are. Thanks,
|
||||
the GStreamer team.
|
||||
* gst/registries/gstxmlregistry.c: (make_dir): Remove a spurious ;
|
||||
|
||||
2004-05-10 David Schleef <ds@schleef.org>
|
||||
|
||||
(from Steve Lhomme)
|
||||
|
|
|
@ -199,7 +199,9 @@ tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections
|
|||
touch $(DOC_MODULE)-decl.txt ; \
|
||||
fi
|
||||
gtkdoc-mktmpl --module=$(DOC_MODULE) | tee tmpl-build.log
|
||||
@if grep "WARNING:" tmpl-build.log > /dev/null; then exit 1; fi
|
||||
@if grep "WARNING:" tmpl-build.log > /dev/null; then \
|
||||
cat $(DOC_MODULE)-unused.txt ; \
|
||||
exit 1; fi
|
||||
rm -f tmpl-build.log
|
||||
touch tmpl-build.stamp
|
||||
|
||||
|
|
|
@ -321,7 +321,7 @@ get_time (const char *path, gboolean * is_dir)
|
|||
#ifdef _MSC_VER
|
||||
#define xmkdir(dirname) _mkdir (dirname)
|
||||
#else
|
||||
#define xmkdir(dirname) mkdir (dirname, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
|
||||
#define xmkdir(dirname) mkdir (dirname, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)
|
||||
#endif
|
||||
|
||||
static gboolean
|
||||
|
@ -329,7 +329,6 @@ make_dir (gchar * filename)
|
|||
{
|
||||
struct stat dirstat;
|
||||
gchar *dirname;
|
||||
int ret;
|
||||
|
||||
if (strrchr (filename, '/') == NULL)
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue