Skip to content

Commit

Permalink
Merge branch 'master' of ssh://git.gnome.org/git/metacity
Browse files Browse the repository at this point in the history
  • Loading branch information
marnanel committed Jun 27, 2011
2 parents 97d54ca + 54aa2d0 commit 38e28c1
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 6 deletions.
17 changes: 17 additions & 0 deletions NEWS
@@ -1,3 +1,20 @@
Version 2.34.1
==============

- Fix crash in meta_display_get_above_tab_keycode (Adam Jackson)
- Disable keybindings message should ungrab keys (Daniel Drake)
- Remove --with-gtk configure flag as metacity only builds against gtk2 (Colin
Walters)
- Build fix for FreeBSD: Include sys/wait.h as described in POSIX specs (Alexis Ballier)
- Various small build system changes (William Jon McCann, Olav Vitters)

Translations:
Carles Ferrando (ca@valencia)
Jiro Matsuzawa (ja)
Kristjan SCHMIDT (eo)
Nguyễn Thái Ngọc Duy (vi)
Tommi Vainikainen (fi)

==============
Version 2.34.0
==============
Expand Down
5 changes: 3 additions & 2 deletions configure.in
Expand Up @@ -4,7 +4,7 @@ m4_define([metacity_major_version], [2])
m4_define([metacity_minor_version], [34])
# Fibonacci sequence for micro version numbering:
# 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987
m4_define([metacity_micro_version], [1])
m4_define([metacity_micro_version], [2])

m4_define([metacity_version],
[metacity_major_version.metacity_minor_version.metacity_micro_version])
Expand All @@ -14,7 +14,8 @@ AC_INIT([metacity], [metacity_version],
AC_CONFIG_SRCDIR(src/core/display.c)
AC_CONFIG_HEADERS(config.h)

AM_INIT_AUTOMAKE
AM_INIT_AUTOMAKE([1.11.1 no-dist-gzip dist-xz])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],)
AM_MAINTAINER_MODE

# Honor aclocal flags
Expand Down
3 changes: 1 addition & 2 deletions metacity.doap
Expand Up @@ -8,8 +8,7 @@
xmlns:gnome="http://api.gnome.org/doap-extensions#"
xmlns:admin="http://webns.net/mvcb/">

<name>The Metacity Window Manager</name>
<shortname>Metacity</shortname>
<name xml:lang="en">Metacity</name>

<!-- It's a blog. Metacity has no homepage. -->
<homepage rdf:resource="http://blogs.gnome.org/metacity/" />
Expand Down
4 changes: 2 additions & 2 deletions src/Makefile.am
Expand Up @@ -143,7 +143,7 @@ schema_bindings_SOURCES = \
schema_bindings_LDADD = @METACITY_LIBS@
metacity.schemas.in: schema_bindings ${srcdir}/metacity.schemas.in.in
@echo Generating keybinding schemas... ${srcdir}/metacity.schemas.in.in
${builddir}/schema_bindings ${srcdir}/metacity.schemas.in.in ${builddir}/metacity.schemas.in
$(AM_V_GEN)${builddir}/schema_bindings ${srcdir}/metacity.schemas.in.in ${builddir}/metacity.schemas.in

bin_PROGRAMS=metacity metacity-theme-viewer

Expand Down Expand Up @@ -207,7 +207,7 @@ BUILT_SOURCES = inlinepixbufs.h
CLEANFILES = inlinepixbufs.h metacity.desktop metacity-wm.desktop metacity.schemas metacity.schemas.in 50-metacity-launchers.xml 50-metacity-navigation.xml 50-metacity-screenshot.xml 50-metacity-system.xml 50-metacity-windows.xml

inlinepixbufs.h: $(IMAGES)
$(GDK_PIXBUF_CSOURCE) --raw --build-list $(VARIABLES) >$(srcdir)/inlinepixbufs.h
$(AM_V_GEN)$(GDK_PIXBUF_CSOURCE) --raw --build-list $(VARIABLES) >$(srcdir)/inlinepixbufs.h

pkgconfigdir = $(libdir)/pkgconfig

Expand Down

0 comments on commit 38e28c1

Please sign in to comment.