mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
f68dc4d97d
So we don't use Automake's macro namespace Fixes https://bugzilla.gnome.org/show_bug.cgi?id=616648
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
dnl GLIB_GSETTINGS
|
|
dnl Defines GSETTINGS_SCHEMAS_INSTALL which controls whether
|
|
dnl the schema should be compiled
|
|
dnl
|
|
|
|
AC_DEFUN([GLIB_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(gschema_compile, `pkg-config --variable gschema_compile 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)
|
|
$(gschema_compile) --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])])
|
|
]
|
|
)
|