[anjuta] Updated file for 2.92.1 release and fixed distcheck
- From: Johannes Schmid <jhs src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [anjuta] Updated file for 2.92.1 release and fixed distcheck
- Date: Tue, 9 Nov 2010 10:06:37 +0000 (UTC)
commit b092a20f01d2de3ce1fbe7f21aa3d5028530b39c
Author: Johannes Schmid <jhs gnome org>
Date: Tue Nov 9 11:06:15 2010 +0100
Updated file for 2.92.1 release and fixed distcheck
NEWS | 31 +++++++++++++++++++++++++++
configure.ac | 8 +-----
manuals/reference/libanjuta/Makefile.am | 2 +-
plugins/Makefile.am | 1 +
plugins/debug-manager/Makefile.am | 1 +
plugins/document-manager/Makefile.am | 3 +-
plugins/language-support-js/Makefile.am | 2 +-
plugins/language-support-python/Makefile.am | 3 +-
plugins/run-program/Makefile.am | 3 +-
plugins/sourceview/Makefile.am | 3 +-
src/Makefile.am | 3 +-
11 files changed, 47 insertions(+), 13 deletions(-)
---
diff --git a/NEWS b/NEWS
index c6439f7..30ccc16 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,34 @@
+Anjuta 2.91.2 "Remember the days when we ported from Gtk+ 1.2 to 2.0?" -- Johannes Schmid
+
+WARNING: This is an unstable release! It's the first released based on the
+GNOME 3.x library set and a such it may kill your kitten though it's unlikely.
+
+New:
+- Everything works with gtk+-3.0 now. gconf replaced with GSettings, etc.
+- Switch to enable/disable modeline detection
+- Automatic completion of comments with "*"
+
+Regressions:
+- Glade hasn't been ported to gtk+-3.0 yet and isn't available
+- class-inheritance isn't build because of missing foocanvas for gtk+-3.0
+- gtodo is disabled and will probably be removed soon
+- terminal plugin hasn't been ported to GSettings, yet
+
+Bugs fixed:
+bgo#600407 - Missing LIBXML_CFLAGS and LIBXML_LIBS
+bgo#627105 - Mark default diff filenames for translation
+bgo#577595 - Prepend comment with *
+bgo#625903 - Port to GSettings
+bgo#625978 - configure failure in gtk+-3.0 environment
+bgo#631952 - better GObject-Introspection support for new-project branch
+bgo#633661 - vala support is automagic
+
+Thanks to: Abderrahim Kitouni, Andika Triwidada, Carles Ferrando,
+Eugenia Gabrielova, Evgeny Grablyk, Florian Ludwig, Gabor Kelemen,
+Giannis Katsampirhs, Javier Jardón, Jens Georg, Joan Duran, Jorge González,
+Josseline Mouette, knight2000, Mario Blättermann, Matej UrbanÄ?iÄ?,
+Nanci de Brito Bonfim, Pacho Ramos, Sébastien Granjoux, Takayuki KUSANO
+
Anjuta 2.32.0 "Goodbye Berlin" (27 Sep 2010) -- Johannes Schmid
This is our new stable release. Older releases won't see any bug-fixing, support,
diff --git a/configure.ac b/configure.ac
index 555b803..812a0f9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,8 +3,8 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.64])
m4_define(anjuta_major_version, 2)
-m4_define(anjuta_minor_version, 32)
-m4_define(anjuta_micro_version, 0)
+m4_define(anjuta_minor_version, 91)
+m4_define(anjuta_micro_version, 2)
m4_define(anjuta_nano_version, 0)
m4_define(anjuta_version, anjuta_major_version.anjuta_minor_version.anjuta_micro_version.anjuta_nano_version)
@@ -809,7 +809,6 @@ AM_CONDITIONAL(HAVE_GRAPHVIZ, [test x$libgraphviz_found = xyes])
AC_CONFIG_FILES([
Makefile
po/Makefile.in
-libfoocanvas/Makefile
libanjuta/Makefile
libanjuta/libanjuta-3.0.pc
libanjuta/anjuta-version.h
@@ -830,10 +829,8 @@ doc/Makefile
scripts/Makefile
launcher/Makefile
plugins/Makefile
-plugins/gtodo/Makefile
plugins/class-gen/Makefile
plugins/class-gen/templates/Makefile
-plugins/class-inheritance/Makefile
plugins/patch/Makefile
plugins/document-manager/Makefile
plugins/document-manager/images/Makefile
@@ -849,7 +846,6 @@ plugins/js-debugger/Makefile
plugins/file-manager/Makefile
plugins/file-loader/Makefile
plugins/file-wizard/Makefile
-plugins/terminal/Makefile
plugins/build-basic-autotools/Makefile
plugins/project-manager/Makefile
plugins/gbf-am/Makefile
diff --git a/manuals/reference/libanjuta/Makefile.am b/manuals/reference/libanjuta/Makefile.am
index ab97d5c..cc0d99f 100644
--- a/manuals/reference/libanjuta/Makefile.am
+++ b/manuals/reference/libanjuta/Makefile.am
@@ -75,7 +75,7 @@ INCLUDES = \
$(LIBANJUTA_CFLAGS)
GTKDOC_LIBS = \
- $(top_builddir)/libanjuta/libanjuta.la \
+ $(top_builddir)/libanjuta/libanjuta-3.la \
$(top_builddir)/libanjuta/interfaces/libanjuta-interfaces.la \
$(LIBANJUTA_LIBS)
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index d67231b..a2b825b 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -6,6 +6,7 @@ SUBDIRS = . \
class-gen \
cvs-plugin \
devhelp \
+ debug-manager \
dir-project \
document-manager \
file-loader \
diff --git a/plugins/debug-manager/Makefile.am b/plugins/debug-manager/Makefile.am
index 96d1755..25c31bd 100644
--- a/plugins/debug-manager/Makefile.am
+++ b/plugins/debug-manager/Makefile.am
@@ -98,6 +98,7 @@ EXTRA_DIST = \
$(schema_DATA) \
$(anjuta_ui_DATA) \
$(anjuta_glade_DATA) \
+ $(schema_in_files) \
anjuta-marshal.list
DISTCLEANFILES = \
diff --git a/plugins/document-manager/Makefile.am b/plugins/document-manager/Makefile.am
index 989503c..7c4d988 100644
--- a/plugins/document-manager/Makefile.am
+++ b/plugins/document-manager/Makefile.am
@@ -58,6 +58,7 @@ EXTRA_DIST = \
$(plugin_in_files) \
$(document_manager_plugin_DATA) \
$(document_manager_ui_DATA) \
- $(document_manager_glade_DATA)
+ $(document_manager_glade_DATA) \
+ $(prefs_keyfile)
-include $(top_srcdir)/git.mk
diff --git a/plugins/language-support-js/Makefile.am b/plugins/language-support-js/Makefile.am
index fd66e0b..ebbaff9 100644
--- a/plugins/language-support-js/Makefile.am
+++ b/plugins/language-support-js/Makefile.am
@@ -56,7 +56,7 @@ js-parser-y-tab.c js-parser-y-tab.h lex.yy.c lex.yy.h js-node.c js-node.h js-con
ijs-symbol.h ijs-symbol.c gir-symbol.c gir-symbol.h gi-symbol.c gi-symbol.h simple-symbol.c \
simple-symbol.h local-symbol.c local-symbol.h node-symbol.c node-symbol.h import-symbol.c \
import-symbol.h dir-symbol.c dir-symbol.h std-symbol.c std-symbol.h database-symbol.c database-symbol.h \
-db-anjuta-symbol.c db-anjuta-symbol.h jstypes.h
+db-anjuta-symbol.c db-anjuta-symbol.h jstypes.h prefs.h
libjs_support_plugin_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)
diff --git a/plugins/language-support-python/Makefile.am b/plugins/language-support-python/Makefile.am
index f44eee8..a875b1a 100644
--- a/plugins/language-support-python/Makefile.am
+++ b/plugins/language-support-python/Makefile.am
@@ -53,4 +53,5 @@ EXTRA_DIST = \
$(python_plugin_ui_DATA) \
$(python_plugin_glade_DATA) \
$(python_plugin_pixmaps_DATA) \
- $(scripts_SCRIPTS)
+ $(scripts_SCRIPTS) \
+ $(prefs_keyfile)
diff --git a/plugins/run-program/Makefile.am b/plugins/run-program/Makefile.am
index b4613f8..780a610 100644
--- a/plugins/run-program/Makefile.am
+++ b/plugins/run-program/Makefile.am
@@ -51,6 +51,7 @@ EXTRA_DIST = \
$(anjuta_pixmaps_DATA) \
$(anjuta_plugin_DATA) \
$(anjuta_ui_DATA) \
- $(anjuta_glade_DATA)
+ $(anjuta_glade_DATA) \
+ $(schema_in_files)
-include $(top_srcdir)/git.mk
diff --git a/plugins/sourceview/Makefile.am b/plugins/sourceview/Makefile.am
index ef9c679..7f1f478 100644
--- a/plugins/sourceview/Makefile.am
+++ b/plugins/sourceview/Makefile.am
@@ -90,7 +90,8 @@ EXTRA_DIST = \
$(plugin_in_files) \
$(sourceview_plugin_DATA) \
$(sourceview_pixmaps_DATA) \
- $(sourceview_xml_DATA)
+ $(sourceview_xml_DATA) \
+ $(prefs_keyfile)
diff --git a/src/Makefile.am b/src/Makefile.am
index 2f3f226..19a4a51 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -65,6 +65,7 @@ EXTRA_DIST = \
anjuta-shell.ui \
$(anjuta_layout_DATA) \
$(anjuta_glade_DATA) \
- $(anjuta_pixmaps_DATA)
+ $(anjuta_pixmaps_DATA) \
+ $(prefs_keyfile)
-include $(top_srcdir)/git.mk
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]