[glib] Add GSettings m4 macros helper
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] Add GSettings m4 macros helper
- Date: Wed, 21 Apr 2010 15:19:30 +0000 (UTC)
commit 0d322e77a55c3b457361ede40c391a6a0b825c78
Author: Bastien Nocera <hadess hadess net>
Date: Wed Apr 21 12:25:23 2010 +0100
Add GSettings m4 macros helper
https://bugzilla.gnome.org/show_bug.cgi?id=616312
m4macros/Makefile.am | 2 +-
m4macros/gsettings.m4 | 43 +++++++++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+), 1 deletions(-)
---
diff --git a/m4macros/Makefile.am b/m4macros/Makefile.am
index 0284b4e..75a9ca0 100644
--- a/m4macros/Makefile.am
+++ b/m4macros/Makefile.am
@@ -1,6 +1,6 @@
include $(top_srcdir)/Makefile.decl
-installed_m4= glib-2.0.m4 glib-gettext.m4
+installed_m4= glib-2.0.m4 glib-gettext.m4 gsettings.m4
EXTRA_DIST+=$(installed_m4)
diff --git a/m4macros/gsettings.m4 b/m4macros/gsettings.m4
new file mode 100644
index 0000000..254fde8
--- /dev/null
+++ b/m4macros/gsettings.m4
@@ -0,0 +1,43 @@
+dnl AM_GSETTINGS
+dnl Defines GSETTINGS_SCHEMAS_INSTALL which controls whether
+dnl the schema should be compiled
+dnl
+
+AC_DEFUN([AM_GSETTINGS],
+[
+ AC_ARG_ENABLE(schemas-install,
+ AC_HELP_STRING([--disable-schemas-install],
+ [Disable the schemas installation]),
+ [case ${enableval} in
+ yes|no) ;;
+ *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-install]) ;;
+ esac])
+ AM_CONDITIONAL([GSETTINGS_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no])
+
+ AC_SUBST(gsettingsschemadir, [${datadir}/glib-2.0/schemas])
+ AC_SUBST(gsettingsupdateschemacache, `pkg-config --variable gsettingsupdateschemacache gio-2.0`)
+
+ GSETTINGS_CHECK_RULE='
+.PHONY : check-gsettings-schema
+
+gschema_xml_files := $(wildcard *.gschema.xml)
+check-gsettings-schema: gsettings_schema_validate_stamp
+CLEANFILES += gsettings_schema_validate_stamp
+gsettings_schema_validate_stamp: $(gschema_xml_files)
+ $(gsettingsupdateschemacache) --dry-run --schema-files $?
+ touch [$]@
+
+all: check-gsettings-schema
+'
+
+ _GSETTINGS_SUBST(GSETTINGS_CHECK_RULE)
+])
+
+dnl _GSETTINGS_SUBST(VARIABLE)
+dnl Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST
+AC_DEFUN([_GSETTINGS_SUBST],
+[
+AC_SUBST([$1])
+m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
+]
+)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]