Export to GitHub

android-lighthouse - issue #15

current git version of android-lighthouse does not compile


Posted on Feb 21, 2010 by Swift Rabbit

What steps will reproduce the problem? 1. git pull 2. ./androidconfig.sh 3. make

make aborted with errors, because some include-files were not found:

  1. QWindowSystemInterface not found Solution: I've created include/QtGui/QWindowSystemInterface and include/QtGui/qwindowsysteminterface.h manually.

  2. qsoftkeymanager_p.h and qsoftkeymanager_common_p.h not found Solution: --- a/src/gui/kernel/qsoftkeymanager.cpp +++ b/src/gui/kernel/qsoftkeymanager.cpp @@ -42,9 +42,9 @@

    include "qapplication.h"

    include "qevent.h"

    include "qbitmap.h"

    -#include "private/qsoftkeymanager_p.h" +#include "qsoftkeymanager_p.h"

    include "private/qobject_p.h"

    -#include "private/qsoftkeymanager_common_p.h" +#include "qsoftkeymanager_common_p.h"

    ifdef Q_WS_S60

    include "private/qsoftkeymanager_s60_p.h"

Comment #1

Posted on Feb 21, 2010 by Swift Horse

You have to clean, remove the include directory and configure again the project.

make confclean rm -fr include ./androidconfig.sh

Good luck.

Comment #2

Posted on Feb 21, 2010 by Swift Rabbit

You are right! Tanks for your help and thanks for starting this great project!

Status: Invalid

Labels:
Type-Defect Priority-Medium