From 0cfeeef6fef9f1f08620edf510f2ee30c9b3aad8 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 13 Aug 2006 14:11:24 +0200 Subject: [PATCH] configure.ac: Check also for gkrellm header and do not try to build para_krell if it gkrellm.h could not be found. --- configure.ac | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 6b143929..eb58bc68 100644 --- a/configure.ac +++ b/configure.ac @@ -182,11 +182,16 @@ fi ########################################################################### gtk2 pkg_modules="gtk+-2.0 >= 2.0.0" -PKG_CHECK_MODULES(GTK, [$pkg_modules], [extras="$extras para_krell.so"], [ - AC_MSG_WARN([gtk+-2 not found, can not build para_krell]) -]) -AC_SUBST(GTK_CFLAGS) -AC_SUBST(GTK_LIBS) +build_para_krell="yes" +PKG_CHECK_MODULES(GTK, [$pkg_modules], [], [build_para_krell="no"]) +AC_CHECK_HEADER(gkrellm2/gkrellm.h, [], [build_para_krell="no"]) +if test build_para_krell = "yes"; then + AC_SUBST(GTK_CFLAGS) + AC_SUBST(GTK_LIBS) + extras="$extras para_krell.so" +else + AC_MSG_WARN([can not build para_krell]) +fi ########################################################################### sdl AC_CHECK_LIB([SDL_image], [SDL_Init], [extras="$extras para_sdl_gui"], [ -- 2.39.2