Renamed simple plugin to 'default'
This commit is contained in:
parent
cc50d99712
commit
2bcd7c839b
@ -5,11 +5,11 @@ if WITH_CLUTTER
|
|||||||
|
|
||||||
INCLUDES=@METACITY_CFLAGS@ -I $(top_srcdir)/src/include -DMETACITY_LIBEXECDIR=\"$(libexecdir)\" -DHOST_ALIAS=\"@HOST_ALIAS@\" -DMETACITY_LOCALEDIR=\"$(prefix)/@DATADIRNAME@/locale\" -DMETACITY_PKGDATADIR=\"$(pkgdatadir)\" -DMETACITY_DATADIR=\"$(datadir)\" -DG_LOG_DOMAIN=\"metacity\" -DSN_API_NOT_YET_FROZEN=1 -DMETACITY_MAJOR_VERSION=$(METACITY_MAJOR_VERSION) -DMETACITY_MINOR_VERSION=$(METACITY_MINOR_VERSION) -DMETACITY_MICRO_VERSION=$(METACITY_MICRO_VERSION) -DMETACITY_CLUTTER_PLUGIN_API_VERSION=$(METACITY_CLUTTER_PLUGIN_API_VERSION) -DMETACITY_PKGLIBDIR=\"$(pkglibdir)\"
|
INCLUDES=@METACITY_CFLAGS@ -I $(top_srcdir)/src/include -DMETACITY_LIBEXECDIR=\"$(libexecdir)\" -DHOST_ALIAS=\"@HOST_ALIAS@\" -DMETACITY_LOCALEDIR=\"$(prefix)/@DATADIRNAME@/locale\" -DMETACITY_PKGDATADIR=\"$(pkgdatadir)\" -DMETACITY_DATADIR=\"$(datadir)\" -DG_LOG_DOMAIN=\"metacity\" -DSN_API_NOT_YET_FROZEN=1 -DMETACITY_MAJOR_VERSION=$(METACITY_MAJOR_VERSION) -DMETACITY_MINOR_VERSION=$(METACITY_MINOR_VERSION) -DMETACITY_MICRO_VERSION=$(METACITY_MICRO_VERSION) -DMETACITY_CLUTTER_PLUGIN_API_VERSION=$(METACITY_CLUTTER_PLUGIN_API_VERSION) -DMETACITY_PKGLIBDIR=\"$(pkglibdir)\"
|
||||||
|
|
||||||
simple_la_CFLAGS = -fPIC
|
default_la_CFLAGS = -fPIC
|
||||||
simple_la_SOURCES = simple.c
|
default_la_SOURCES = default.c
|
||||||
simple_la_LDFLAGS = -module -avoid-version
|
default_la_LDFLAGS = -module -avoid-version
|
||||||
simple_la_LIBADD = @CLUTTER_LIBS@
|
default_la_LIBADD = @CLUTTER_LIBS@
|
||||||
pkglib_LTLIBRARIES = simple.la
|
pkglib_LTLIBRARIES = default.la
|
||||||
|
|
||||||
# post-install hook to remove the .la and .a files we are not interested in
|
# post-install hook to remove the .la and .a files we are not interested in
|
||||||
# (There is no way to stop libtool generating static libs locally, and we
|
# (There is no way to stop libtool generating static libs locally, and we
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
#define MAP_TIMEOUT 250
|
#define MAP_TIMEOUT 250
|
||||||
#define SWITCH_TIMEOUT 500
|
#define SWITCH_TIMEOUT 500
|
||||||
|
|
||||||
#define ACTOR_DATA_KEY "MCCP-Simple-actor-data"
|
#define ACTOR_DATA_KEY "MCCP-Default-actor-data"
|
||||||
|
|
||||||
typedef struct PluginPrivate PluginPrivate;
|
typedef struct PluginPrivate PluginPrivate;
|
||||||
typedef struct ActorPrivate ActorPrivate;
|
typedef struct ActorPrivate ActorPrivate;
|
||||||
@ -78,7 +78,7 @@ MetaCompositorClutterPlugin META_COMPOSITOR_CLUTTER_PLUGIN_STRUCT =
|
|||||||
.version_api = METACITY_CLUTTER_PLUGIN_API_VERSION,
|
.version_api = METACITY_CLUTTER_PLUGIN_API_VERSION,
|
||||||
|
|
||||||
/* Human readable name (for use in UI) */
|
/* Human readable name (for use in UI) */
|
||||||
.name = "Simple Effects",
|
.name = "Default Effects",
|
||||||
|
|
||||||
/* Which types of events this plugin supports */
|
/* Which types of events this plugin supports */
|
||||||
.features = META_COMPOSITOR_CLUTTER_PLUGIN_MINIMIZE |
|
.features = META_COMPOSITOR_CLUTTER_PLUGIN_MINIMIZE |
|
@ -361,7 +361,7 @@
|
|||||||
<applyto>/apps/metacity/general/clutter_plugins</applyto>
|
<applyto>/apps/metacity/general/clutter_plugins</applyto>
|
||||||
<owner>metacity</owner>
|
<owner>metacity</owner>
|
||||||
<type>list</type>
|
<type>list</type>
|
||||||
<default>[simple]</default>
|
<default>[default]</default>
|
||||||
<locale name="C">
|
<locale name="C">
|
||||||
<short>Clutter Plugins</short>
|
<short>Clutter Plugins</short>
|
||||||
<long>
|
<long>
|
||||||
|
Loading…
Reference in New Issue
Block a user