2002-11-02 05:39:31 -05:00
|
|
|
AC_PREREQ(2.50)
|
2004-12-20 15:42:21 -05:00
|
|
|
|
2011-04-04 13:23:45 -04:00
|
|
|
m4_define([mutter_major_version], [3])
|
2011-06-30 17:03:19 -04:00
|
|
|
m4_define([mutter_minor_version], [1])
|
2011-08-30 15:39:25 -04:00
|
|
|
m4_define([mutter_micro_version], [90.1])
|
2006-09-18 12:18:37 -04:00
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
m4_define([mutter_version],
|
|
|
|
[mutter_major_version.mutter_minor_version.mutter_micro_version])
|
2008-09-18 11:09:11 -04:00
|
|
|
|
2011-03-04 15:11:38 -05:00
|
|
|
m4_define([mutter_plugin_api_version], [3])
|
2008-09-18 11:09:11 -04:00
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
AC_INIT([mutter], [mutter_version],
|
|
|
|
[http://bugzilla.gnome.org/enter_bug.cgi?product=mutter])
|
2001-06-02 00:14:18 -04:00
|
|
|
|
2007-12-19 16:17:50 -05:00
|
|
|
AC_CONFIG_SRCDIR(src/core/display.c)
|
2004-11-10 02:59:38 -05:00
|
|
|
AC_CONFIG_HEADERS(config.h)
|
2001-06-02 00:14:18 -04:00
|
|
|
|
2009-07-16 18:02:30 -04:00
|
|
|
AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip])
|
2009-08-10 15:57:36 -04:00
|
|
|
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],)
|
2004-11-10 02:59:38 -05:00
|
|
|
AM_MAINTAINER_MODE
|
2001-06-02 00:14:18 -04:00
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_MAJOR_VERSION=mutter_major_version
|
|
|
|
MUTTER_MINOR_VERSION=mutter_minor_version
|
|
|
|
MUTTER_MICRO_VERSION=mutter_micro_version
|
|
|
|
MUTTER_PLUGIN_API_VERSION=mutter_plugin_api_version
|
|
|
|
AC_SUBST(MUTTER_MAJOR_VERSION)
|
|
|
|
AC_SUBST(MUTTER_MINOR_VERSION)
|
|
|
|
AC_SUBST(MUTTER_MICRO_VERSION)
|
|
|
|
AC_SUBST(MUTTER_PLUGIN_API_VERSION)
|
2008-09-18 11:09:11 -04:00
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_PLUGIN_DIR="$libdir/$PACKAGE/plugins"
|
2008-10-29 06:28:48 -04:00
|
|
|
AC_SUBST(MUTTER_PLUGIN_DIR)
|
|
|
|
|
2002-01-08 02:23:35 -05:00
|
|
|
# Honor aclocal flags
|
2004-11-10 02:59:38 -05:00
|
|
|
AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}")
|
2002-01-08 02:23:35 -05:00
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
GETTEXT_PACKAGE=mutter
|
2001-06-02 00:14:18 -04:00
|
|
|
AC_SUBST(GETTEXT_PACKAGE)
|
2002-12-08 14:17:17 -05:00
|
|
|
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Name of default gettext domain])
|
2001-06-02 00:14:18 -04:00
|
|
|
|
2006-09-14 01:06:10 -04:00
|
|
|
IT_PROG_INTLTOOL([0.34.90])
|
2001-06-02 00:14:18 -04:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_ISC_POSIX
|
|
|
|
AC_HEADER_STDC
|
2003-04-19 03:19:04 -04:00
|
|
|
AC_LIBTOOL_WIN32_DLL
|
2001-06-02 00:14:18 -04:00
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
|
2009-07-02 11:19:02 -04:00
|
|
|
# Sets GLIB_GENMARSHAL and GLIB_MKENUMS
|
|
|
|
AM_PATH_GLIB_2_0()
|
|
|
|
|
2008-08-18 07:02:14 -04:00
|
|
|
#### Integer sizes
|
2003-09-29 14:16:45 -04:00
|
|
|
|
|
|
|
AC_CHECK_SIZEOF(char)
|
|
|
|
AC_CHECK_SIZEOF(short)
|
|
|
|
AC_CHECK_SIZEOF(long)
|
|
|
|
AC_CHECK_SIZEOF(int)
|
|
|
|
AC_CHECK_SIZEOF(void *)
|
|
|
|
AC_CHECK_SIZEOF(long long)
|
|
|
|
AC_CHECK_SIZEOF(__int64)
|
|
|
|
|
2003-09-29 18:17:16 -04:00
|
|
|
## byte order
|
|
|
|
AC_C_BIGENDIAN
|
|
|
|
|
2010-12-22 16:04:58 -05:00
|
|
|
GTK_MIN_VERSION=2.91.7
|
2010-10-25 14:44:30 -04:00
|
|
|
CANBERRA_GTK=libcanberra-gtk3
|
|
|
|
CANBERRA_GTK_VERSION=0.26
|
2010-09-23 08:32:48 -04:00
|
|
|
|
2010-10-25 14:44:30 -04:00
|
|
|
MUTTER_PC_MODULES="gtk+-3.0 >= $GTK_MIN_VERSION pango >= 1.2.0 cairo >= 1.10.0"
|
2002-12-08 14:17:17 -05:00
|
|
|
|
2004-11-10 02:59:38 -05:00
|
|
|
AC_ARG_ENABLE(gconf,
|
|
|
|
AC_HELP_STRING([--disable-gconf],
|
|
|
|
[disable gconf usage, for embedded/size-sensitive non-GNOME builds]),,
|
|
|
|
enable_gconf=yes)
|
2002-12-08 14:17:17 -05:00
|
|
|
|
|
|
|
if test x$enable_gconf = xyes; then
|
|
|
|
AC_DEFINE(HAVE_GCONF,1,[Build with gconf support])
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_PC_MODULES="$MUTTER_PC_MODULES gconf-2.0 >= 1.2.0"
|
2002-12-08 14:17:17 -05:00
|
|
|
fi
|
|
|
|
|
2004-11-10 02:59:38 -05:00
|
|
|
AC_ARG_ENABLE(verbose-mode,
|
2008-02-12 23:13:06 -05:00
|
|
|
AC_HELP_STRING([--disable-verbose-mode],
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
[disable mutter's ability to do verbose logging, for embedded/size-sensitive custom builds]),,
|
2004-11-10 02:59:38 -05:00
|
|
|
enable_verbose_mode=yes)
|
2002-12-08 14:17:17 -05:00
|
|
|
|
|
|
|
if test x$enable_verbose_mode = xyes; then
|
|
|
|
AC_DEFINE(WITH_VERBOSE_MODE,1,[Build with verbose mode support])
|
|
|
|
fi
|
|
|
|
|
2004-11-10 02:59:38 -05:00
|
|
|
AC_ARG_ENABLE(sm,
|
|
|
|
AC_HELP_STRING([--disable-sm],
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
[disable mutter's session management support, for embedded/size-sensitive custom non-GNOME builds]),,
|
2004-11-10 02:59:38 -05:00
|
|
|
enable_sm=auto)
|
2002-12-08 14:17:17 -05:00
|
|
|
|
2004-11-10 02:59:38 -05:00
|
|
|
AC_ARG_ENABLE(startup-notification,
|
|
|
|
AC_HELP_STRING([--disable-startup-notification],
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
[disable mutter's startup notification support, for embedded/size-sensitive custom non-GNOME builds]),,
|
2004-11-10 02:59:38 -05:00
|
|
|
enable_startup_notification=auto)
|
2002-12-08 14:17:17 -05:00
|
|
|
|
2010-02-11 10:28:20 -05:00
|
|
|
AC_ARG_WITH(libcanberra,
|
|
|
|
AC_HELP_STRING([--without-libcanberra],
|
|
|
|
[disable the use of libcanberra for playing sounds]),,
|
|
|
|
with_libcanberra=auto)
|
|
|
|
|
2004-11-10 02:59:38 -05:00
|
|
|
AC_ARG_ENABLE(xsync,
|
|
|
|
AC_HELP_STRING([--disable-xsync],
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
[disable mutter's use of the XSync extension]),,
|
2004-11-10 02:59:38 -05:00
|
|
|
enable_xsync=auto)
|
2002-12-09 22:23:04 -05:00
|
|
|
|
2004-11-10 02:59:38 -05:00
|
|
|
AC_ARG_ENABLE(shape,
|
|
|
|
AC_HELP_STRING([--disable-shape],
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
[disable mutter's use of the shaped window extension]),,
|
2004-11-10 02:59:38 -05:00
|
|
|
enable_shape=auto)
|
2003-01-11 13:09:12 -05:00
|
|
|
|
2002-07-23 15:12:02 -04:00
|
|
|
## try definining HAVE_BACKTRACE
|
|
|
|
AC_CHECK_HEADERS(execinfo.h, [AC_CHECK_FUNCS(backtrace)])
|
|
|
|
|
2001-12-09 17:41:12 -05:00
|
|
|
AM_GLIB_GNU_GETTEXT
|
2001-06-02 00:14:18 -04:00
|
|
|
|
|
|
|
## here we get the flags we'll actually use
|
2009-08-19 18:41:00 -04:00
|
|
|
# GRegex requires Glib-2.14.0
|
|
|
|
PKG_CHECK_MODULES(ALL, glib-2.0 >= 2.14.0)
|
2009-07-16 17:54:06 -04:00
|
|
|
# gtk_window_set_icon_name requires gtk2+-2.6.0
|
2010-10-25 14:44:30 -04:00
|
|
|
PKG_CHECK_MODULES(MUTTER_MESSAGE, gtk+-3.0 >= $GTK_MIN_VERSION)
|
|
|
|
PKG_CHECK_MODULES(MUTTER_WINDOW_DEMO, gtk+-3.0 >= $GTK_MIN_VERSION)
|
2002-12-08 14:17:17 -05:00
|
|
|
|
2007-10-03 02:53:29 -04:00
|
|
|
# Unconditionally use this dir to avoid a circular dep with gnomecc
|
|
|
|
GNOME_KEYBINDINGS_KEYSDIR="${datadir}/gnome-control-center/keybindings"
|
2007-07-23 22:41:33 -04:00
|
|
|
AC_SUBST(GNOME_KEYBINDINGS_KEYSDIR)
|
|
|
|
|
2004-07-01 15:38:03 -04:00
|
|
|
STARTUP_NOTIFICATION_VERSION=0.7
|
2002-12-08 14:17:17 -05:00
|
|
|
AC_MSG_CHECKING([Startup notification library >= $STARTUP_NOTIFICATION_VERSION])
|
2002-10-25 19:35:50 -04:00
|
|
|
if $PKG_CONFIG --atleast-version $STARTUP_NOTIFICATION_VERSION libstartup-notification-1.0; then
|
2002-12-08 14:17:17 -05:00
|
|
|
have_startup_notification=yes
|
|
|
|
else
|
|
|
|
have_startup_notification=no
|
|
|
|
fi
|
|
|
|
AC_MSG_RESULT($have_startup_notification)
|
|
|
|
|
|
|
|
if test x$enable_startup_notification = xyes; then
|
|
|
|
have_startup_notification=yes
|
|
|
|
echo "startup-notification support forced on"
|
|
|
|
elif test x$enable_startup_notification = xauto; then
|
|
|
|
true
|
|
|
|
else
|
|
|
|
have_startup_notification=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x$have_startup_notification = xyes; then
|
2002-10-25 19:35:50 -04:00
|
|
|
echo "Building with libstartup-notification"
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_PC_MODULES="$MUTTER_PC_MODULES libstartup-notification-1.0 >= $STARTUP_NOTIFICATION_VERSION"
|
2002-12-08 14:17:17 -05:00
|
|
|
AC_DEFINE(HAVE_STARTUP_NOTIFICATION, , [Building with startup notification support])
|
2002-10-25 19:35:50 -04:00
|
|
|
else
|
|
|
|
echo "Building without libstartup-notification"
|
|
|
|
fi
|
|
|
|
|
2010-02-11 10:28:20 -05:00
|
|
|
have_libcanberra=no
|
|
|
|
AC_MSG_CHECKING([libcanberra-gtk])
|
|
|
|
if test x$with_libcanberra = xno ; then
|
|
|
|
AC_MSG_RESULT([disabled])
|
|
|
|
else
|
2010-10-05 09:54:34 -04:00
|
|
|
if $PKG_CONFIG --exists $CANBERRA_GTK '>=' $CANBERRA_GTK_VERSION; then
|
2010-02-11 10:28:20 -05:00
|
|
|
have_libcanberra=yes
|
|
|
|
AC_MSG_RESULT(yes)
|
2010-06-19 12:39:48 -04:00
|
|
|
MUTTER_PC_MODULES="$MUTTER_PC_MODULES $CANBERRA_GTK"
|
2010-02-11 10:28:20 -05:00
|
|
|
AC_DEFINE([HAVE_LIBCANBERRA], 1, [Building with libcanberra for playing sounds])
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
if test x$with_libcanberra = xyes ; then
|
|
|
|
AC_MSG_ERROR([libcanberra forced and libcanberra-gtk was not found])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2005-01-28 11:45:48 -05:00
|
|
|
XCOMPOSITE_VERSION=0.2
|
2008-11-23 15:23:57 -05:00
|
|
|
|
2009-05-07 17:56:27 -04:00
|
|
|
AC_MSG_CHECKING([Xcomposite >= $XCOMPOSITE_VERSION])
|
|
|
|
if $PKG_CONFIG --atleast-version $XCOMPOSITE_VERSION xcomposite; then
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_PC_MODULES="$MUTTER_PC_MODULES xcomposite >= $XCOMPOSITE_VERSION xfixes xrender xdamage"
|
2008-12-01 17:54:57 -05:00
|
|
|
AC_DEFINE(HAVE_COMPOSITE_EXTENSIONS, 1, [Building with compositing manager support])
|
2008-11-23 15:23:57 -05:00
|
|
|
echo "Building with compositing manager"
|
2004-08-26 22:17:49 -04:00
|
|
|
|
|
|
|
## force on render also
|
|
|
|
have_xrender=yes
|
2003-11-15 23:20:17 -05:00
|
|
|
else
|
2009-05-07 17:56:27 -04:00
|
|
|
AC_MSG_ERROR([no. Mutter requires the Xcomposite extension to build.])
|
2004-08-26 22:17:49 -04:00
|
|
|
fi
|
|
|
|
|
2011-07-13 09:01:05 -04:00
|
|
|
CLUTTER_VERSION=1.7.5
|
2009-07-29 13:04:18 -04:00
|
|
|
CLUTTER_PACKAGE=clutter-1.0
|
2008-10-28 06:45:45 -04:00
|
|
|
AC_SUBST(CLUTTER_PACKAGE)
|
2009-05-07 17:56:27 -04:00
|
|
|
if $PKG_CONFIG --atleast-version $CLUTTER_VERSION $CLUTTER_PACKAGE ; then
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_PC_MODULES="$MUTTER_PC_MODULES $CLUTTER_PACKAGE "
|
2008-09-18 11:09:11 -04:00
|
|
|
PKG_CHECK_MODULES(CLUTTER, $CLUTTER_PACKAGE)
|
2008-08-20 05:31:10 -04:00
|
|
|
AC_DEFINE(WITH_CLUTTER, , [Building with Clutter compositor])
|
2009-05-07 17:56:27 -04:00
|
|
|
else
|
|
|
|
AC_MSG_ERROR([no. Mutter requires Clutter version $CLUTTER_VERSION.])
|
2008-08-20 05:31:10 -04:00
|
|
|
fi
|
|
|
|
|
2011-03-05 15:01:33 -05:00
|
|
|
INTROSPECTION_VERSION=0.9.5
|
|
|
|
GOBJECT_INTROSPECTION_CHECK([$INTROSPECTION_VERSION])
|
|
|
|
|
|
|
|
if test x$found_introspection != xno; then
|
|
|
|
AC_DEFINE(HAVE_INTROSPECTION, 1, [Define if GObject introspection is available])
|
|
|
|
MUTTER_PC_MODULES="$MUTTER_PC_MODULES gobject-introspection-1.0"
|
2011-07-01 19:19:11 -04:00
|
|
|
# Since we don't make any guarantees about stability and we don't support
|
|
|
|
# parallel install, there's no real reason to change directories, filenames,
|
|
|
|
# etc. as we change the Mutter tarball version. Note that this must match
|
|
|
|
# api_version in src/Makefile.am
|
|
|
|
META_GIR=Meta_3_0_gir
|
|
|
|
# META_GIR=[Meta_]mutter_major_version[_]mutter_minor_version[_gir]
|
2011-03-05 15:01:33 -05:00
|
|
|
AC_SUBST(META_GIR)
|
2008-11-01 13:40:29 -04:00
|
|
|
fi
|
|
|
|
|
2005-07-18 00:13:12 -04:00
|
|
|
AC_MSG_CHECKING([Xcursor])
|
|
|
|
if $PKG_CONFIG xcursor; then
|
|
|
|
have_xcursor=yes
|
|
|
|
else
|
|
|
|
have_xcursor=no
|
|
|
|
fi
|
|
|
|
AC_MSG_RESULT($have_xcursor)
|
|
|
|
|
|
|
|
if test x$have_xcursor = xyes; then
|
|
|
|
echo "Building with Xcursor"
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_PC_MODULES="$MUTTER_PC_MODULES xcursor"
|
2008-08-18 07:02:14 -04:00
|
|
|
AC_DEFINE(HAVE_XCURSOR, , [Building with Xcursor support])
|
2005-07-18 00:13:12 -04:00
|
|
|
fi
|
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
PKG_CHECK_MODULES(MUTTER, $MUTTER_PC_MODULES)
|
2002-12-08 14:17:17 -05:00
|
|
|
|
2002-03-04 12:24:15 -05:00
|
|
|
AC_PATH_XTRA
|
|
|
|
|
2002-09-27 16:28:34 -04:00
|
|
|
ALL_X_LIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
|
|
|
|
|
|
|
|
# Check for Xinerama extension (Solaris impl or Xfree impl)
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
mutter_save_cppflags="$CPPFLAGS"
|
2002-07-24 10:47:52 -04:00
|
|
|
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
|
2002-04-21 15:35:02 -04:00
|
|
|
|
2004-11-10 02:59:38 -05:00
|
|
|
AC_ARG_ENABLE(xinerama,
|
|
|
|
AC_HELP_STRING([--disable-xinerama],
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
[disable mutter's use of the Xinerama extension]),
|
2004-11-10 02:59:38 -05:00
|
|
|
try_xinerama=$enable_xinerama,try_xinerama=yes)
|
2004-02-15 00:17:34 -05:00
|
|
|
|
2002-10-25 19:35:50 -04:00
|
|
|
use_solaris_xinerama=no
|
|
|
|
use_xfree_xinerama=no
|
2004-02-15 00:17:34 -05:00
|
|
|
if test "${try_xinerama}" != no; then
|
|
|
|
case "$host" in
|
|
|
|
*-*-solaris*)
|
|
|
|
# Check for solaris
|
|
|
|
use_solaris_xinerama=yes
|
|
|
|
AC_CHECK_LIB(Xext, XineramaGetInfo,
|
|
|
|
use_solaris_xinerama=yes, use_solaris_xinerama=no,
|
|
|
|
$ALL_X_LIBS)
|
|
|
|
if test "x$use_solaris_xinerama" = "xyes"; then
|
|
|
|
AC_CHECK_HEADER(X11/extensions/xinerama.h,
|
|
|
|
if test -z "`echo $ALL_X_LIBS | grep "\-lXext" 2> /dev/null`"; then
|
|
|
|
X_EXTRA_LIBS="-lXext $X_EXTRA_LIBS"
|
|
|
|
fi
|
|
|
|
AC_DEFINE(HAVE_SOLARIS_XINERAMA, , [Have Solaris-style Xinerama])
|
|
|
|
AC_DEFINE(HAVE_XINERAMA, , [Have some version of Xinerama]),
|
|
|
|
use_solaris_xinerama=no,
|
|
|
|
[#include <X11/Xlib.h>])
|
2008-08-18 07:02:14 -04:00
|
|
|
fi
|
2004-02-15 00:17:34 -05:00
|
|
|
AC_MSG_CHECKING(for Xinerama support on Solaris)
|
|
|
|
AC_MSG_RESULT($use_solaris_xinerama);
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# Check for XFree
|
|
|
|
use_xfree_xinerama=yes
|
|
|
|
AC_CHECK_LIB(Xinerama, XineramaQueryExtension,
|
|
|
|
[AC_CHECK_HEADER(X11/extensions/Xinerama.h,
|
2008-08-18 07:02:14 -04:00
|
|
|
X_EXTRA_LIBS="-lXinerama $X_EXTRA_LIBS"
|
2004-02-15 00:17:34 -05:00
|
|
|
if test -z "`echo $ALL_X_LIBS | grep "\-lXext" 2> /dev/null`"; then
|
|
|
|
X_EXTRA_LIBS="-lXext $X_EXTRA_LIBS"
|
|
|
|
fi
|
|
|
|
AC_DEFINE(HAVE_XFREE_XINERAMA, , [Have XFree86-style Xinerama])
|
2008-08-18 07:02:14 -04:00
|
|
|
AC_DEFINE(HAVE_XINERAMA,, [Have some version of Xinerama]),
|
2004-02-15 00:17:34 -05:00
|
|
|
use_xfree_xinerama=no,
|
|
|
|
[#include <X11/Xlib.h>])],
|
|
|
|
use_xfree_xinerama=no, -lXext $ALL_X_LIBS)
|
|
|
|
AC_MSG_CHECKING(for Xinerama support on XFree86)
|
|
|
|
AC_MSG_RESULT($use_xfree_xinerama);
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2002-09-27 16:28:34 -04:00
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
CPPFLAGS="$mutter_save_cppflags"
|
2002-04-21 15:35:02 -04:00
|
|
|
|
2002-05-30 20:02:54 -04:00
|
|
|
SHAPE_LIBS=
|
2002-10-25 19:35:50 -04:00
|
|
|
found_shape=no
|
2002-05-30 20:02:54 -04:00
|
|
|
AC_CHECK_LIB(Xext, XShapeQueryExtension,
|
2002-10-27 10:15:27 -05:00
|
|
|
[AC_CHECK_HEADER(X11/extensions/shape.h,
|
|
|
|
SHAPE_LIBS=-lXext found_shape=yes)],
|
2002-09-27 16:28:34 -04:00
|
|
|
, $ALL_X_LIBS)
|
2002-05-30 20:02:54 -04:00
|
|
|
|
2003-01-11 13:09:12 -05:00
|
|
|
if test x$enable_shape = xno; then
|
|
|
|
found_shape=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x$enable_shape = xyes; then
|
|
|
|
if test "$found_shape" = "no"; then
|
|
|
|
AC_MSG_ERROR([--enable-shape forced and Shape not found])
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2002-10-27 10:15:27 -05:00
|
|
|
if test "x$found_shape" = "xyes"; then
|
2002-12-08 14:17:17 -05:00
|
|
|
AC_DEFINE(HAVE_SHAPE, , [Have the shape extension library])
|
2002-05-30 20:02:54 -04:00
|
|
|
fi
|
|
|
|
|
2003-01-28 10:07:43 -05:00
|
|
|
found_xkb=no
|
|
|
|
AC_CHECK_LIB(X11, XkbQueryExtension,
|
|
|
|
[AC_CHECK_HEADER(X11/XKBlib.h,
|
|
|
|
found_xkb=yes)],
|
|
|
|
, $ALL_X_LIBS)
|
|
|
|
|
|
|
|
if test "x$found_xkb" = "xyes"; then
|
|
|
|
AC_DEFINE(HAVE_XKB, , [Have keyboard extension library])
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2002-10-04 14:31:54 -04:00
|
|
|
RANDR_LIBS=
|
2002-10-25 19:35:50 -04:00
|
|
|
found_randr=no
|
2002-10-04 14:31:54 -04:00
|
|
|
AC_CHECK_LIB(Xrandr, XRRUpdateConfiguration,
|
2002-10-27 10:15:27 -05:00
|
|
|
[AC_CHECK_HEADER(X11/extensions/Xrandr.h,
|
|
|
|
RANDR_LIBS=-lXrandr found_randr=yes,,
|
|
|
|
[#include <X11/Xlib.h>])],
|
2003-09-29 19:23:46 -04:00
|
|
|
, -lXrender -lXext $ALL_X_LIBS)
|
2002-10-04 14:31:54 -04:00
|
|
|
|
2002-10-27 10:15:27 -05:00
|
|
|
if test "x$found_randr" = "xyes"; then
|
2002-12-08 14:17:17 -05:00
|
|
|
AC_DEFINE(HAVE_RANDR, , [Have the Xrandr extension library])
|
2002-10-04 14:31:54 -04:00
|
|
|
fi
|
2002-07-24 10:47:52 -04:00
|
|
|
|
2002-12-09 22:23:04 -05:00
|
|
|
XSYNC_LIBS=
|
|
|
|
found_xsync=no
|
|
|
|
AC_CHECK_LIB(Xext, XSyncQueryExtension,
|
|
|
|
[AC_CHECK_HEADER(X11/extensions/sync.h,
|
|
|
|
found_xsync=yes,,
|
|
|
|
[#include <X11/Xlib.h>])],
|
|
|
|
, $ALL_X_LIBS)
|
|
|
|
|
|
|
|
if test x$enable_xsync = xno; then
|
|
|
|
found_xsync=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x$enable_xsync = xyes; then
|
|
|
|
if test "$found_xsync" = "no"; then
|
|
|
|
AC_MSG_ERROR([--enable-xsync forced and XSync not found])
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "x$found_xsync" = "xyes"; then
|
|
|
|
XSYNC_LIBS=-lXext
|
|
|
|
AC_DEFINE(HAVE_XSYNC, , [Have the Xsync extension library])
|
|
|
|
fi
|
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_LIBS="$MUTTER_LIBS $XSYNC_LIBS $RANDR_LIBS $SHAPE_LIBS $X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS -lm"
|
|
|
|
MUTTER_MESSAGE_LIBS="$MUTTER_MESSAGE_LIBS $X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
|
2010-02-04 05:05:23 -05:00
|
|
|
MUTTER_WINDOW_DEMO_LIBS="$MUTTER_WINDOW_DEMO_LIBS $X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS -lm"
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_PROPS_LIBS="$MUTTER_PROPS_LIBS $X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
|
2002-03-04 12:24:15 -05:00
|
|
|
|
2002-10-25 19:35:50 -04:00
|
|
|
found_sm=no
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
case "$MUTTER_LIBS" in
|
2001-06-22 02:21:44 -04:00
|
|
|
*-lSM*)
|
2002-10-25 19:35:50 -04:00
|
|
|
found_sm=yes
|
2001-06-22 02:21:44 -04:00
|
|
|
;;
|
|
|
|
*)
|
2008-08-18 07:02:14 -04:00
|
|
|
AC_CHECK_LIB(SM, SmcSaveYourselfDone,
|
2001-11-20 18:51:13 -05:00
|
|
|
[AC_CHECK_HEADERS(X11/SM/SMlib.h,
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_LIBS="-lSM -lICE $MUTTER_LIBS" found_sm=yes)],
|
|
|
|
, $MUTTER_LIBS)
|
2001-06-22 02:21:44 -04:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2002-12-08 14:17:17 -05:00
|
|
|
if test x$enable_sm = xno; then
|
|
|
|
found_sm=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x$enable_sm = xyes; then
|
|
|
|
if test "$found_sm" = "no"; then
|
|
|
|
AC_MSG_ERROR([--enable-sm forced and -lSM not found])
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2002-10-25 19:35:50 -04:00
|
|
|
if test "$found_sm" = "yes"; then
|
2002-12-08 14:17:17 -05:00
|
|
|
AC_DEFINE(HAVE_SM, , [Building with SM support])
|
2001-06-22 02:21:44 -04:00
|
|
|
fi
|
|
|
|
|
2008-08-18 07:02:14 -04:00
|
|
|
AM_CONDITIONAL(HAVE_SM, test "$found_sm" = "yes")
|
2001-09-15 20:30:45 -04:00
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
HOST_ALIAS=$host_alias
|
|
|
|
AC_SUBST(HOST_ALIAS)
|
|
|
|
|
2001-09-17 00:42:37 -04:00
|
|
|
AC_PATH_PROG(GDK_PIXBUF_CSOURCE, gdk-pixbuf-csource, no)
|
|
|
|
|
|
|
|
if test x"$GDK_PIXBUF_CSOURCE" = xno; then
|
|
|
|
AC_MSG_ERROR([gdk-pixbuf-csource executable not found in your path - should be installed with GTK])
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_SUBST(GDK_PIXBUF_CSOURCE)
|
|
|
|
|
2008-08-18 07:02:14 -04:00
|
|
|
if test x$enable_gconf = xyes; then
|
2002-12-08 14:17:17 -05:00
|
|
|
AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
|
|
|
|
if test x"$GCONFTOOL" = xno; then
|
|
|
|
AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf])
|
|
|
|
fi
|
2001-12-09 17:41:12 -05:00
|
|
|
|
2002-12-08 14:17:17 -05:00
|
|
|
AM_GCONF_SOURCE_2
|
Fix various initialization and default issues, especially for
2006-01-20 Elijah Newren <newren gmail com>
Fix various initialization and default issues, especially for
--disable-gconf. Make --disable-gconf actually work. #326661.
* configure.in: Fix compilation with --disable-gconf
* src/metacity.schemas.in: Add a note that if any defaults are
changed in this file, src/prefs.c may need to be updated to
reflect the change
* src/prefs.c: set various static global vars to the right default
value, (meta_prefs_init): get the titlebar_font and current_theme
handled better when not using gconf, (struct MetaSimpleKeyMapping,
screen_string_bindings, window_string_bindings): helper vars to
allow some keybindings to work even without gconf,
(init_bindings): initialize bindings for the without-gconf case
too, (init_commands): make sure these are all NULL for the
non-gconf case so that we don't access random memory,
(init_workspace_names): just give these all a default name for the
non-gconf case,
(meta_prefs_change_workspace_name): actually change the name for
the non-gconf case too
2006-01-20 17:42:25 -05:00
|
|
|
else
|
|
|
|
GCONF_SCHEMAS_INSTALL_TRUE='#'
|
|
|
|
GCONF_SCHEMAS_INSTALL_FALSE=
|
2001-12-09 17:41:12 -05:00
|
|
|
fi
|
|
|
|
|
2008-11-08 13:51:56 -05:00
|
|
|
AC_PATH_PROG(ZENITY, zenity, no)
|
|
|
|
if test x"$ZENITY" = xno; then
|
|
|
|
AC_MSG_ERROR([zenity not found in your path - needed for dialogs])
|
|
|
|
fi
|
2008-10-17 21:52:39 -04:00
|
|
|
|
Merge compositor branch.
2007-12-18 Iain Holmes <iain@gnome.org>
* configure.in, src/theme.c, src/display.c,
src/theme.h, src/display.h, src/theme-parser.c,
src/compositor.c, src/c-screen.c, src/compositor.h,
src/c-screen.h, src/ui.c, src/screen.c, src/ui.h,
src/screen.h, src/c-window.c, src/c-window.h,
src/theme-viewer.c, src/Makefile.am: Merge compositor branch.
svn path=/trunk/; revision=3483
2007-12-18 22:49:50 -05:00
|
|
|
AC_ARG_ENABLE(debug,
|
|
|
|
[ --enable-debug enable debugging],,
|
|
|
|
enable_debug=no)
|
|
|
|
if test "x$enable_debug" = "xyes"; then
|
2008-11-22 14:02:54 -05:00
|
|
|
CFLAGS="$CFLAGS -g -O"
|
Merge compositor branch.
2007-12-18 Iain Holmes <iain@gnome.org>
* configure.in, src/theme.c, src/display.c,
src/theme.h, src/display.h, src/theme-parser.c,
src/compositor.c, src/c-screen.c, src/compositor.h,
src/c-screen.h, src/ui.c, src/screen.c, src/ui.h,
src/screen.h, src/c-window.c, src/c-window.h,
src/theme-viewer.c, src/Makefile.am: Merge compositor branch.
svn path=/trunk/; revision=3483
2007-12-18 22:49:50 -05:00
|
|
|
fi
|
2008-10-29 06:28:48 -04:00
|
|
|
|
2010-07-05 17:52:51 -04:00
|
|
|
# For fix-meta-rectangle.py
|
|
|
|
AM_PATH_PYTHON([2.5])
|
|
|
|
|
2008-10-17 21:52:39 -04:00
|
|
|
# Use gnome-doc-utils:
|
2008-12-01 17:54:57 -05:00
|
|
|
GNOME_DOC_INIT([0.8.0])
|
2008-10-17 21:52:39 -04:00
|
|
|
|
2010-11-22 09:50:47 -05:00
|
|
|
#### Warnings (last since -Werror can disturb other tests)
|
|
|
|
|
|
|
|
# Stay command-line compatible with the gnome-common configure option. Here
|
|
|
|
# minimum/yes/maximum are the same, however.
|
|
|
|
AC_ARG_ENABLE(compile_warnings,
|
|
|
|
AS_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@],[Turn on compiler warnings]),,
|
|
|
|
enable_compile_warnings=error)
|
|
|
|
|
|
|
|
changequote(,)dnl
|
|
|
|
if test "$enable_compile_warnings" != no ; then
|
|
|
|
if test "x$GCC" = "xyes"; then
|
|
|
|
case " $CFLAGS " in
|
|
|
|
*[\ \ ]-Wall[\ \ ]*) ;;
|
|
|
|
*) CFLAGS="$CFLAGS -Wall" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# case " $CFLAGS " in
|
|
|
|
# *[\ \ ]-Wshadow[\ \ ]*) ;;
|
|
|
|
# *) CFLAGS="$CFLAGS -Wshadow" ;;
|
|
|
|
# esac
|
|
|
|
|
|
|
|
case " $CFLAGS " in
|
|
|
|
*[\ \ ]-Wchar-subscripts[\ \ ]*) ;;
|
|
|
|
*) CFLAGS="$CFLAGS -Wchar-subscripts" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case " $CFLAGS " in
|
|
|
|
*[\ \ ]-Wmissing-declarations[\ \ ]*) ;;
|
|
|
|
*) CFLAGS="$CFLAGS -Wmissing-declarations" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case " $CFLAGS " in
|
|
|
|
*[\ \ ]-Wmissing-prototypes[\ \ ]*) ;;
|
|
|
|
*) CFLAGS="$CFLAGS -Wmissing-prototypes" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case " $CFLAGS " in
|
|
|
|
*[\ \ ]-Wnested-externs[\ \ ]*) ;;
|
|
|
|
*) CFLAGS="$CFLAGS -Wnested-externs" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case " $CFLAGS " in
|
|
|
|
*[\ \ ]-Wpointer-arith[\ \ ]*) ;;
|
|
|
|
*) CFLAGS="$CFLAGS -Wpointer-arith" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case " $CFLAGS " in
|
|
|
|
*[\ \ ]-Wcast-align[\ \ ]*) ;;
|
|
|
|
*) CFLAGS="$CFLAGS -Wcast-align" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case " $CFLAGS " in
|
|
|
|
*[\ \ ]-Wsign-compare[\ \ ]*) ;;
|
|
|
|
*) CFLAGS="$CFLAGS -Wsign-compare" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if test "$enable_compile_warnings" = error; then
|
|
|
|
case " $CFLAGS " in
|
|
|
|
*[\ \ ]-Werror[\ \ ]*) ;;
|
|
|
|
*) CFLAGS="$CFLAGS -Werror" ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
changequote([,])dnl
|
|
|
|
|
2004-11-10 02:59:38 -05:00
|
|
|
AC_CONFIG_FILES([
|
2001-06-02 00:14:18 -04:00
|
|
|
Makefile
|
2002-11-19 23:57:47 -05:00
|
|
|
doc/Makefile
|
2005-01-25 18:28:55 -05:00
|
|
|
doc/man/Makefile
|
2001-06-02 00:14:18 -04:00
|
|
|
src/Makefile
|
2001-08-03 00:20:27 -04:00
|
|
|
src/wm-tester/Makefile
|
2011-03-12 11:07:09 -05:00
|
|
|
src/libmutter.pc
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
src/mutter-plugins.pc
|
2001-10-15 00:14:58 -04:00
|
|
|
src/tools/Makefile
|
2009-05-07 17:56:27 -04:00
|
|
|
src/compositor/plugins/Makefile
|
2002-02-08 01:50:09 -05:00
|
|
|
po/Makefile.in
|
2001-06-02 00:14:18 -04:00
|
|
|
])
|
2002-10-25 19:35:50 -04:00
|
|
|
|
2004-11-10 02:59:38 -05:00
|
|
|
AC_OUTPUT
|
|
|
|
|
2002-12-08 14:17:17 -05:00
|
|
|
if test x$enable_gconf = xno; then
|
|
|
|
echo "*** WARNING WARNING WARNING WARNING WARNING"
|
2006-05-12 13:46:53 -04:00
|
|
|
echo "*** Building without GConf. This means there's no"
|
|
|
|
echo "*** way to change prefs except hacking source code."
|
2002-12-08 14:17:17 -05:00
|
|
|
echo "*** This is intended for embedded systems etc., not for normal use."
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x$enable_verbose_mode = xno; then
|
|
|
|
echo "*** WARNING WARNING WARNING WARNING WARNING"
|
|
|
|
echo "*** Building without verbose mode"
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
echo "*** This means there's no way to debug mutter problems."
|
|
|
|
echo "*** Please build normal desktop versions of mutter"
|
2002-12-08 14:17:17 -05:00
|
|
|
echo "*** with verbose mode enabled so users can use it when they report bugs."
|
|
|
|
fi
|
|
|
|
|
2002-10-25 19:35:50 -04:00
|
|
|
dnl ==========================================================================
|
|
|
|
echo "
|
2010-10-25 14:44:30 -04:00
|
|
|
mutter-$VERSION
|
2002-10-25 19:35:50 -04:00
|
|
|
|
2002-12-01 15:48:10 -05:00
|
|
|
prefix: ${prefix}
|
|
|
|
source code location: ${srcdir}
|
|
|
|
compiler: ${CC}
|
|
|
|
|
2002-12-08 14:17:17 -05:00
|
|
|
GConf: ${enable_gconf}
|
2002-12-01 15:48:10 -05:00
|
|
|
XFree86 Xinerama: ${use_xfree_xinerama}
|
|
|
|
Solaris Xinerama: ${use_solaris_xinerama}
|
2002-12-08 14:17:17 -05:00
|
|
|
Startup notification: ${have_startup_notification}
|
2010-02-11 10:28:20 -05:00
|
|
|
libcanberra: ${have_libcanberra}
|
2011-03-05 15:01:33 -05:00
|
|
|
Introspection: ${found_introspection}
|
2002-12-01 15:48:10 -05:00
|
|
|
Session management: ${found_sm}
|
|
|
|
Shape extension: ${found_shape}
|
2002-12-09 22:23:04 -05:00
|
|
|
Xsync: ${found_xsync}
|
2005-07-18 00:13:12 -04:00
|
|
|
Xcursor: ${have_xcursor}
|
2002-10-25 19:35:50 -04:00
|
|
|
"
|
2006-09-18 12:18:37 -04:00
|
|
|
|
2009-08-04 11:16:20 -04:00
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_MINOR_VERSION=mutter_minor_version
|
2009-08-04 11:16:20 -04:00
|
|
|
if expr $MUTTER_MINOR_VERSION % 2 > /dev/null ; then
|
|
|
|
stable_version=`expr $MUTTER_MINOR_VERSION - 1`
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
echo "This is the UNSTABLE branch of mutter"
|
2006-09-18 12:18:37 -04:00
|
|
|
echo -n "Use 2.$stable_version.x for stable "
|
2010-11-22 02:19:56 -05:00
|
|
|
echo "(gnome-2-$stable_version branch in git)"
|
2006-09-18 12:18:37 -04:00
|
|
|
else
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
echo "This is the stable branch of mutter"
|
2006-09-18 12:18:37 -04:00
|
|
|
fi
|