docs/gst/Makefile.am: Dear gtk-doc, please print out the unused symbols, because...
authorDavid Schleef <ds@schleef.org>
Tue, 11 May 2004 03:05:00 +0000 (03:05 +0000)
committerDavid Schleef <ds@schleef.org>
Tue, 11 May 2004 03:05:00 +0000 (03:05 +0000)
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 ;

ChangeLog
docs/gst/Makefile.am
gst/registries/gstxmlregistry.c

index 01a5289..402ef56 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 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)
        * win32/Makefile: When using make clean the MS Visual Studio makefiles
        are deleted.  Fix.
index c1aaa9f..40203ff 100644 (file)
@@ -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
 
index 23aec56..f5e6699 100644 (file)
@@ -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;