Lucas Nussbaum <[EMAIL PROTECTED]> (07/08/2007):
> W: Unable to locate package libgstreamer0.8-dev
> E: Couldn't find package libgstreamer0.8-dev

Replacing it with one on 0.10 won't be sufficient, you'll have to add
something like the following to configure.ac and then update your
autostuff -- which I haven't checked thoroughly.

Cheers,

-- 
Cyril Brulebois

--- gst-editor-0.8.0~/configure.ac      2007-08-06 23:32:41.000000000 +0000
+++ gst-editor-0.8.0/configure.ac       2007-08-06 23:33:48.000000000 +0000
@@ -77,9 +77,14 @@
 GSTREAMER_REQ="0.7.1"
 AC_SUBST(GSTREAMER_REQ)

+GSTREAMER_MAJORMINOR="0.10"
+PKG_CHECK_MODULES(GST, gstreamer-$GSTREAMER_MAJORMINOR >= $GSTREAMER_REQ,
+                       HAVE_GSTREAMER=yes,HAVE_GSTREAMER=no)
+if test "x$HAVE_GSTREAMER" = "xno"; then
 GSTREAMER_MAJORMINOR="0.8"
 PKG_CHECK_MODULES(GST, gstreamer-$GSTREAMER_MAJORMINOR >= $GSTREAMER_REQ,
                        HAVE_GSTREAMER=yes,HAVE_GSTREAMER=no)
+fi
 if test "x$HAVE_GSTREAMER" = "xno"; then
 GSTREAMER_MAJORMINOR="0.7"
 PKG_CHECK_MODULES(GST, gstreamer-$GSTREAMER_MAJORMINOR >= $GSTREAMER_REQ,

Attachment: pgpAPmcFZdNzi.pgp
Description: PGP signature

Reply via email to