AS_COMPILER_FLAG(-Wall,GST_ERROR="$GST_ERROR -Wall",GST_ERROR="$GST_ERROR")
if test "x$GST_CVS" = "xyes"; then
AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
+ GST_ERROR="$GST_ERROR -DG_DISABLE_DEPRECATED"
fi
dnl We disable static building for development, for time savings
#include "gsttee.h"
+#include <string.h>
+
GST_DEBUG_CATEGORY_STATIC (gst_tee_debug);
#define GST_CAT_DEFAULT gst_tee_debug
g_assert (GST_IS_PAD (pad));
- return g_strcasecmp (name, gst_pad_get_name (pad)); /* returns 0 if match */
+ return strcmp (name, gst_pad_get_name (pad)); /* returns 0 if match */
}
static GstPad*
case G_TYPE_BOOLEAN:{
gboolean i = FALSE;
- if (!g_strncasecmp ("true", value, 4))
+ if (!g_ascii_strncasecmp ("true", value, 4))
i = TRUE;
g_object_set (G_OBJECT (object), name, i, NULL);
break;
#include "gsttee.h"
+#include <string.h>
+
GST_DEBUG_CATEGORY_STATIC (gst_tee_debug);
#define GST_CAT_DEFAULT gst_tee_debug
g_assert (GST_IS_PAD (pad));
- return g_strcasecmp (name, gst_pad_get_name (pad)); /* returns 0 if match */
+ return strcmp (name, gst_pad_get_name (pad)); /* returns 0 if match */
}
static GstPad*