diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | NEWS | 13 | ||||
-rw-r--r-- | configure.ac | 3 |
3 files changed, 23 insertions, 1 deletions
@@ -1,5 +1,13 @@ 2007-11-15 Alexander Larsson <alexl@redhat.com> + * configure.ac: + Require gio 0.1.2 + + * NEWS: + Update for release + +2007-11-15 Alexander Larsson <alexl@redhat.com> + * daemon/Makefile.am: * daemon/ftp.mount.in: * daemon/gvfs-daemon.service.in: @@ -0,0 +1,13 @@ +Major changes in 0.0.2: +* Updated to work win gio-standalone 0.1.2 +* Build fixes on various platforms +* Don't link client lib to libgvfscommon.so +* Change how the uri mapper works +* Integrate standard uri mappers (i.e. smb) into client libs + (You might need to remove $prefix/lib/gvfs/modules/libsmb.so + from an older version if you install this) +* Cleanly handle when gvfs daemons die, without + crashing the app +* Implement unmounting +* Rename master daemon to "gvfsd" and mount daemons to + names like "gvfsd-sftp". diff --git a/configure.ac b/configure.ac index e27289b1..530fad37 100644 --- a/configure.ac +++ b/configure.ac @@ -39,7 +39,8 @@ GTK_DOC_CHECK DISTCHECK_CONFIGURE_FLAGS="--enable-gtk-doc" AC_SUBST(DISTCHECK_CONFIGURE_FLAGS) -PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.13.8 gthread-2.0 gobject-2.0 gmodule-no-export-2.0 gio-2.0 gio-unix-2.0) +PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.13.8 gthread-2.0 gobject-2.0 gmodule-no-export-2.0 gio-unix-2.0 + gio-2.0 >= 0.1.2) AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) |