compatibility fixes for Solaris 8/gcc 2.95
authorBenjamin Otte <otte@gnome.org>
Tue, 13 Jul 2004 14:17:01 +0000 (14:17 +0000)
committerBenjamin Otte <otte@gnome.org>
Tue, 13 Jul 2004 14:17:01 +0000 (14:17 +0000)
Original commit message from CVS:
compatibility fixes for Solaris 8/gcc 2.95
* configure.ac:
include libintl libs in LDFLAGS
* gstvalue.c (gst_value_deserialize_buffer):
cast isxdigit stuff to int to silence compiler warning

ChangeLog
common
configure.ac
gst/gstvalue.c

index 2b39b8e..a9dd5b7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-07-13  Benjamin Otte  <otte@gnome.org>
+
+         compatibility fixes for Solaris 8/gcc 2.95
+       * configure.ac:
+         include libintl libs in LDFLAGS
+       * gstvalue.c (gst_value_deserialize_buffer):
+         cast isxdigit stuff to int to silence compiler warning
+
 2004-07-12  Benjamin Otte  <otte@gnome.org>
 
        * gst/gsttypes.h:
diff --git a/common b/common
index 59a2885..8f16cd2 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 59a2885f01e3092ffaefbed270f331c143b16d6b
+Subproject commit 8f16cd236828a8bb7be51696029e0e24b7a6c517
index 07acb1a..1931689 100644 (file)
@@ -579,7 +579,7 @@ GST_INT_CFLAGS="$GLIB_CFLAGS $XML_CFLAGS $GST_PKG_CFLAGS \
 dnl Private vars for libgst only
 GST_LIB_CFLAGS="$GST_PKG_CFLAGS $GST_INT_CFLAGS \
   $VALGRIND_CFLAGS -I\$(top_srcdir)"
-GST_LIB_LIBS="$XML_LIBS $GLIB_LIBS -lpopt $GST_PKG_LIBS $VALGRIND_LIBS"
+GST_LIB_LIBS="$XML_LIBS $GLIB_LIBS -lpopt $GST_PKG_LIBS $LTLIBINTL $VALGRIND_LIBS"
 GST_LIB_LDFLAGS="$GST_LT_LDFLAGS -version-info $GST_LIBVERSION $EXPORT_LDFLAGS"
 AC_SUBST(GST_LIB_CFLAGS)
 AC_SUBST(GST_LIB_LIBS)
index 901c484..da84f44 100644 (file)
@@ -889,7 +889,7 @@ gst_value_deserialize_buffer (GValue * dest, const char *s)
   buffer = gst_buffer_new_and_alloc (len / 2);
   data = GST_BUFFER_DATA (buffer);
   for (i = 0; i < len / 2; i++) {
-    if (!isxdigit (s[i * 2]) || !isxdigit (s[i * 2 + 1])) {
+    if (!isxdigit ((int) s[i * 2]) || !isxdigit ((int) s[i * 2 + 1])) {
       ret = FALSE;
       break;
     }