gst/gstregistry.c: Plugin extension on HP-UX is .sl, add that to the list of approved plugin extensions (see #393796).

Original commit message from CVS:
* gst/gstregistry.c: (gst_registry_scan_path_level):
Plugin extension on HP-UX is .sl, add that to the list of approved
plugin extensions (see #393796).
* tests/check/gst/gstpad.c: (GST_START_TEST):
ulong => gulong. Fixes compilation with HP-UX compiler.
* tests/check/pipelines/parse-launch.c: (GST_START_TEST):
Fix compilation if valgrind headers are not available.
This commit is contained in:
Tim-Philipp Müller 2007-01-08 16:23:03 +00:00
parent 198f9e72aa
commit 2991d5cd33
5 changed files with 21 additions and 4 deletions

View file

@ -1,3 +1,15 @@
2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
* gst/gstregistry.c: (gst_registry_scan_path_level):
Plugin extension on HP-UX is .sl, add that to the list of approved
plugin extensions (see #393796).
* tests/check/gst/gstpad.c: (GST_START_TEST):
ulong => gulong. Fixes compilation with HP-UX compiler.
* tests/check/pipelines/parse-launch.c: (GST_START_TEST):
Fix compilation if valgrind headers are not available.
2007-01-07 Sébastien Moutte <sebastien@moutte.net>
* win32/common/libgstreamer.def:

2
common

@ -1 +1 @@
Subproject commit 64f924f6f2ff6275b06facb4c2adbc7c05f70641
Subproject commit 8ba5dffb5ee7e7daea1030f6b34bfef10f9801a3

View file

@ -811,6 +811,7 @@ gst_registry_scan_path_level (GstRegistry * registry, const gchar * path,
continue;
}
if (!g_str_has_suffix (filename, ".so") &&
!g_str_has_suffix (filename, ".sl") &&
!g_str_has_suffix (filename, ".dll") &&
!g_str_has_suffix (filename, ".dynlib")) {
GST_LOG_OBJECT (registry,

View file

@ -310,7 +310,7 @@ GST_START_TEST (test_push_linked)
GstPadLinkReturn plr;
GstCaps *caps;
GstBuffer *buffer;
ulong id;
gulong id;
/* setup */
sink = gst_pad_new ("sink", GST_PAD_SINK);

View file

@ -23,8 +23,10 @@
# include "config.h"
#endif
#include <valgrind/valgrind.h>
#include <valgrind/memcheck.h>
#ifdef HAVE_VALGRIND
# include <valgrind/valgrind.h>
# include <valgrind/memcheck.h>
#endif
#include <gst/check/gstcheck.h>
@ -329,7 +331,9 @@ GST_START_TEST (leaking_fail_pipes)
g_print ("Trying pipe: %s\n", *s);
expected_fail_pipe (*s);
#endif
#ifdef HAVE_VALGRIND
VALGRIND_DO_LEAK_CHECK;
#endif
}
}