Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-22 Thread Thiago Macieira
On Monday, 22 de November de 2010 05:04:10 Carl Snellman wrote: ./configure -meego There's no such option (-meego). You must pass a lot more options to configure and you must pass one option to make install to make it install inside the sysroot. -- Thiago Macieira - thiago (AT) macieira.info

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-22 Thread Rohan McGovern
Carl Snellman said: Hey Mark, thanks for the tip. I rebooted the netbook, but unfortunately, it is not that simple. The PATH setting is correct, pointing to correct qmake (/usr/local/Trolltech/Qt-4.7.1/bin/qmake) but that qmake is set to use wrong libs...

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-22 Thread Carl Snellman
Hey, yeah sorry, the -meego flag was for qt-mobility. I recall I configured qt with no options (- defaults to /usr/local/Trolltech/Qt-4.7.1) Carl On Mon, Nov 22, 2010 at 12:00 AM, Thiago Macieira thi...@kde.org wrote: On Monday, 22 de November de 2010 05:04:10 Carl Snellman wrote: ./configure

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-22 Thread Carl Snellman
Output is: . [csnell...@csnellman-desktop ~]$ which qmake /usr/local/Trolltech/Qt-4.7.1/bin/qmake [csnell...@csnellman-desktop ~]$ qmake -query -unix is deprecated. QT_INSTALL_PREFIX:/usr/lib/madde/linux-i686/targets/meego-core-ia32-1.1/bin

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-22 Thread Carl Snellman
Found a cause to my problemPosting here just in case someone else battles with this. I realized that the qmake is actually using the other qmake, even though 'which qmake' claims to use the one at /usr/local/Trolltech/Qt-4.7.1/bin... I wonder what causes this? I have 'export

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-22 Thread Cassian Braconnnier
Le 22/11/2010 17:12, Carl Snellman a écrit : I found out that my .bashrc had an alias: alias qmake='mad -t meego-core-ia32-1.1 qmake' defined that overrid any PATH settings. Unfortunately I did not see that alias earlier, and command 'which qmake' also lied to me... Next time use the

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-21 Thread Carl Snellman
Hey, So I managed to compile Qt libs from source after installing the deps. The whole command chain was as follows (Vincent, thanks for the tip!):  sudo zypper install –t pattern development-libs    development-tools x-software-development ./configure -meego gmake gmake docs sudo gmake install

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-21 Thread mark.keir
after this. BR Mark -Original Message- From: meego-dev-boun...@meego.com [mailto:meego-dev-boun...@meego.com] On Behalf Of ext Carl Snellman Sent: Monday, November 22, 2010 2:04 PM To: Vincent Yau Cc: meego-dev@meego.com Subject: Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego? Hey, So I

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-21 Thread Carl Snellman
@meego.com Subject: Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego? Hey, So I managed to compile Qt libs from source after installing the deps. The whole command chain was as follows (Vincent, thanks for the tip!):  sudo zypper install -t pattern development-libs    development-tools x-software

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-20 Thread Thiago Macieira
On Saturday, 20 de November de 2010 00:59:01 Carl Snellman wrote: sudo zypper install libx11-dev but no package found. Also tried to find it using 'sudo zypper packages' listing and 'sudo zypper search' Does anyone know how I can find the package needed? The package is libX11-devel (capital

[MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-19 Thread Carl Snellman
Hey, I'm trying to find any instructions how to compile Qt 4.7.1 from source on Meego Netbook UX device (Lenovo S10-3t), with Meego-SDK installed. So I would have few basic questions: - are there 4.7.1. packages available anywhere? - is there a specific repo for meego Qt (similar to

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-19 Thread Gabriel M. Beddingfield
On Fri, 19 Nov 2010, Carl Snellman wrote: - where could I find the dependencies I would need to install prior to compilation? I'm sure it's not much different from the deps for 4.7.0. Try looking into this command: $ zypper si --help -gabriel

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-19 Thread Thiago Macieira
On Friday, 19 de November de 2010 22:22:38 Carl Snellman wrote: Hey, I'm trying to find any instructions how to compile Qt 4.7.1 from source on Meego Netbook UX device (Lenovo S10-3t), with Meego-SDK installed. So I would have few basic questions: - are there 4.7.1. packages available

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-19 Thread Vincent Yau
I think after these steps, you will have enough to start compiling Qt 4.7.1 from source: “sudo zypper refresh” ;  “sudo zypper install –t pattern development-libs    development-tools   x-software-development ” ; On Fri, Nov 19, 2010 at 1:22 PM, Carl Snellman carl.snell...@gmail.com wrote:

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-19 Thread Carl Snellman
Okay, I cloned the mainline repo, and when I said ./configure, I got this: Basic XLib functionality test failed! You might need to modify the include and library search paths by editing QMAKE_INCDIR_X11 and QMAKE_LIBDIR_X11 in /home/csnellman/qtLibsForMeego/qt/mkspecs/linux-g++. I tried to

Re: [MeeGo-dev] Compiling Qt 4.7.1 on Meego?

2010-11-19 Thread Carl Snellman
Hey, thanks for help!! When I run: [csnell...@csnellman-desktop qt]$ sudo zypper install -t pattern development-libs development-tools x-software-development Loading repository data... Reading installed packages... 'pattern:development-tools' is already installed. No update candidate for