mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-28 06:56:16 +01:00
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
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])])
|
|
]
|
|
)
|