search for: libgnomevfs

Displaying 8 results from an estimated 8 matches for "libgnomevfs".

2007 Oct 21
0
player/swfplay.c
...itional include that was never enabled diff --git a/player/swfplay.c b/player/swfplay.c index d976358..b3fcea0 100644 --- a/player/swfplay.c +++ b/player/swfplay.c @@ -25,9 +25,6 @@ #include <libswfdec/swfdec.h> #include <libswfdec-gtk/swfdec-gtk.h> -#if HAVE_GNOMEVFS -#include <libgnomevfs/gnome-vfs.h> -#endif #include "swfdec_slow_loader.h"
2008 Jul 26
2
Re: Gnumeric rpm
...0x0030a000) libpopt.so.0 => /usr/lib/libpopt.so.0 (0x00734000) libgsf-gnome-1.so.114 => /usr/lib/libgsf-gnome-1.so.114 (0x00210000) libgsf-1.so.114 => /usr/lib/libgsf-1.so.114 (0x00251000) libbonobo-2.so.0 => /usr/lib/libbonobo-2.so.0 (0x00351000) libgnomevfs-2.so.0 => /usr/lib/libgnomevfs-2.so.0 (0x0052b000) libxml2.so.2 => /usr/lib/libxml2.so.2 (0x0461e000) libz.so.1 => /usr/lib/libz.so.1 (0x0097d000) libbonobo-activation.so.4 => /usr/lib/libbonobo-activation.so.4 (0x0065a000) libgconf-2.so.4 => /usr/lib/...
2008 Jun 30
4
INIT 5 and system is gone
I had been running a system on Centos 5.1 at INIT 3. I did the upgrade to Centos 5.2 with the aid of the powernowk8 patch. Previously I would VNC into the unit when I needed to do admin stuff with a GUI. Well I noticed that I was NOT getting GNOME via VNC since the upgrade (worked before just fine with 5.1). So I tried an INIT 5 from the command line (always worked before), but the system
2007 Apr 02
0
4 commits - configure.ac doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt doc/swfdec.types libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_loader.h
...+ return SWFDEC_TYPE_FILE_LOADER; +} + +SwfdecLoader * +swfdec_gtk_loader_new (const char *uri) +{ + g_return_val_if_fail (uri != NULL, NULL); + + return swfdec_loader_new_from_file (uri); +} + + +#else /* HAVE_GNOMEVFS */ + +/* size of buffer we read */ +#define BUFFER_SIZE 4096 + +#include <libgnomevfs/gnome-vfs.h> + +struct _SwfdecGtkLoader +{ + SwfdecLoader loader; + + GnomeVFSURI * guri; /* GnomeVFS URI used for resolving */ + GnomeVFSAsyncHandle * handle; /* handle to file or NULL when done */ + SwfdecBuffer * current_buffer; /* current buffer we're reading into */ +}; + +struc...
2007 Apr 06
0
3 commits - libswfdec-gtk/swfdec_gtk_loader.c libswfdec/Makefile.am libswfdec/swfdec_codec.c libswfdec/swfdec_codec_ffmpeg.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_codec.h libswfdec/swfdec_codec_screen.c libswfdec/swfdec_codec_video.c
...DFLAGS = $(GTK_LIBS) $(SWFDEC_GTK_LIBS) diff --git a/player/swfplay.c b/player/swfplay.c index 78c5c48..7cc4dbe 100644 --- a/player/swfplay.c +++ b/player/swfplay.c @@ -25,6 +25,9 @@ #include <libswfdec/swfdec.h> #include <libswfdec-gtk/swfdec-gtk.h> +#if HAVE_GNOMEVFS +#include <libgnomevfs/gnome-vfs.h> +#endif #include "swfdec_slow_loader.h" @@ -76,6 +79,7 @@ main (int argc, char *argv[]) gboolean trace = FALSE; char *variables = NULL; GtkWidget *window; + char *s; GOptionEntry options[] = { { "delay", 'd', 0, G_OPTION_ARG_INT,...
2007 Aug 02
0
15 commits - configure.ac doc/swfdec-sections.txt libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_gtk_loader.c libswfdec/Makefile.am libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_file_loader.c libswfdec/swfdec_file_loader.h
...-{ - return SWFDEC_TYPE_FILE_LOADER; -} - -SwfdecLoader * -swfdec_gtk_loader_new (const char *uri) -{ - g_return_val_if_fail (uri != NULL, NULL); - - return swfdec_loader_new_from_file (uri); -} - - -#else /* HAVE_HTTP */ - -/* size of buffer we read */ -#define BUFFER_SIZE 4096 - -#include <libgnomevfs/gnome-vfs.h> - struct _SwfdecGtkLoader { SwfdecLoader loader; - GnomeVFSURI * guri; /* GnomeVFS URI used for resolving */ - GnomeVFSAsyncHandle * handle; /* handle to file or NULL when done */ - SwfdecBuffer * current_buffer; /* current buffer we're reading into */ + SoupMessa...
2007 Jan 22
5
Problem with xen on Centos-4.4?
I am running a Xen installation on a Centos-4.4 based test box, my desktop unit, and I am having intermittent problems installing certain pieces of software. Some time back I posted to this list regarding my inability to install Adobe Acrobat on this unit and was advised to essentially repackage the software and try again. This is beyond my present means of knowledge or time to acquire same and
2007 Apr 04
0
Branch 'as' - 17 commits - configure.ac doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt doc/swfdec.types libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_loader.h
...+ return SWFDEC_TYPE_FILE_LOADER; +} + +SwfdecLoader * +swfdec_gtk_loader_new (const char *uri) +{ + g_return_val_if_fail (uri != NULL, NULL); + + return swfdec_loader_new_from_file (uri); +} + + +#else /* HAVE_GNOMEVFS */ + +/* size of buffer we read */ +#define BUFFER_SIZE 4096 + +#include <libgnomevfs/gnome-vfs.h> + +struct _SwfdecGtkLoader +{ + SwfdecLoader loader; + + GnomeVFSURI * guri; /* GnomeVFS URI used for resolving */ + GnomeVFSAsyncHandle * handle; /* handle to file or NULL when done */ + SwfdecBuffer * current_buffer; /* current buffer we're reading into */ +}; + +struc...