[oe-issues] [Bug 2696] New: konqueror-embedded fails looking for oe_runconf
bugzilla-daemon at tinman.treke.net
bugzilla-daemon at tinman.treke.net
Sat Jul 28 07:56:14 UTC 2007
http://bugs.openembedded.org/show_bug.cgi?id=2696
Summary: konqueror-embedded fails looking for oe_runconf
Product: Openembedded
Version: Angstrom
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: Build
AssignedTo: openembedded-issues at lists.openembedded.org
ReportedBy: jbs at bandos.homelinux.com
Blocks: 2186
Besides failing at the configure step as it can't find oe_runconf,
konqueror-embedded seems to have a serious recursion problem:
${palmtopdir}
NOTE: <type 'exceptions.RuntimeError'>:maximum recursion depth exceeded in cmp
while evaluating:
${exec_prefix}/lib
NOTE: <type 'exceptions.RuntimeError'>:maximum recursion depth exceeded in cmp
while evaluating:
${libdir}/opie
NOTE: <type 'exceptions.RuntimeError'>:maximum recursion depth exceeded in cmp
while evaluating:
${palmtopdir}
NOTE: <type 'exceptions.RuntimeError'>:maximum recursion depth exceeded in cmp
while evaluating:
${exec_prefix}/lib
NOTE: <type 'exceptions.RuntimeError'>:maximum recursion depth exceeded in cmp
while evaluating:
${libdir}/opie
NOTE: <type 'exceptions.RuntimeError'>:maximum recursion depth exceeded in cmp
while evaluating:
${palmtopdir}
NOTE: <type 'exceptions.RuntimeError'>:maximum recursion depth exceeded in cmp
while evaluating:
${exec_prefix}/lib
NOTE: <type 'exceptions.RuntimeError'>:maximum recursion depth exceeded in cmp
while evaluating:
# Purpose: Install a library, in all its forms
# Example
#
# oe_libinstall libltdl ${STAGING_LIBDIR}/
# oe_libinstall -C src/libblah libblah ${D}/${libdir}/
dir=""
libtool=""
silent=""
require_static=""
require_shared=""
staging_install=""
while [ "$#" -gt 0 ]; do
case "$1" in
-C)
shift
dir="$1"
;;
-s)
silent=1
;;
-a)
require_static=1
;;
-so)
require_shared=1
;;
-*)
oefatal "oe_libinstall: unknown option: $1"
;;
*)
break;
;;
esac
shift
done
libname="$1"
shift
destpath="$1"
if [ -z "$destpath" ]; then
oefatal "oe_libinstall: no destination path specified"
fi
if echo "$destpath/" | egrep '^${STAGING_LIBDIR}/' >/dev/null
then
staging_install=1
fi
__runcmd () {
if [ -z "$silent" ]; then
echo >&2 "oe_libinstall: $*"
fi
$*
}
if [ -z "$dir" ]; then
dir=`pwd`
fi
dotlai=$libname.lai
dir=$dir`(cd $dir;find . -name "$dotlai") | sed
"s/^\.//;s/\/$dotlai\$//;q"`
olddir=`pwd`
__runcmd cd $dir
lafile=$libname.la
# If such file doesn't exist, try to cut version suffix
if [ ! -f "$lafile" ]; then
libname=`echo "$libname" | sed 's/-[0-9.]*$//'`
lafile=$libname.la
fi
if [ -f "$lafile" ]; then
# libtool archive
eval `cat $lafile|grep "^library_names="`
libtool=1
else
library_names="$libname.so* $libname.dll.a"
fi
__runcmd install -d $destpath/
dota=$libname.a
if [ -f "$dota" -o -n "$require_static" ]; then
__runcmd install -m 0644 $dota $destpath/
fi
if [ -f "$dotlai" -a -n "$libtool" ]; then
if test -n "$staging_install"
then
# stop libtool using the final directory name for
libraries
# in staging:
__runcmd rm -f $destpath/$libname.la
__runcmd sed -e 's/^installed=yes$/installed=no/' -e
'/^dependency_libs=/s,${WORKDIR}[[:alnum:]/\._+-]*/\([[:alnum:]\._+-]*\),${STAGING_LIBDIR}/\1,g'
$dotlai >$destpath/$libname.la
else
__runcmd install -m 0644 $dotlai $destpath/$libname.la
fi
fi
for name in $library_names; do
files=`eval echo $name`
for f in $files; do
if [ ! -e "$f" ]; then
if [ -n "$libtool" ]; then
oefatal "oe_libinstall: $dir/$f not
found."
fi
elif [ -L "$f" ]; then
__runcmd cp -P "$f" $destpath/
elif [ ! -L "$f" ]; then
libfile="$f"
__runcmd install -m 0755 $libfile $destpath/
fi
done
done
if [ -z "$libfile" ]; then
if [ -n "$require_shared" ]; then
oefatal "oe_libinstall: unable to locate shared
library"
fi
elif [ -z "$libtool" ]; then
# special case hack for non-libtool .so.#.#.# links
baselibfile=`basename "$libfile"`
if (echo $baselibfile | grep -qE '^lib.*\.so\.[0-9.]*$'); then
sonamelink=`${HOST_PREFIX}readelf -d $libfile |grep
'Library soname:' |sed -e 's/.*\[\(.*\)\].*/\1/'`
solink=`echo $baselibfile | sed -e 's/\.so\..*/.so/'`
if [ -n "$sonamelink" -a x"$baselibfile" !=
x"$sonamelink" ]; then
__runcmd ln -sf $baselibfile
$destpath/$sonamelink
fi
__runcmd ln -sf $baselibfile $destpath/$solink
fi
fi
__runcmd cd "$olddir"
ERROR: function do_configure failed
ERROR: log data follows
(/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/temp/log.do_configure.15743)
| This Makefile is only for the CVS repository
| This will be deleted before making the distribution
|
| *** preparing konq-embed...
| *** preparing kde sources (from ../../kdelibs into ./kdesrc) ...
| *** using kdelibs version 3.5.1
| *** using qt version 2.3.10
| Fixing configure.in.in for kdelibs 3.4/3.5
| *** applying khtml ecma embedded patch...
| *** applying disable-printing patch...
| *** applying disable-spelling patch...
| *** applying no-find patch...
| *** applying kdelibs_export patch...
| *** applying khtml_ecma_debugwin_3.4 patch...
| *** applying browserextension_no_clipboard patch...
| *** applying no_popupmenu patch...
| *** applying fix-khtmlview-for-qtembedded patch...
| *** applying fix for wrong javascript screen sizes..
| *** applying no-webdav patch ...
| *** applying fix_cache_defaultlocation patch ...
| *** applying disable-dnd patch...
| *** applying ssl-in-use patch...
| *** applying findNext patch...
| *** applying image-scaling patch...
| *** applying frames-scaling patch...
| *** applying khtml-load-images-delayed patch...
| *** applying khtml-improved-scrolling patch...
| *** applying frames-scrolling patch...
| *** applying ecma-arm-timeout patch...
| *** applying kjs-dtoa-arm patch...
| *** applying http-use-useragent patch...
| *** applying html-dragdistance patch...
| *** Changes dropins to compile for QT/e earlier than 3.5 (se)
| * Prefaring Buildsystem for Qt2..
| * Copy special dropins to compile with qt/e 2.3.x
| * Appling patches to kdesrc..
| *** patching kdecore ...
| *** patching network ...
| *** patching khtml ...
| *** patching css ...
| *** patching dom ...
| *** patching ecma ...
| *** patching html ...
| *** patching misc ...
| *** patching rendering ...
| *** patching xml ...
| *** patching kio ...
| *** patching kio/http ...
| *** patching kio/http/kcookiejar ...
| *** patching kio/kfile ...
| *** patching kjs ...
| *** patching kparts ...
| *** patching kssl ...
| *** patching kutils ...
| *** applying cookiewin patch...
| *** applying editline-focusin-selectall patch...
| *** applying qt2 compile fix for khtml_part
| *** automake (GNU automake) 1.9.3 found.
| *** Creating acinclude.m4
| make[2]: Entering directory
`/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/kdenox'
| make[2]: Leaving directory
`/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/kdenox'
| *** Creating list of subdirectories
| make[2]: Entering directory
`/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/kdenox'
| cd . && make -f admin/Makefile.common subdirs
| make[3]: Entering directory
`/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/kdenox'
| make[3]: Leaving directory
`/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/kdenox'
| make[2]: Leaving directory
`/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/kdenox'
| *** Creating Makefile.am
| *** Creating configure.files
| *** Creating configure.in
| make[2]: Entering directory
`/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/kdenox'
| cd . && make -f admin/Makefile.common configure.in
| make[3]: Entering directory
`/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/kdenox'
| make[3]: Leaving directory
`/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/kdenox'
| make[2]: Leaving directory
`/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/kdenox'
| *** Creating aclocal.m4
| configure.in:375: warning: underquoted definition of AC_PATH_SSL
| run info '(automake)Extending aclocal'
| or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
| configure.in:51: warning: AC_CANONICAL_TARGET was called before
AC_CHECK_TARGET_TOOL
| autoconf/types.m4:401: AC_CHECK_TARGET_TOOL is expanded from...
| autoconf/types.m4:407: AC_PROG_SIZE is expanded from...
| configure.in:51: AC_PROG_SIZE is required by...
| autoconf/types.m4:445: AC_CHECK_SIZEOF is expanded from...
| acinclude.m4:3502: KDE_CHECK_TYPES is expanded from...
| acinclude.m4:863: KDE_MISC_TESTS is expanded from...
| configure.in:51: KDE_MISC_TESTS is required by...
| acinclude.m4:1099: K_PATH_X is expanded from...
| configure.in:51: K_PATH_X is required by...
| acinclude.m4:1607: AC_PATH_QT_1_3 is expanded from...
| acinclude.m4:1612: AC_PATH_QT is expanded from...
| configure.in:51: AC_PATH_QT is required by...
| acinclude.m4:1923: AC_BASE_PATH_KDE is expanded from...
| configure.in:51: the top level
| *** Creating configure
| configure.in:51: warning: AC_CANONICAL_TARGET was called before
AC_CHECK_TARGET_TOOL
| autoconf/types.m4:401: AC_CHECK_TARGET_TOOL is expanded from...
| autoconf/types.m4:407: AC_PROG_SIZE is expanded from...
| configure.in:51: AC_PROG_SIZE is required by...
| autoconf/types.m4:445: AC_CHECK_SIZEOF is expanded from...
| acinclude.m4:3502: KDE_CHECK_TYPES is expanded from...
| acinclude.m4:863: KDE_MISC_TESTS is expanded from...
| configure.in:51: KDE_MISC_TESTS is required by...
| acinclude.m4:1099: K_PATH_X is expanded from...
| configure.in:51: K_PATH_X is required by...
| acinclude.m4:1607: AC_PATH_QT_1_3 is expanded from...
| acinclude.m4:1612: AC_PATH_QT is expanded from...
| configure.in:51: AC_PATH_QT is required by...
| acinclude.m4:1923: AC_BASE_PATH_KDE is expanded from...
| configure.in:51: the top level
| *** Creating config.h template
| configure.in:51: warning: AC_CANONICAL_TARGET was called before
AC_CHECK_TARGET_TOOL
| autoconf/types.m4:401: AC_CHECK_TARGET_TOOL is expanded from...
| autoconf/types.m4:407: AC_PROG_SIZE is expanded from...
| configure.in:51: AC_PROG_SIZE is required by...
| autoconf/types.m4:445: AC_CHECK_SIZEOF is expanded from...
| acinclude.m4:3502: KDE_CHECK_TYPES is expanded from...
| acinclude.m4:863: KDE_MISC_TESTS is expanded from...
| configure.in:51: KDE_MISC_TESTS is required by...
| acinclude.m4:1099: K_PATH_X is expanded from...
| configure.in:51: K_PATH_X is required by...
| acinclude.m4:1607: AC_PATH_QT_1_3 is expanded from...
| acinclude.m4:1612: AC_PATH_QT is expanded from...
| configure.in:51: AC_PATH_QT is required by...
| acinclude.m4:1923: AC_BASE_PATH_KDE is expanded from...
| configure.in:51: the top level
| *** Creating Makefile templates
| configure.in:51: warning: AC_CANONICAL_TARGET was called before
AC_CHECK_TARGET_TOOL
| autoconf/types.m4:401: AC_CHECK_TARGET_TOOL is expanded from...
| autoconf/types.m4:407: AC_PROG_SIZE is expanded from...
| configure.in:51: AC_PROG_SIZE is required by...
| autoconf/types.m4:445: AC_CHECK_SIZEOF is expanded from...
| acinclude.m4:3502: KDE_CHECK_TYPES is expanded from...
| acinclude.m4:863: KDE_MISC_TESTS is expanded from...
| configure.in:51: KDE_MISC_TESTS is required by...
| acinclude.m4:1099: K_PATH_X is expanded from...
| configure.in:51: K_PATH_X is required by...
| acinclude.m4:1607: AC_PATH_QT_1_3 is expanded from...
| acinclude.m4:1612: AC_PATH_QT is expanded from...
| configure.in:51: AC_PATH_QT is required by...
| acinclude.m4:1923: AC_BASE_PATH_KDE is expanded from...
| configure.in:51: the top level
| *** Postprocessing Makefile templates
| *** Creating date/time stamp
| *** Finished
| Don't forget to run ./configure
| If you haven't done so in a while, run ./configure --help
| automake (GNU automake) 1.9.3
| Written by Tom Tromey <tromey at redhat.com>.
|
| Copyright 2004 Free Software Foundation, Inc.
| This is free software; see the source for copying conditions. There is NO
| warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
| AUTOV is 1.9
| NOTE: Executing autoreconf --verbose --install --force --exclude=autopoint -I
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal-1.9 -I
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal
| autoreconf: Entering directory `.'
| autoreconf: configure.in: not using Gettext
| autoreconf: running: aclocal -I
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal-1.9 -I
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal --force
| configure.in:375: warning: underquoted definition of AC_PATH_SSL
| run info '(automake)Extending aclocal'
| or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:45:
warning: underquoted definition of AC_LBL_C_INIT
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:172:
warning: underquoted definition of AC_LBL_C_INLINE
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:228:
warning: underquoted definition of AC_LBL_LIBPCAP
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:296:
warning: underquoted definition of AC_LBL_TYPE_SIGNAL
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:326:
warning: underquoted definition of AC_LBL_FIXINCLUDES
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:372:
warning: underquoted definition of AC_LBL_LEX_AND_YACC
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:425:
warning: underquoted definition of AC_LBL_UNION_WAIT
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:454:
warning: underquoted definition of AC_LBL_SOCKADDR_SA_LEN
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:479:
warning: underquoted definition of AC_LBL_SOCKADDR_STORAGE
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:512:
warning: underquoted definition of AC_LBL_HP_PPA_INFO_T_DL_MODULE_ID_1
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:538:
warning: underquoted definition of AC_LBL_HAVE_RUN_PATH
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:564:
warning: underquoted definition of AC_LBL_CHECK_TYPE
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:593:
warning: underquoted definition of AC_LBL_UNALIGNED_ACCESS
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:698:
warning: underquoted definition of AC_LBL_DEVEL
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:828:
warning: underquoted definition of AC_LBL_LIBRARY_NET
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:851:
warning: underquoted definition of AC_C___ATTRIBUTE__
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:889:
warning: underquoted definition of AC_LBL_TPACKET_STATS
| configure.in:51: warning: AC_CANONICAL_TARGET was called before
AC_CHECK_TARGET_TOOL
| autoconf/types.m4:401: AC_CHECK_TARGET_TOOL is expanded from...
| autoconf/types.m4:407: AC_PROG_SIZE is expanded from...
| configure.in:51: AC_PROG_SIZE is required by...
| autoconf/types.m4:445: AC_CHECK_SIZEOF is expanded from...
| acinclude.m4:3502: KDE_CHECK_TYPES is expanded from...
| acinclude.m4:863: KDE_MISC_TESTS is expanded from...
| configure.in:51: KDE_MISC_TESTS is required by...
| acinclude.m4:1099: K_PATH_X is expanded from...
| configure.in:51: K_PATH_X is required by...
| acinclude.m4:1607: AC_PATH_QT_1_3 is expanded from...
| acinclude.m4:1612: AC_PATH_QT is expanded from...
| configure.in:51: AC_PATH_QT is required by...
| acinclude.m4:1923: AC_BASE_PATH_KDE is expanded from...
| configure.in:51: the top level
| autoreconf: configure.in: tracing
| configure.in:51: warning: AC_CANONICAL_TARGET was called before
AC_CHECK_TARGET_TOOL
| autoconf/types.m4:401: AC_CHECK_TARGET_TOOL is expanded from...
| autoconf/types.m4:407: AC_PROG_SIZE is expanded from...
| configure.in:51: AC_PROG_SIZE is required by...
| autoconf/types.m4:445: AC_CHECK_SIZEOF is expanded from...
| acinclude.m4:3502: KDE_CHECK_TYPES is expanded from...
| acinclude.m4:863: KDE_MISC_TESTS is expanded from...
| configure.in:51: KDE_MISC_TESTS is required by...
| acinclude.m4:1099: K_PATH_X is expanded from...
| configure.in:51: K_PATH_X is required by...
| acinclude.m4:1607: AC_PATH_QT_1_3 is expanded from...
| acinclude.m4:1612: AC_PATH_QT is expanded from...
| configure.in:51: AC_PATH_QT is required by...
| acinclude.m4:1923: AC_BASE_PATH_KDE is expanded from...
| configure.in:51: the top level
| configure.in:51: warning: AC_RUN_IFELSE called without default to allow cross
compiling
| autoconf/general.m4:2282: AC_RUN_IFELSE is expanded from...
| autoconf/general.m4:1800: AC_CACHE_VAL is expanded from...
| autoconf/general.m4:1809: AC_CACHE_CHECK is expanded from...
| acinclude.m4:5811: KDE_CHECK_STRLCPY is expanded from...
| configure.in:98: warning: AC_RUN_IFELSE called without default to allow cross
compiling
| configure.in:98: the top level
| configure.in:99: warning: AC_RUN_IFELSE called without default to allow cross
compiling
| configure.in:99: the top level
| configure.in:100: warning: AC_RUN_IFELSE called without default to allow
cross compiling
| configure.in:100: the top level
| configure.in:101: warning: AC_RUN_IFELSE called without default to allow
cross compiling
| configure.in:101: the top level
| autoreconf: running: libtoolize --copy --force
| Remember to add `AC_PROG_LIBTOOL' to `configure.in'.
| You should update your `aclocal.m4' by running aclocal.
| Putting files in AC_CONFIG_AUX_DIR, `admin'.
| configure.in:375: warning: underquoted definition of AC_PATH_SSL
| run info '(automake)Extending aclocal'
| or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:45:
warning: underquoted definition of AC_LBL_C_INIT
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:172:
warning: underquoted definition of AC_LBL_C_INLINE
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:228:
warning: underquoted definition of AC_LBL_LIBPCAP
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:296:
warning: underquoted definition of AC_LBL_TYPE_SIGNAL
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:326:
warning: underquoted definition of AC_LBL_FIXINCLUDES
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:372:
warning: underquoted definition of AC_LBL_LEX_AND_YACC
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:425:
warning: underquoted definition of AC_LBL_UNION_WAIT
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:454:
warning: underquoted definition of AC_LBL_SOCKADDR_SA_LEN
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:479:
warning: underquoted definition of AC_LBL_SOCKADDR_STORAGE
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:512:
warning: underquoted definition of AC_LBL_HP_PPA_INFO_T_DL_MODULE_ID_1
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:538:
warning: underquoted definition of AC_LBL_HAVE_RUN_PATH
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:564:
warning: underquoted definition of AC_LBL_CHECK_TYPE
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:593:
warning: underquoted definition of AC_LBL_UNALIGNED_ACCESS
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:698:
warning: underquoted definition of AC_LBL_DEVEL
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:828:
warning: underquoted definition of AC_LBL_LIBRARY_NET
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:851:
warning: underquoted definition of AC_C___ATTRIBUTE__
|
/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal/libpcap.m4:889:
warning: underquoted definition of AC_LBL_TPACKET_STATS
| configure.in:51: warning: AC_CANONICAL_TARGET was called before
AC_CHECK_TARGET_TOOL
| autoconf/types.m4:401: AC_CHECK_TARGET_TOOL is expanded from...
| autoconf/types.m4:407: AC_PROG_SIZE is expanded from...
| configure.in:51: AC_PROG_SIZE is required by...
| autoconf/types.m4:445: AC_CHECK_SIZEOF is expanded from...
| acinclude.m4:3502: KDE_CHECK_TYPES is expanded from...
| acinclude.m4:863: KDE_MISC_TESTS is expanded from...
| configure.in:51: KDE_MISC_TESTS is required by...
| acinclude.m4:1099: K_PATH_X is expanded from...
| configure.in:51: K_PATH_X is required by...
| acinclude.m4:1607: AC_PATH_QT_1_3 is expanded from...
| acinclude.m4:1612: AC_PATH_QT is expanded from...
| configure.in:51: AC_PATH_QT is required by...
| acinclude.m4:1923: AC_BASE_PATH_KDE is expanded from...
| configure.in:51: the top level
| autoreconf: running: /home/jbs/oe/akita/tmp/staging/i686-linux/bin/autoconf
--include=/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal-1.9
--include=/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal
--force --warnings=cross
| configure.in:51: warning: AC_CANONICAL_TARGET was called before
AC_CHECK_TARGET_TOOL
| autoconf/types.m4:401: AC_CHECK_TARGET_TOOL is expanded from...
| autoconf/types.m4:407: AC_PROG_SIZE is expanded from...
| configure.in:51: AC_PROG_SIZE is required by...
| autoconf/types.m4:445: AC_CHECK_SIZEOF is expanded from...
| acinclude.m4:3502: KDE_CHECK_TYPES is expanded from...
| acinclude.m4:863: KDE_MISC_TESTS is expanded from...
| configure.in:51: KDE_MISC_TESTS is required by...
| acinclude.m4:1099: K_PATH_X is expanded from...
| configure.in:51: K_PATH_X is required by...
| acinclude.m4:1607: AC_PATH_QT_1_3 is expanded from...
| acinclude.m4:1612: AC_PATH_QT is expanded from...
| configure.in:51: AC_PATH_QT is required by...
| acinclude.m4:1923: AC_BASE_PATH_KDE is expanded from...
| configure.in:51: the top level
| configure.in:51: warning: AC_RUN_IFELSE called without default to allow cross
compiling
| autoconf/general.m4:2282: AC_RUN_IFELSE is expanded from...
| autoconf/general.m4:1800: AC_CACHE_VAL is expanded from...
| autoconf/general.m4:1809: AC_CACHE_CHECK is expanded from...
| acinclude.m4:5811: KDE_CHECK_STRLCPY is expanded from...
| configure.in:98: warning: AC_RUN_IFELSE called without default to allow cross
compiling
| configure.in:98: the top level
| configure.in:99: warning: AC_RUN_IFELSE called without default to allow cross
compiling
| configure.in:99: the top level
| configure.in:100: warning: AC_RUN_IFELSE called without default to allow
cross compiling
| configure.in:100: the top level
| configure.in:101: warning: AC_RUN_IFELSE called without default to allow
cross compiling
| configure.in:101: the top level
| autoreconf: running: /home/jbs/oe/akita/tmp/staging/i686-linux/bin/autoheader
--include=/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal-1.9
--include=/home/jbs/oe/akita/tmp/staging/arm-angstrom-linux-gnueabi/share/aclocal
--force --warnings=cross
| configure.in:51: warning: AC_CANONICAL_TARGET was called before
AC_CHECK_TARGET_TOOL
| autoconf/types.m4:401: AC_CHECK_TARGET_TOOL is expanded from...
| autoconf/types.m4:407: AC_PROG_SIZE is expanded from...
| configure.in:51: AC_PROG_SIZE is required by...
| autoconf/types.m4:445: AC_CHECK_SIZEOF is expanded from...
| acinclude.m4:3502: KDE_CHECK_TYPES is expanded from...
| acinclude.m4:863: KDE_MISC_TESTS is expanded from...
| configure.in:51: KDE_MISC_TESTS is required by...
| acinclude.m4:1099: K_PATH_X is expanded from...
| configure.in:51: K_PATH_X is required by...
| acinclude.m4:1607: AC_PATH_QT_1_3 is expanded from...
| acinclude.m4:1612: AC_PATH_QT is expanded from...
| configure.in:51: AC_PATH_QT is required by...
| acinclude.m4:1923: AC_BASE_PATH_KDE is expanded from...
| configure.in:51: the top level
| autoreconf: running: automake --foreign --add-missing --copy --force-missing
--warnings=cross
| automake: unknown warning category `cross'
| configure.in:51: warning: AC_CANONICAL_TARGET was called before
AC_CHECK_TARGET_TOOL
| autoconf/types.m4:401: AC_CHECK_TARGET_TOOL is expanded from...
| autoconf/types.m4:407: AC_PROG_SIZE is expanded from...
| configure.in:51: AC_PROG_SIZE is required by...
| autoconf/types.m4:445: AC_CHECK_SIZEOF is expanded from...
| acinclude.m4:3502: KDE_CHECK_TYPES is expanded from...
| acinclude.m4:863: KDE_MISC_TESTS is expanded from...
| configure.in:51: KDE_MISC_TESTS is required by...
| acinclude.m4:1099: K_PATH_X is expanded from...
| configure.in:51: K_PATH_X is required by...
| acinclude.m4:1607: AC_PATH_QT_1_3 is expanded from...
| acinclude.m4:1612: AC_PATH_QT is expanded from...
| configure.in:51: AC_PATH_QT is required by...
| acinclude.m4:1923: AC_BASE_PATH_KDE is expanded from...
| configure.in:51: the top level
| autoreconf: running: gnu-configize
| configure.in:51: warning: AC_CANONICAL_TARGET was called before
AC_CHECK_TARGET_TOOL
| autoconf/types.m4:401: AC_CHECK_TARGET_TOOL is expanded from...
| autoconf/types.m4:407: AC_PROG_SIZE is expanded from...
| configure.in:51: AC_PROG_SIZE is required by...
| autoconf/types.m4:445: AC_CHECK_SIZEOF is expanded from...
| acinclude.m4:3502: KDE_CHECK_TYPES is expanded from...
| acinclude.m4:863: KDE_MISC_TESTS is expanded from...
| configure.in:51: KDE_MISC_TESTS is required by...
| acinclude.m4:1099: K_PATH_X is expanded from...
| configure.in:51: K_PATH_X is required by...
| acinclude.m4:1607: AC_PATH_QT_1_3 is expanded from...
| acinclude.m4:1612: AC_PATH_QT is expanded from...
| configure.in:51: AC_PATH_QT is required by...
| acinclude.m4:1923: AC_BASE_PATH_KDE is expanded from...
| configure.in:51: the top level
| autoreconf: Leaving directory `.'
|
/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/temp/run.do_configure.15743:
line 427: oe_runconf: command not found
NOTE: Task failed:
/home/jbs/oe/akita/tmp/work/armv5te-angstrom-linux-gnueabi/konqueror-embedded-20060404-r3/temp/log.do_configure.15743
NOTE: package konqueror-embedded-20060404-r3: task do_configure: failed
ERROR: TaskFailed event exception, aborting
NOTE: package konqueror-embedded-20060404: failed
ERROR: Build of
/home/jbs/oe/org.openembedded.dev/packages/konqueror/konqueror-embedded_20060404.bb
do_configure failed
ERROR: Task 4
(/home/jbs/oe/org.openembedded.dev/packages/konqueror/konqueror-embedded_20060404.bb,
do_configure) failed
NOTE: Tasks Summary: Attempted 383 tasks of which 380 didn't need to be rerun
and 1 failed.
ERROR:
'/home/jbs/oe/org.openembedded.dev/packages/konqueror/konqueror-embedded_20060404.bb'
failed
--
Configure bugmail: http://bugs.openembedded.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the Openembedded-issues
mailing list