gimp r25284 - in trunk: . plug-ins/uri po-plug-ins
- From: neo svn gnome org
- To: svn-commits-list gnome org
- Subject: gimp r25284 - in trunk: . plug-ins/uri po-plug-ins
- Date: Fri, 28 Mar 2008 16:09:45 +0000 (GMT)
Author: neo
Date: Fri Mar 28 16:09:44 2008
New Revision: 25284
URL: http://svn.gnome.org/viewvc/gimp?rev=25284&view=rev
Log:
2008-03-28 Sven Neumann <sven gimp org>
* configure.in: put GIO check back in as we need it to initialize
GIO_CFLAGS and GIO_LIBS. Renamed --without-gio to --without-gvfs.
* INSTALL: changed accordingly.
* plug-ins/uri/Makefile.am
* plug-ins/uri/uri-backend-gio.c
* plug-ins/uri/uri-backend-gvfs.c: renamed the gio backend to gvfs.
Added:
trunk/plug-ins/uri/uri-backend-gvfs.c
- copied, changed from r25283, /trunk/plug-ins/uri/uri-backend-gio.c
Removed:
trunk/plug-ins/uri/uri-backend-gio.c
Modified:
trunk/ChangeLog
trunk/INSTALL
trunk/configure.in
trunk/plug-ins/uri/Makefile.am
trunk/po-plug-ins/POTFILES.in
Modified: trunk/INSTALL
==============================================================================
--- trunk/INSTALL (original)
+++ trunk/INSTALL Fri Mar 28 16:09:44 2008
@@ -33,7 +33,7 @@
http://svn.gnome.org/svn/gegl/trunk
3. You need to have installed GTK+ version 2.12.1 or newer. GIMP
- also need a recent versions of GLib (>= 2.14.1) and Pango (>= 1.12.2).
+ also need a recent versions of GLib (>= 2.16.1) and Pango (>= 1.18.0).
Sources for these can be grabbed from ftp://ftp.gtk.org/.
4. We require PangoFT2, a Pango backend that uses FreeType2. Make
@@ -42,7 +42,7 @@
http://www.freetype.org/. Fontconfig from
http://freedesktop.org/fontconfig/. GIMP depends on freetype2
being newer than version 2.1.7 and fontconfig 2.2.0 or newer.
- Older versions are known to have bugs that seriously affect
+ Older versions are known to have bugs that seriously affect the
stability of GIMP.
5. We use libart2. Grab the module libart_lgpl out of GNOME SVN or
@@ -165,8 +165,8 @@
--without-print. If for some reason you don't want to build the Print
plug-in based on the GtkPrint API, you can build with --without-print.
- --without-gio. If you don't want to use GIO to access remote
- files, you can pass --without-gio to the configure script.
+ --without-gvfs. If you don't want to use GIO/GVfs to access remote
+ files, you can pass --without-gvfs to the configure script.
--without-gnomevfs. If you don't want to use gnomevfs to access remote
files, you can pass --without-gnomevfs to the configure script.
Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in (original)
+++ trunk/configure.in Fri Mar 28 16:09:44 2008
@@ -436,6 +436,8 @@
PKG_CHECK_MODULES(GMODULE_NO_EXPORT, gmodule-no-export-2.0)
+PKG_CHECK_MODULES(GIO, gio-2.0)
+
AC_MSG_CHECKING([if GLib is version 2.19.0 or newer])
if $PKG_CONFIG --atleast-version=2.19.0 glib-2.0; then
have_glib_2_19=yes
@@ -1275,16 +1277,16 @@
###############################################
-# Check for gio, gnome-vfs and libcurl
+# Check for gio/gvfs, gnome-vfs and libcurl
# (and optionally libgnomeui and gnome-keyring)
###############################################
uri_plugin=no
-AC_ARG_WITH(gio, [ --without-gio build without GIO support])
+AC_ARG_WITH(gvfs, [ --without-gvfs build without GIO/GVfs support])
-AM_CONDITIONAL(HAVE_GIO, test "x$with_gio" != xno)
+AM_CONDITIONAL(HAVE_GVFS, test "x$with_gvfs" != xno)
gnome_vfs_modules="gnome-vfs-2.0 >= gnome_vfs_required_version"
@@ -1339,8 +1341,8 @@
AM_CONDITIONAL(HAVE_LIBCURL, test "x$have_libcurl" = xyes)
-if test "x$with_gio" != xno; then
- uri_plugin="yes (using GIO)"
+if test "x$with_gvfs" != xno; then
+ uri_plugin="yes (using GIO/GVfs)"
elif test "x$have_gnomevfs" = xyes; then
uri_plugin="yes (using gnome-vfs)"
elif test "x$have_libcurl" = xyes; then
Modified: trunk/plug-ins/uri/Makefile.am
==============================================================================
--- trunk/plug-ins/uri/Makefile.am (original)
+++ trunk/plug-ins/uri/Makefile.am Fri Mar 28 16:09:44 2008
@@ -18,8 +18,8 @@
libexec_PROGRAMS = uri
-if HAVE_GIO
-backend_sources = gimpmountoperation.c gimpmountoperation.h uri-backend-gio.c
+if HAVE_GVFS
+backend_sources = gimpmountoperation.c gimpmountoperation.h uri-backend-gvfs.c
backend_cflags = $(GIO_CFLAGS)
backend_libs = $(GIO_LIBS)
else
Copied: trunk/plug-ins/uri/uri-backend-gvfs.c (from r25283, /trunk/plug-ins/uri/uri-backend-gio.c)
==============================================================================
--- /trunk/plug-ins/uri/uri-backend-gio.c (original)
+++ trunk/plug-ins/uri/uri-backend-gvfs.c Fri Mar 28 16:09:44 2008
@@ -1,7 +1,7 @@
/* GIMP - The GNU Image Manipulation Program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
- * URI plug-in, GIO backend
+ * URI plug-in, GIO/GVfs backend
* Copyright (C) 2008 Sven Neumann <sven gimp org>
*
* This program is free software; you can redistribute it and/or modify
Modified: trunk/po-plug-ins/POTFILES.in
==============================================================================
--- trunk/po-plug-ins/POTFILES.in (original)
+++ trunk/po-plug-ins/POTFILES.in Fri Mar 28 16:09:44 2008
@@ -271,8 +271,8 @@
plug-ins/sgi/sgi.c
plug-ins/twain/twain.c
plug-ins/uri/gimpmountoperation.c
-plug-ins/uri/uri-backend-gio.c
plug-ins/uri/uri-backend-gnomevfs.c
+plug-ins/uri/uri-backend-gvfs.c
plug-ins/uri/uri-backend-libcurl.c
plug-ins/uri/uri-backend-wget.c
plug-ins/uri/uri.c
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]