From: David Schleef Date: Tue, 11 May 2004 03:05:00 +0000 (+0000) Subject: docs/gst/Makefile.am: Dear gtk-doc, please print out the unused symbols, because... X-Git-Tag: RELEASE-0_8_2~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eb8249f544463907dfa6dd2c98b8f3ac0e030ed5;p=platform%2Fupstream%2Fgstreamer.git 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 ; --- diff --git a/ChangeLog b/ChangeLog index 01a5289..402ef56 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2004-05-10 David Schleef + * 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 + (from Steve Lhomme) * win32/Makefile: When using make clean the MS Visual Studio makefiles are deleted. Fix. diff --git a/docs/gst/Makefile.am b/docs/gst/Makefile.am index c1aaa9f..40203ff 100644 --- a/docs/gst/Makefile.am +++ b/docs/gst/Makefile.am @@ -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 diff --git a/gst/registries/gstxmlregistry.c b/gst/registries/gstxmlregistry.c index 23aec56..f5e6699 100644 --- a/gst/registries/gstxmlregistry.c +++ b/gst/registries/gstxmlregistry.c @@ -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;