aboutsummaryrefslogtreecommitdiff
path: root/m4/gnome-doc-utils.m4
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-03-10 11:05:16 -0600
committerTed Gould <ted@gould.cx>2011-03-10 11:05:16 -0600
commit9aa5445985ebf244681ccfb3bb6f264eb4282bca (patch)
treeb8a4f31686c6339498e34785252ff57016a5f518 /m4/gnome-doc-utils.m4
parent05d9b0b58fa3c9247860f911bb3477cd52665671 (diff)
parentcec350b1d24eeeb308fd02846bf637d4ec92fbb5 (diff)
downloadlibdbusmenu-9aa5445985ebf244681ccfb3bb6f264eb4282bca.tar.gz
libdbusmenu-9aa5445985ebf244681ccfb3bb6f264eb4282bca.tar.bz2
libdbusmenu-9aa5445985ebf244681ccfb3bb6f264eb4282bca.zip
New upstream release.
∘ Add helper to get cached menuitem from widget ∘ Have the GTK Dbusmenu Client handle theme directories (LP: #727325) ∘ Fix a bunch of memory leaks (LP: #722972) ∘ Handle _ in menuitems more correctly when parsing (LP: #621301) ∘ Protect from NULL layout_props (LP: #729722) ∘ Remove the property from the hashtable before signaling that it's been changed (LP: #725603) ∘ Wrap emitted properties in a variant ∘ Fix enum templates so they can be included by other programs without error ∘ Setting the cached menu item (LP: #723463) (LP: #729128) (LP: #729194)
Diffstat (limited to 'm4/gnome-doc-utils.m4')
-rw-r--r--m4/gnome-doc-utils.m456
1 files changed, 0 insertions, 56 deletions
diff --git a/m4/gnome-doc-utils.m4 b/m4/gnome-doc-utils.m4
deleted file mode 100644
index 402bb3e..0000000
--- a/m4/gnome-doc-utils.m4
+++ /dev/null
@@ -1,56 +0,0 @@
-dnl Do not call GNOME_DOC_DEFINES directly. It is split out from
-dnl GNOME_DOC_INIT to allow gnome-doc-utils to bootstrap off itself.
-AC_DEFUN([GNOME_DOC_DEFINES],
-[
-AC_ARG_WITH([help-dir],
- AC_HELP_STRING([--with-help-dir=DIR], [path to help docs]),,
- [with_help_dir='${datadir}/gnome/help'])
-HELP_DIR="$with_help_dir"
-AC_SUBST(HELP_DIR)
-
-AC_ARG_WITH([omf-dir],
- AC_HELP_STRING([--with-omf-dir=DIR], [path to OMF files]),,
- [with_omf_dir='${datadir}/omf'])
-OMF_DIR="$with_omf_dir"
-AC_SUBST(OMF_DIR)
-
-AC_ARG_WITH([help-formats],
- AC_HELP_STRING([--with-help-formats=FORMATS], [list of formats]),,
- [with_help_formats=''])
-DOC_USER_FORMATS="$with_help_formats"
-AC_SUBST(DOC_USER_FORMATS)
-
-AC_ARG_ENABLE([scrollkeeper],
- [AC_HELP_STRING([--disable-scrollkeeper],
- [do not make updates to the scrollkeeper database])],,
- enable_scrollkeeper=yes)
-AM_CONDITIONAL([ENABLE_SK],[test "$gdu_cv_have_gdu" = "yes" -a "$enable_scrollkeeper" = "yes"])
-
-dnl disable scrollkeeper automatically for distcheck
-DISTCHECK_CONFIGURE_FLAGS="--disable-scrollkeeper $DISTCHECK_CONFIGURE_FLAGS"
-AC_SUBST(DISTCHECK_CONFIGURE_FLAGS)
-
-AM_CONDITIONAL([HAVE_GNOME_DOC_UTILS],[test "$gdu_cv_have_gdu" = "yes"])
-])
-
-# GNOME_DOC_INIT ([MINIMUM-VERSION],[ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND])
-#
-AC_DEFUN([GNOME_DOC_INIT],
-[AC_REQUIRE([AC_PROG_LN_S])dnl
-
-ifelse([$1],,[gdu_cv_version_required=0.3.2],[gdu_cv_version_required=$1])
-
-AC_MSG_CHECKING([gnome-doc-utils >= $gdu_cv_version_required])
-PKG_CHECK_EXISTS([gnome-doc-utils >= $gdu_cv_version_required],
- [gdu_cv_have_gdu=yes],[gdu_cv_have_gdu=no])
-
-if test "$gdu_cv_have_gdu" = "yes"; then
- AC_MSG_RESULT([yes])
- ifelse([$2],,[:],[$2])
-else
- AC_MSG_RESULT([no])
- ifelse([$3],,[AC_MSG_ERROR([gnome-doc-utils >= $gdu_cv_version_required not found])],[$3])
-fi
-
-GNOME_DOC_DEFINES
-])