summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2008-02-11 19:50:59 +0000
committerDan Winship <danw@src.gnome.org>2008-02-11 19:50:59 +0000
commit71384f04ca10754d2be646e790a38ca4f3b7a294 (patch)
tree19cbb2b844ca17ead32d1607229e85475ba9c4cc
parent625c4576e41b9f03e8bb303dddb50eba3bf46e5f (diff)
downloadlibsoup-gnome-2-20.tar.gz
* configure.in: 2.2.105 * NEWS: Update svn path=/branches/gnome-2-20/; revision=1084
-rw-r--r--ChangeLog6
-rw-r--r--NEWS19
-rw-r--r--configure.in2
-rw-r--r--gtk-doc.make42
4 files changed, 38 insertions, 31 deletions
diff --git a/ChangeLog b/ChangeLog
index b7bd9f2c..ff09d5fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-02-11 Dan Winship <danw@gnome.org>
+
+ * configure.in: 2.2.105
+
+ * NEWS: Update
+
2008-02-07 Dan Winship <danw@gnome.org>
* libsoup/soup-connection.c (soup_connection_disconnect):
diff --git a/NEWS b/NEWS
index b348f319..694feab5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+Changes in libsoup from 2.2.104 to 2.2.105:
+
+ * Fixed a crash-when-idle that affected evolution-exchange
+ [#437835] and rhythmbox [#506552].
+
+ * Added the API version to the gtk-doc installation dir, to
+ prevent parallel-installation problems with libsoup 2.2 and
+ 2.4. [#512810, Daniel Gryniewicz].
+
+ With the upcoming release of libsoup 2.4.0 as part of GNOME
+ 2.22, libsoup 2.2 is becoming deprecated, and there will
+ probably not be any further releases in the 2.2 series.
+ Applications that use libsoup should start looking into
+ porting to the exciting and fun libsoup-2.4 API. A porting
+ guide is available at
+ http://library.gnome.org/devel/libsoup/unstable/libsoup-porting-2.2-2.4.html.
+ If you have questions not answered by that document, please
+ send mail to libsoup-list@gnome.org.
+
Changes in libsoup from 2.2.103 to 2.2.104:
* soup_message_io_pause() and soup_message_io_pause() are now
diff --git a/configure.in b/configure.in
index f04ecc6f..295c8624 100644
--- a/configure.in
+++ b/configure.in
@@ -3,7 +3,7 @@ dnl *** Initialize automake and set version ***
dnl *******************************************
AC_PREREQ(2.53)
-AC_INIT(libsoup, 2.2.104)
+AC_INIT(libsoup, 2.2.105)
AC_CONFIG_SRCDIR(libsoup.pc.in)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
diff --git a/gtk-doc.make b/gtk-doc.make
index 354ffb7c..8056cd6d 100644
--- a/gtk-doc.make
+++ b/gtk-doc.make
@@ -5,11 +5,11 @@
####################################
if GTK_DOC_USE_LIBTOOL
-GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
+GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS)
+GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS)
else
-GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
+GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS)
+GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS)
endif
# We set GPATH here; this gives us semantics for GNU make
@@ -38,12 +38,7 @@ SCANOBJ_FILES = \
$(DOC_MODULE).prerequisites \
$(DOC_MODULE).signals
-REPORT_FILES = \
- $(DOC_MODULE)-undocumented.txt \
- $(DOC_MODULE)-undeclared.txt \
- $(DOC_MODULE)-unused.txt
-
-CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS)
+CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS)
if ENABLE_GTK_DOC
all-local: html-build.stamp
@@ -84,10 +79,6 @@ tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections
tmpl.stamp: tmpl-build.stamp
@true
-tmpl/*.sgml:
- @true
-
-
#### xml ####
sgml-build.stamp: tmpl.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files)
@@ -105,11 +96,11 @@ sgml.stamp: sgml-build.stamp
html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
@echo 'gtk-doc: Building HTML'
@-chmod -R u+w $(srcdir)
- rm -rf $(srcdir)/html
+ rm -rf $(srcdir)/html
mkdir $(srcdir)/html
cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html )
- @echo 'gtk-doc: Fixing cross-references'
+ @echo 'gtk-doc: Fixing cross-references'
cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
touch html-build.stamp
@@ -119,16 +110,11 @@ clean-local:
rm -f *~ *.bak
rm -rf .libs
-distclean-local:
- cd $(srcdir) && \
- rm -rf xml $(REPORT_FILES) \
- $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
-
maintainer-clean-local: clean
- cd $(srcdir) && rm -rf xml html
+ cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
install-data-local:
- -installfiles=`echo $(srcdir)/html/*`; \
+ installfiles=`echo $(srcdir)/html/*`; \
if test "$$installfiles" = '$(srcdir)/html/*'; \
then echo '-- Nothing to install' ; \
else \
@@ -139,10 +125,7 @@ install-data-local:
done; \
echo '-- Installing $(srcdir)/html/index.sgml' ; \
$(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \
- which gtkdoc-rebase >/dev/null && \
- gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR) ; \
fi
-
uninstall-local:
rm -f $(DESTDIR)$(TARGET_DIR)/*
@@ -165,9 +148,8 @@ dist-hook: dist-check-gtkdoc dist-hook-local
-cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
-cp $(srcdir)/xml/*.xml $(distdir)/xml
cp $(srcdir)/html/* $(distdir)/html
- -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/
- -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/
- cd $(distdir) && rm -f $(DISTCLEANFILES)
- -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html
+ if test -f $(srcdir)/$(DOC_MODULE).types; then \
+ cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \
+ fi
.PHONY : dist-hook-local docs