1From a629b051f4e5462150c77b95574bbc7a33bc9666 Mon Sep 17 00:00:00 2001 2From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> 3Date: Mon, 31 Dec 2012 16:35:29 +0100 4Subject: [PATCH] configure.ac: hard code path to iceauth 5MIME-Version: 1.0 6Content-Type: text/plain; charset=UTF-8 7Content-Transfer-Encoding: 8bit 8 9workaround AC_PATH_PROG which was meant to find programs required at build-time 10not at run-time. 11 12Upstream-Status: Inappropriate [config] 13 14Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> 15--- 16 configure.ac | 8 +------- 17 1 files changed, 1 insertions(+), 7 deletions(-) 18 19diff --git a/configure.ac b/configure.ac 20index 3cf3510..505e744 100644 21--- a/configure.ac 22+++ b/configure.ac 23@@ -111,13 +111,7 @@ XDT_FEATURE_DEBUG([xfsm_debug_default]) 24 dnl Check for linker optimizations 25 XDT_FEATURE_LINKER_OPTS() 26 27-dnl Check for iceauth 28-AC_PATH_PROG([ICEAUTH], [iceauth]) 29-if test x"$ICEAUTH" != x""; then 30- AC_DEFINE_UNQUOTED([ICEAUTH_CMD], ["$ICEAUTH"], [path to iceauth]) 31-else 32- AC_MSG_ERROR([iceauth missing, please check your X11 installation]) 33-fi 34+AC_DEFINE_UNQUOTED([ICEAUTH_CMD], ["$bindir/iceauth"], [path to iceauth]) 35 36 dnl Find a location for the session desktop file 37 AC_MSG_CHECKING([what xsession-prefix to use]) 38-- 391.7.4.4 40 41