File: evo_purify_support.m4

package info (click to toggle)
evolution 3.12.9~git20141130.241663-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 135,148 kB
  • ctags: 42,742
  • sloc: ansic: 398,340; sh: 11,322; xml: 6,861; makefile: 4,982; perl: 164
file content (23 lines) | stat: -rw-r--r-- 909 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dnl EVO_PURIFY_SUPPORT
dnl Add --enable-purify. If the user turns it on, subst PURIFY and set
dnl the automake conditional ENABLE_PURIFY
#serial 0.1
AC_DEFUN([EVO_PURIFY_SUPPORT],
	[AC_ARG_ENABLE([purify],
		[AS_HELP_STRING([--enable-purify],
		[Enable support for building executables with Purify.])],
		[enable_purify=yes],[enable_purify=no])
	AC_PATH_PROG(PURIFY, purify, impure)
	AC_ARG_WITH([purify-options],
		[AS_HELP_STRING([--with-purify-options@<:@=OPTIONS@:>@],
		[Options passed to the purify command line (defaults to PURIFYOPTIONS variable).])])
	if test "x$with_purify_options" = "xno"; then
		with_purify_options="-always-use-cache-dir=yes -cache-dir=/gnome/lib/purify"
	fi
	if test "x$PURIFYOPTIONS" = "x"; then
		PURIFYOPTIONS=$with_purify_options
	fi
	AC_SUBST(PURIFY)
	AM_CONDITIONAL(ENABLE_PURIFY, [test x$enable_purify = xyes -a x$PURIFY != ximpure])
	PURIFY="$PURIFY $PURIFYOPTIONS"
])