Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 206041 | Differences between
and this patch

Collapse All | Expand All

(-)nautilus-2.20.0.exempi/configure.in (-8 / +17 lines)
Lines 260-277 Link Here
260
260
261
dnl ==========================================================================
261
dnl ==========================================================================
262
262
263
AM_CONDITIONAL(HAVE_EXEMPI, false)
264
AM_CONDITIONAL(HAVE_EXEMPI_NEW_API, false)
265
263
dnl exempi checking
266
dnl exempi checking
264
267
265
PKG_CHECK_MODULES(EXEMPI, exempi-2.0 >= exempi_minver, [
268
AC_ARG_ENABLE(exempi, [  --disable-exempi        build without exempi support])
266
		  AM_CONDITIONAL(HAVE_EXEMPI, true)
269
msg_exempi=no
267
		  AC_DEFINE(HAVE_EXEMPI, 1, [Define to enable XMP support])
270
	if test "x$enable_exempi" != "xno"; then
268
		  ], [AM_CONDITIONAL(HAVE_EXEMPI, false)])
271
	PKG_CHECK_MODULES(EXEMPI, exempi-2.0 >= exempi_minver, [
272
			  AM_CONDITIONAL(HAVE_EXEMPI, true)
273
			  AC_DEFINE(HAVE_EXEMPI, 1, [Define to enable XMP support])
274
			  ]
275
			  msg_exempi=yes, [AM_CONDITIONAL(HAVE_EXEMPI, false)])
269
276
270
PKG_CHECK_MODULES(EXEMPI_NEW_API, exempi-2.0 >= exempi_minver_newapi,
277
	PKG_CHECK_MODULES(EXEMPI_NEW_API, exempi-2.0 >= exempi_minver_newapi,
271
		  AC_DEFINE(HAVE_EXEMPI_NEW_API, 1, [Define if we have exempi with the new API]), true)
278
			  AC_DEFINE(HAVE_EXEMPI_NEW_API, 1, [Define if we have exempi with the new API]), true)
272
279
273
AC_SUBST(EXEMPI_CFLAGS)
280
	AC_SUBST(EXEMPI_CFLAGS)
274
AC_SUBST(EXEMPI_LIBS)
281
	AC_SUBST(EXEMPI_LIBS)
282
fi
275
283
276
dnl ==========================================================================
284
dnl ==========================================================================
277
dnl search implementations
285
dnl search implementations
Lines 502-507 Link Here
502
	prefix:                 ${prefix}
510
	prefix:                 ${prefix}
503
	source code location:	${srcdir}
511
	source code location:	${srcdir}
504
	compiler:		${CC}
512
	compiler:		${CC}
513
	exempi support:		$msg_exempi
505
	tracker support:	$msg_tracker
514
	tracker support:	$msg_tracker
506
	beagle support:		$msg_beagle
515
	beagle support:		$msg_beagle
507
516

Return to bug 206041