[Bug 1067] {SuperH} - Konqueror-Embedded failing to go through configure


bugzilla-daemon@...
 

http://bugs.openembedded.org/show_bug.cgi?id=1067





------- Comment #3 from kristoffer_e1@... 2006-10-09 13:30 -------
The bug has reappeard again (no idea why). Done some checking of acinclude.m4
in konqueror-20060404. Basicly if no kde-prefix is given then it asks
kde-config where it should be. Thus if we could supply with fixed(?) we could
do without kde-config. Otherwise it will be quite a hassle to get kde-config
installed and configured properly.

C_DEFUN([KDE_SET_PREFIX],
[
unset CDPATH
dnl We can't give real code to that macro, only a value.
dnl It only matters for --help, since we set the prefix in this function
anyway.
AC_PREFIX_DEFAULT(${KDEDIR:-the kde prefix})

KDE_SET_DEFAULT_BINDIRS
if test "x$prefix" = "xNONE"; then
dnl no prefix given: look for kde-config in the PATH and deduce the prefix
from it
KDE_FIND_PATH(kde-config, KDECONFIG, [$kde_default_bindirs],
[KDE_MISSING_PROG_ERROR(kde-config)], [], prepend)
else
dnl prefix given: look for kde-config, preferrably in prefix, otherwise in
PATH
kde_save_PATH="$PATH"
PATH="$exec_prefix/bin:$prefix/bin:$PATH"
KDE_FIND_PATH(kde-config, KDECONFIG, [$kde_default_bindirs],
[KDE_MISSING_PROG_ERROR(kde-config)], [], prepend)
PATH="$kde_save_PATH"


--
Configure bugmail: http://bugs.openembedded.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.