Blame macros2/gnome-common.m4

Packit Service 0bf00e
# gnome-common.m4
Packit Service 0bf00e
#
Packit Service 0bf00e
# serial 3
Packit Service 0bf00e
# 
Packit Service 0bf00e
Packit Service 0bf00e
AU_DEFUN([GNOME_DEBUG_CHECK],
Packit Service 0bf00e
[
Packit Service 0bf00e
	AX_CHECK_ENABLE_DEBUG([no],[GNOME_ENABLE_DEBUG])
Packit Service 0bf00e
],
Packit Service 0bf00e
[[$0: This macro is deprecated. You should use AX_CHECK_ENABLE_DEBUG instead and
Packit Service 0bf00e
replace uses of GNOME_ENABLE_DEBUG with ENABLE_DEBUG.
Packit Service 0bf00e
See: http://www.gnu.org/software/autoconf-archive/ax_check_enable_debug.html#ax_check_enable_debug]])
Packit Service 0bf00e
Packit Service 0bf00e
dnl GNOME_MAINTAINER_MODE_DEFINES ()
Packit Service 0bf00e
dnl define DISABLE_DEPRECATED
Packit Service 0bf00e
dnl
Packit Service 0bf00e
AU_DEFUN([GNOME_MAINTAINER_MODE_DEFINES],
Packit Service 0bf00e
[
Packit Service 0bf00e
	AC_REQUIRE([AM_MAINTAINER_MODE])
Packit Service 0bf00e
Packit Service 0bf00e
	DISABLE_DEPRECATED=""
Packit Service 0bf00e
	if test $USE_MAINTAINER_MODE = yes; then
Packit Service 0bf00e
	        DOMAINS="GCONF BONOBO BONOBO_UI GNOME LIBGLADE GNOME_VFS WNCK LIBSOUP"
Packit Service 0bf00e
	        for DOMAIN in $DOMAINS; do
Packit Service 0bf00e
	               DISABLE_DEPRECATED="$DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES"
Packit Service 0bf00e
	        done
Packit Service 0bf00e
	fi
Packit Service 0bf00e
Packit Service 0bf00e
	AC_SUBST(DISABLE_DEPRECATED)
Packit Service 0bf00e
],
Packit Service 0bf00e
[[$0: This macro is deprecated. All of the modules it disables deprecations for
Packit Service 0bf00e
are obsolete. Remove it and all uses of DISABLE_DEPRECATED.]])