search for: have_http

Displaying 7 results from an estimated 7 matches for "have_http".

2007 Aug 02
1
libswfdec-gtk/swfdec_gtk_loader.c
libswfdec-gtk/swfdec_gtk_loader.c | 1 + 1 files changed, 1 insertion(+) New commits: diff-tree 4d1ee537d4cd388a8b21003496d3511df6f0549d (from ba4f1da69d0c74c45b0b4d92330f2203d258bb49) Author: Benjamin Otte <otte at gnome.org> Date: Thu Aug 2 13:06:55 2007 +0200 keep a reference to the message, since it's unreffed automagically diff --git a/libswfdec-gtk/swfdec_gtk_loader.c
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
...C_ARG_ENABLE(soup, + AS_HELP_STRING([--enable-soup], + [enable libaoup HTTP support for swfdec-gtk (default=yes)])], + enable_libsoup=$enableval, + enable_libsoup="yes") -if test "$enable_gnomevfs" = "yes"; then - PKG_CHECK_MODULES(HTTP, gnome-vfs-2.0 >= 2.14.0, HAVE_HTTP=yes, HAVE_HTTP=no) +if test "$enable_libsoup" = "yes"; then + PKG_CHECK_MODULES(HTTP, libsoup-2.2 >= 2.2.0, HAVE_HTTP=yes, HAVE_HTTP=no) if test "x$HAVE_HTTP" = xyes; then - AC_DEFINE(HAVE_HTTP, 1, [Define if gnome-vfs is enabled]) + AC_DEFINE(HAVE_HTTP, 1, [D...
2007 Nov 15
0
2 commits - libswfdec-gtk/swfdec_gtk_loader.c player/swfplay.c
...diff --git a/libswfdec-gtk/swfdec_gtk_loader.c b/libswfdec-gtk/swfdec_gtk_loader.c index fb93cf9..92f01f7 100644 --- a/libswfdec-gtk/swfdec_gtk_loader.c +++ b/libswfdec-gtk/swfdec_gtk_loader.c @@ -75,6 +75,22 @@ G_DEFINE_TYPE (SwfdecGtkLoader, swfdec_gtk_loader, SWFDEC_TYPE_FILE_LOADER) #ifdef HAVE_HTTP static void +swfdec_gtk_loader_set_size (SwfdecGtkLoader *gtk) +{ + const char *s = soup_message_get_header (gtk->message->response_headers, "Content-Length"); + unsigned long l; + char *end; + + if (s == NULL) + return; + + errno = 0; + l = strtoul (s, &end, 10); + i...
2007 Oct 26
0
6 commits - configure.ac libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_codec_video.c player/swfplay.c
..." = xyes]) @@ -262,7 +262,7 @@ if test "$enable_libsoup" = "yes"; then AC_MSG_ERROR([Couldn't find libsoup-2.2.]) fi else - AC_MSG_WARN([*** libsoup HTTP support was not enabled. ***]) + AC_MSG_NOTICE([libsoup HTTP support was not enabled.]) fi AM_CONDITIONAL(HAVE_HTTP, [test "x$HAVE_HTTP" = xyes]) @@ -281,7 +281,7 @@ if test "$enable_vivi" = "yes"; then AC_MSG_ERROR([Vivified requirements not met. You need libming >= $MING_REQUIRED and Gtk+ >= $VIVI_GTK_REQUIRED.]) fi else - AC_MSG_WARN([*** Vivified was not enabled....
2007 Aug 03
0
Changes to 'refs/tags/0.5.1'
...first step in loader handling reord s/g_print/SWFDEC_DEBUG/ step 2 in loading reorg: SwfdecLoaderTarget remove hack for loader actions make it compile (it doesn't work yet) fix up docs build document swfdec_as_frame_init_arguments() s/HAVE_GNOMEVFS/HAVE_HTTP/ we want HTTP_CFLAGS and HTTP_LIBS here export the file loader so subclassing gets possible fix docs - protected values aren't mentioned in gtk-doc actually commit the file loader code (oops) fix docs get rid of the HTTP status on open(). Instead allow changi...
2008 Jan 21
0
70 commits - configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_socket.c libswfdec-gtk/swfdec_gtk_socket.h libswfdec-gtk/swfdec_playback_alsa.c
...-AC_ARG_ENABLE(soup, - AS_HELP_STRING([--enable-soup], - [enable libsoup HTTP support for swfdec-gtk (default=yes)])], - enable_libsoup=$enableval, - enable_libsoup="yes") - -if test "$enable_libsoup" = "yes"; then - PKG_CHECK_MODULES(HTTP, libsoup-2.2 >= 2.2.0, HAVE_HTTP=yes, HAVE_HTTP=no) - if test "x$HAVE_HTTP" = xyes; then - AC_DEFINE(HAVE_HTTP, 1, [Define if libsoup is enabled]) - else - AC_MSG_ERROR([Couldn't find libsoup-2.2.]) - fi -else - AC_MSG_NOTICE([libsoup HTTP support was not enabled.]) -fi -AM_CONDITIONAL(HAVE_HTTP, [test "x$HA...
2007 Aug 22
0
163 commits - autogen.sh configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_source.c libswfdec/Makefile.am libswfdec/swfdec_as_array.c
...aintainer-mode --disable-static --enable-gtk-doc $@ +./configure --enable-maintainer-mode --disable-static --enable-gtk-doc --enable-vivified $@ diff --git a/configure.ac b/configure.ac index a7b5767..207e360 100644 --- a/configure.ac +++ b/configure.ac @@ -264,6 +264,25 @@ else fi AM_CONDITIONAL(HAVE_HTTP, [test "x$HAVE_HTTP" = xyes]) +AC_ARG_ENABLE(vivified, + AS_HELP_STRING([--enable-vivified], + [enable Vivified Flash debugger (default=no)])], + enable_vivi=$enableval, + enable_vivi="no") +if test "$enable_vivi" = "yes"; then + MING_REQUIRED=0.4.0.beta5...