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

Collapse All | Expand All

(-)configure.ac (-3 / +21 lines)
Lines 475-482 Link Here
475
475
476
476
477
# optionally build the charmap plugin if gucharmap is available
477
# optionally build the charmap plugin if gucharmap is available
478
AC_ARG_ENABLE(
479
	[charmap],
480
	AS_HELP_STRING(
481
		[--enable-charmap],
482
		[enable (or disable) the charmap plugin needs gucharmap @<:@default=no@:>@]
483
	)
484
)
485
486
AS_IF([test "x$enable_charmap" = "xyes"],
487
[
478
AC_MSG_CHECKING([for optional libgucharmap development files])
488
AC_MSG_CHECKING([for optional libgucharmap development files])
479
if test "x$have_gtk3" = "xyes"; then
489
AS_IF([test "x$have_gtk3" = "xyes"],
490
[
480
	PKG_CHECK_MODULES(
491
	PKG_CHECK_MODULES(
481
		[CHARMAP_PLUGIN],
492
		[CHARMAP_PLUGIN],
482
		[gucharmap-2.90],
493
		[gucharmap-2.90],
Lines 490-496 Link Here
490
	 		AC_MSG_WARN([Install gucharmap/gucharmap2.90 (>= 2.90) library/headers to build the plugin.])
501
	 		AC_MSG_WARN([Install gucharmap/gucharmap2.90 (>= 2.90) library/headers to build the plugin.])
491
	 	]
502
	 	]
492
	)
503
	)
493
else
504
],
505
[
494
	PKG_CHECK_MODULES(
506
	PKG_CHECK_MODULES(
495
		[CHARMAP_PLUGIN],
507
		[CHARMAP_PLUGIN],
496
		[gucharmap-2],
508
		[gucharmap-2],
Lines 512-518 Link Here
512
	 		]
524
	 		]
513
		)]
525
		)]
514
	)
526
	)
515
fi
527
])
528
],
529
[
530
build_charmap_plugin=no
531
AC_MSG_NOTICE([Disable building charmap plugin.])
532
])
533
516
AM_CONDITIONAL([ENABLE_CHARMAP_PLUGIN], [test "x$build_charmap_plugin" = "xyes"])
534
AM_CONDITIONAL([ENABLE_CHARMAP_PLUGIN], [test "x$build_charmap_plugin" = "xyes"])
517
535
518
AC_SEARCH_LIBS([log10], [m])
536
AC_SEARCH_LIBS([log10], [m])

Return to bug 392295