Results 1 to 20 of 22

Thread: Qt Upgrade Repository..

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Sep 2009
    Location
    UK
    Posts
    2,447
    Thanks
    6
    Thanked 348 Times in 333 Posts
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: Qt Upgrade Repository..

    Your using Linux, so therefore theres a high chance you have an option of upgrading Qt without uninstalling anything.

    Secondly, if you can't find the latest Qt in a package format suitable for your distro you can always download the source and compile it.

  2. #2
    Join Date
    Sep 2009
    Location
    Surrey, BC, Canada
    Posts
    110
    Thanks
    1
    Thanked 2 Times in 1 Post
    Qt products
    Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows

    Default Re: Qt Upgrade Repository..

    Thank you.
    But, would you please help to clarify "without uninstalling anything"
    Do you mean I can download the source and build the source and copy every built .so files to overwrite those .so installed from Ubuntu repository?

    Finally, I found the code at ftp://ftp.trolltech.com/qt/source/

    Thank you very much.

    Best Regards
    JIA







    Quote Originally Posted by fatjuicymole View Post
    Your using Linux, so therefore theres a high chance you have an option of upgrading Qt without uninstalling anything.

    Secondly, if you can't find the latest Qt in a package format suitable for your distro you can always download the source and compile it.
    Welcome to Vision Open
    http://www.visionopen.com

  3. #3
    Join Date
    Sep 2009
    Location
    UK
    Posts
    2,447
    Thanks
    6
    Thanked 348 Times in 333 Posts
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: Qt Upgrade Repository..

    Quote Originally Posted by jiapei100 View Post
    But, would you please help to clarify "without uninstalling anything"
    Do you mean I can download the source and build the source and copy every built .so files to overwrite those .so installed from Ubuntu repository?
    No, I was thinking more along the lines of ./configure && make install, with the appropriate parameters passed to configure to state the installation directory.

  4. #4
    Join Date
    Sep 2009
    Location
    Surrey, BC, Canada
    Posts
    110
    Thanks
    1
    Thanked 2 Times in 1 Post
    Qt products
    Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows

    Default Re: Qt Upgrade Repository..

    Hi, my compilation configuration is
    Qt Code:
    1. ./configure -v -prefix /usr -debug-and-release -phonon -phonon-backend -declarative
    To copy to clipboard, switch view to plain text mode 

    and the configuration output contains quite a lot of error messages

    floatmath.cpp:44: warning: unused parameter ‘argc’
    floatmath.cpp:44: warning: unused parameter ‘argv’
    libjpeg.cpp: In function ‘int main(int, char**)’:
    libjpeg.cpp:51: warning: ‘cinfo’ is used uninitialized in this function
    db2.cpp:42:20: error: sqlcli.h: No such file or directory
    db2.cpp:43:21: error: sqlcli1.h: No such file or directory
    make: *** [db2.o] Error 1
    ibase.cpp:42:19: error: ibase.h: No such file or directory
    make: *** [ibase.o] Error 1
    oci.cpp:42:17: error: oci.h: No such file or directory
    make: *** [oci.o] Error 1
    tds.cpp:42:22: error: sybfront.h: No such file or directory
    tds.cpp:43:19: error: sybdb.h: No such file or directory
    make: *** [tds.o] Error 1
    egl.cpp:42:21: error: EGL/egl.h: No such file or directory
    egl.cpp: In function ‘int main(int, char**)’:
    egl.cpp:46: error: ‘EGLint’ was not declared in this scope
    egl.cpp:46: error: expected ‘;’ before ‘x’
    egl.cpp:47: error: ‘EGLDisplay’ was not declared in this scope
    egl.cpp:47: error: expected ‘;’ before ‘dpy’
    egl.cpp:48: error: ‘EGLContext’ was not declared in this scope
    egl.cpp:48: error: expected ‘;’ before ‘ctx’
    egl.cpp:49: error: ‘dpy’ was not declared in this scope
    egl.cpp:49: error: ‘ctx’ was not declared in this scope
    egl.cpp:49: error: ‘eglDestroyContext’ was not declared in this scope
    make: *** [egl.o] Error 1
    egl4gles1.cpp:42:22: error: GLES/egl.h: No such file or directory
    egl4gles1.cpp: In function ‘int main(int, char**)’:
    egl4gles1.cpp:46: error: ‘EGLint’ was not declared in this scope
    egl4gles1.cpp:46: error: expected ‘;’ before ‘x’
    egl4gles1.cpp:47: error: ‘EGLDisplay’ was not declared in this scope
    egl4gles1.cpp:47: error: expected ‘;’ before ‘dpy’
    egl4gles1.cpp:48: error: ‘EGLContext’ was not declared in this scope
    egl4gles1.cpp:48: error: expected ‘;’ before ‘ctx’
    egl4gles1.cpp:49: error: ‘dpy’ was not declared in this scope
    egl4gles1.cpp:49: error: ‘ctx’ was not declared in this scope
    egl4gles1.cpp:49: error: ‘eglDestroyContext’ was not declared in this scope
    make: *** [egl4gles1.o] Error 1
    glib.cpp: In function ‘int main(int, char**)’:
    glib.cpp:55: warning: ‘pollfd’ is used uninitialized in this function
    gstreamer.cpp:53: warning: unused parameter ‘argc’
    gstreamer.cpp:53: warning: unused parameter ‘argv’
    xsync.cpp: In function ‘int main(int, char**)’:
    xsync.cpp:51: warning: statement has no effect
    xsync.cpp:52: warning: statement has no effect
    xsync.cpp:50: warning: unused variable ‘value’
    stltest.cpp: In function ‘int main()’:
    stltest.cpp:145: warning: unused variable ‘n’
    alsatest.cpp:47: warning: unused parameter ‘argc’
    alsatest.cpp:47: warning: unused parameter ‘argv’

    Among all the above error messages,
    what is OpenVG? It's right here http://www.khronos.org/openvg/
    but, do I need to install something?
    or, how can I activate it?



    Looking forward to your detailed explanation.
    Thank you very much in advance.

    Best Regards
    JIA




    Quote Originally Posted by fatjuicymole View Post
    No, I was thinking more along the lines of ./configure && make install, with the appropriate parameters passed to configure to state the installation directory.
    Welcome to Vision Open
    http://www.visionopen.com

Similar Threads

  1. Qt Public Repository Launched!
    By lpotter in forum Qt Programming
    Replies: 1
    Last Post: 12th May 2009, 00:38
  2. svn problem: help me clear the repository
    By magland in forum General Discussion
    Replies: 1
    Last Post: 26th September 2007, 01:54
  3. Up-to-date package repository?
    By sdfisher in forum Installation and Deployment
    Replies: 0
    Last Post: 21st July 2007, 19:25
  4. Icon repository
    By brcain in forum Newbie
    Replies: 2
    Last Post: 23rd February 2006, 18:04
  5. Is there a repository of widgets?
    By Mariane in forum Newbie
    Replies: 3
    Last Post: 20th January 2006, 07:40

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.