Can't compile with QT4 anymore

Hi,
Since last upgrade I can't compile my qt4 apps with KDevelop or QDevelop. It says something like :
make: *** No rules to build target « /opt/qt4/mkspecs/linux-g++/qmake.conf », required by « Makefile ». Stopping.
The qt-config tool does not exist anymore. There is a qtconfig one but, doesn't seem to be helping.
I know that the files in the the qt4 package have been moved from /opt/qt4 to /usr/, but still I don't know what to do.
I'm stuck !

The fact is I cannot compile ANYTHING in QT4 !
Let's take an example. I want to compile QPaddy (you can find it on qt-apps.org).
I set the vars (which doesn't seem to have any effect):
export QTDIR=/usr/share/qt4
export QMAKESPEC=/usr/share/qt4/mkspecs/linux-g++
export QT_LIBRARY_PATH=/usr/include/Qt
I try to compile QPAddy :
qmake qpaddy.pro
make
Here is what I get :
cd src/ && make -f Makefile
make[1]: entrant dans le répertoire « /root/docs/qpaddy0876/src »
make[1]: *** Pas de règle pour fabriquer la cible « /usr/lib/qt-3.3/mkspecs/default/qmake.conf », nécessaire pour « Makefile ». Arrêt.
make[1]: quittant le répertoire « /root/docs/qpaddy0876/src »
make: *** [sub-src-make_default] Erreur 2
And now the MakeFile :
# Makefile for building: qpaddy
# Generated by qmake (2.01a) (Qt 4.3.2) on: mar. nov. 6 17:49:17 2007
# Project:  qpaddy.pro
# Template: subdirs
# Command: /usr/bin/qmake -unix -o Makefile qpaddy.pro
first: make_default
MAKEFILE      = Makefile
QMAKE         = /usr/bin/qmake
DEL_FILE      = rm -f
CHK_DIR_EXISTS= test -d
MKDIR         = mkdir -p
COPY          = cp -f
COPY_FILE     = $(COPY)
COPY_DIR      = $(COPY) -r
INSTALL_FILE  = install -m 644 -p
INSTALL_PROGRAM = install -m 755 -p
INSTALL_DIR   = $(COPY_DIR)
DEL_FILE      = rm -f
SYMLINK       = ln -sf
DEL_DIR       = rmdir
MOVE          = mv -f
CHK_DIR_EXISTS= test -d
MKDIR         = mkdir -p
SUBTARGETS    =  \
        sub-src
src//$(MAKEFILE):
    @$(CHK_DIR_EXISTS) src/ || $(MKDIR) src/
    cd src/ && $(QMAKE) src.pro -unix -o $(MAKEFILE)
sub-src-qmake_all:  FORCE
    @$(CHK_DIR_EXISTS) src/ || $(MKDIR) src/
    cd src/ && $(QMAKE) src.pro -unix -o $(MAKEFILE)
sub-src: src//$(MAKEFILE) FORCE
    cd src/ && $(MAKE) -f $(MAKEFILE)
sub-src-make_default: src//$(MAKEFILE) FORCE
    cd src/ && $(MAKE) -f $(MAKEFILE)
sub-src-make_first: src//$(MAKEFILE) FORCE
    cd src/ && $(MAKE) -f $(MAKEFILE) first
sub-src-all: src//$(MAKEFILE) FORCE
    cd src/ && $(MAKE) -f $(MAKEFILE) all
sub-src-clean: src//$(MAKEFILE) FORCE
    cd src/ && $(MAKE) -f $(MAKEFILE) clean
sub-src-distclean: src//$(MAKEFILE) FORCE
    cd src/ && $(MAKE) -f $(MAKEFILE) distclean
sub-src-install_subtargets: src//$(MAKEFILE) FORCE
    cd src/ && $(MAKE) -f $(MAKEFILE) install
sub-src-uninstall_subtargets: src//$(MAKEFILE) FORCE
    cd src/ && $(MAKE) -f $(MAKEFILE) uninstall
Makefile: qpaddy.pro  /usr/share/qt4/mkspecs/linux-g++/qmake.conf /usr/share/qt4/mkspecs/common/g++.conf \
        /usr/share/qt4/mkspecs/common/unix.conf \
        /usr/share/qt4/mkspecs/common/linux.conf \
        /usr/share/qt4/mkspecs/qconfig.pri \
        /usr/share/qt4/mkspecs/features/qt_functions.prf \
        /usr/share/qt4/mkspecs/features/qt_config.prf \
        /usr/share/qt4/mkspecs/features/exclusive_builds.prf \
        /usr/share/qt4/mkspecs/features/default_pre.prf \
        /usr/share/qt4/mkspecs/features/release.prf \
        /usr/share/qt4/mkspecs/features/default_post.prf \
        /usr/share/qt4/mkspecs/features/qt.prf \
        /usr/share/qt4/mkspecs/features/unix/thread.prf \
        /usr/share/qt4/mkspecs/features/moc.prf \
        /usr/share/qt4/mkspecs/features/warn_on.prf \
        /usr/share/qt4/mkspecs/features/resources.prf \
        /usr/share/qt4/mkspecs/features/uic.prf \
        /usr/share/qt4/mkspecs/features/yacc.prf \
        /usr/share/qt4/mkspecs/features/lex.prf
    $(QMAKE) -unix -o Makefile qpaddy.pro
/usr/share/qt4/mkspecs/common/g++.conf:
/usr/share/qt4/mkspecs/common/unix.conf:
/usr/share/qt4/mkspecs/common/linux.conf:
/usr/share/qt4/mkspecs/qconfig.pri:
/usr/share/qt4/mkspecs/features/qt_functions.prf:
/usr/share/qt4/mkspecs/features/qt_config.prf:
/usr/share/qt4/mkspecs/features/exclusive_builds.prf:
/usr/share/qt4/mkspecs/features/default_pre.prf:
/usr/share/qt4/mkspecs/features/release.prf:
/usr/share/qt4/mkspecs/features/default_post.prf:
/usr/share/qt4/mkspecs/features/qt.prf:
/usr/share/qt4/mkspecs/features/unix/thread.prf:
/usr/share/qt4/mkspecs/features/moc.prf:
/usr/share/qt4/mkspecs/features/warn_on.prf:
/usr/share/qt4/mkspecs/features/resources.prf:
/usr/share/qt4/mkspecs/features/uic.prf:
/usr/share/qt4/mkspecs/features/yacc.prf:
/usr/share/qt4/mkspecs/features/lex.prf:
qmake: qmake_all FORCE
    @$(QMAKE) -unix -o Makefile qpaddy.pro
qmake_all: sub-src-qmake_all FORCE
make_default: sub-src-make_default FORCE
make_first: sub-src-make_first FORCE
all: sub-src-all FORCE
clean: sub-src-clean FORCE
distclean: sub-src-distclean FORCE
    -$(DEL_FILE) Makefile
install_subtargets: sub-src-install_subtargets FORCE
uninstall_subtargets: sub-src-uninstall_subtargets FORCE
mocclean: compiler_moc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
install: install_subtargets  FORCE
uninstall:  uninstall_subtargets FORCE
FORCE:
Any idea ?

Similar Messages

  • Can't compile with any layers hidden on timeline

    Can someone explain what could possibly be going on?
    Running CS4 I have a .fla that was compiling fine yesterday.  Today I made some slight additions and it wouldn't compile, giving errors saying that various things were undefined.  I was starting to go nuts until finally I made all layers in the timeline visible and compiled again.  Now it compiles fine. 
    Just in case it was something Flash itself I created a new file, hid some layers and compiled and it was fine.  So it's not the application, just this particular file.
    What could be doing this?  Why can't I compile with hidden layers?
    Thanks for any help.

    Hi fizbeam,
    This happened to me a while ago!
    It's annoying.. somewhere in the publish settings theres a checkbox marked 'dont export hidden frames' and if it's checked it'll cause this to happen.

  • I can't compile for iOS anymore with Flex and AIR 3.8

    Hi Adobe team and others,
    I'm using Apache 4.10 Flex framework and adobe Air 3.8 for my business projects.
    I always had some problems to compile and publish iOS application (with Air 3.5 before), but with AIR 3.8, that was a miracle, I could compile my projects without any errors on Windows ... until today.
    I'm executing this command in DOS to compile my project:
    "C:\Program Files\Java\jre7\bin\java.exe" -jar "C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\sdks\4.10 - AIR 3.8\lib\adt.jar" -package -target ipa-app-store -hideAneLibSymbols no -provisioning-profile "S:\Directory_to_MobileProvision.mobileprovision" -storetype pkcs12 -keystore "S:\Directory_to_Certificats_ios.p12" -storepass my_private_password Proginov_FVTE_V45.ipa Proginov_FVTE_V45-app.xml assets com config_app.xml [email protected] Proginov_FVTE_V45.swf -extdir "S:/Directory_to_ANE/air_3.8_pnv_3.00"
    And I'm getting this result after 1 hour compiling:
    If you want, I can send you my bin-release-temp folder and ANE to try by yourself, but I need a private mail, because I don't want to publish my private project to everyone.
    Thanks

    Thank you a lot.
    I remember I tried this with AIR 3.5, and that didn't work.
    But with AIR 3.8, it's OK.
    Perfect

  • Can't compile with Javac in jdk 1.2.1

    Hi all,
    I used javac to compile "helloworld.java" in jdk 1.2.1 but It didn't "helloworld.class" file and it also didn't alert.
    my system platform Is:Windows 2000 server
    Jdk:1.2.1
    anyone help me to resolve my problem.
    thanks a lot
    anhnt

    Anhnt,
    If I understand you correctly, you say that you tried to compile "helloworld.java" using "javac", and it didn't create a "helloworld.class" file and you got no error messages, right?
    Are you using an IDE? Or did you manually enter the "javac" command via a command window? What was the exact command you entered?
    Good Luck,
    Avi.

  • I can't compile with gcc Solaris 2.6

    I downloaded the binary gcc-3.0.1-sol26-sparc-local and I used the pkgadd command, but when I want to compile the tcpwrappers, the next messages is showed.
    ld: fatal: file values-Xa.o: cannot open file: No such file or directory
    ld: fatal: File processing errors. No output written to tcpd
    collect2: ld returned 1 exit status
    and my variables are:
    CC=gcc
    EDITOR=vi
    HOME=/export/home/usr/vreyes
    HZ=100
    LOGNAME=vreyes
    MAIL=/var/mail/vreyes
    MANPATH=/usr/local/man:/usr/man:/usr/local/X11/man
    PAGER=less
    PATH=/usr/local/bin:/bin:/usr/ccs/bin:/etc:/usr/etc:/usr/local/X11/bin:/usr/ucb:/usr/openwin/bin:/usr/local/etc:/usr/sbin
    PS1=#
    PWD=/export/home/usr/vreyes/tcp_wrappers_7.6
    SHELL=/bin/csh
    TERM=xterm
    TZ=Mexico/General
    USER=vreyes
    XAUTHORITY=/home/vreyes/.Xauthority
    LD_LIBRARY_PATH=/lib:/usr/lib:/usr/local/lib:/usr/local/X11/lib:/usr/dt/lib:/usr/openwin/lib:/usr/ccs/lib

    first check if values-Xa.o exists ? I think this is where you'll find it : /usr/ccs/lib/
    I suspect your problem is that if you are using Makefiles etc they do not contain the full PATH to this binary/lib hence your error.
    If the above fails or is not appropriate check out http://gcc.gnu.org or do a search say using yahoo for "values-Xa.o" & "gcc" lots of hits !

  • Can't compile with -renderingdiagnostics

    Hello
    getting contradictory messages here when trying to compile using the PFI in terminal
    '/Applications/Adobe Flash CS5/PFI/bin/pfi' -package -renderingdiagnostics -target ipa-debug  -provisioning-profile "/Users/john.doe/Documents/Certificates/JohnDoeLearningPP.mobileprovision" -storetype pkcs12 -keystore "/Users/john.doe/Documents/Certificates/iPhoneDeveloperJohnDoe.p12" -storepass password "HardwareRender.ipa" "HardwareRender-app.xml" "HardwareRender.swf"
    I get an error
    expected -target instead of -renderingdiagnostics
    But in the Adobe packerforiphone_devguide.pdf it says
    The -renderingdiagnostics flag must directly follow the -package flag.
    Anybody else come up against this?

    Thanks for the responce, however same problem ocurrs I'm afraid
    osdtdes01:~ john.doe$ java -jar '/Applications/Adobe Flash CS5/PFI/lib/pfi.jar' -package -renderingdiagnostics -target ipa-debug  -provisioning-profile "/Users/john.doe/Documents/Certificates/JohnDoeLearningPP.mobileprovision" -storetype pkcs12 -keystore "/Users/john.doe/Documents/Certificates/iPhoneDeveloperJohnDoe.p12" -storepass password "HardwareRender.ipa" "HardwareRender-app.xml" "HardwareRender.swf"
    expected -target instead of -renderingdiagnostics
    usage:
      pfi -help
      pfi -package -target ( ipa-test | ipa-debug | ipa-app-store | ipa-ad-hoc ) -provisioning-profile <profile> SIGNING_OPTIONS <output-package> ( FILE_OPTIONS | <input-package> )
      pfi -version
    SIGNING_OPTIONS: -storetype <type> ( -keystore <store> )? ( -storepass <pass> )? ( -alias <aliasName> )? ( -keypass <pass> )? ( -providerName <name> )?
    FILE_OPTIONS:    <app-desc> <fileOrDir>* (( -C <dir> <fileOrDir>+ ) | ( -e <file> <path> ))*

  • I can't compile in WindowsXP? =(

    Hello everyone,
    I upgraded my PC to WindowsXP, but when I try to compile my java progs in the command prompt, I get the following error:
    ' javac' is not recognized as an internal or external command, operable program or batch file.
    Can anyone help me with this problem, cause I can't compile java programs anymore =(

    Because I'm new to Java, does anyone happen to know where I can get a bytecode compiler so I can make programs that run with .exe (Like every commercial program out there? Or is there no solution to that?<You got your terminology wrong. "javac" is a bytecode compiler. It converts java source into "bytecodes" that run on a "Virtual Machine". To create an "exe" you must have a "native" compiler. There are a few available, the good ones are commercial and cost a lot of money. It also turns out that Sun's server VM (default in 1.4 now) is faster then some of these pricey native compilers in many situations. This is because modern VM's use JIT's or "Just In Time" compilers to create native code on the fly.
    My advice to you is this. Use one of the many nice deployment methods available for java before you start to worry about native compilation. "executable jars", Java Web Start, bootstrap launching programs... all are good options.

  • Zen Vision M Firmware Problem!!! Can't deal with this thing any more...

    Can't deal with this thing any more...3 Hello friends I'm new in the forum
    Well as the title mentions, I'm about to throw this thing oute of the window!!!
    It's a 30 GB Zen Vision M, I own it ,5 years now...
    I have read all the relevant posts in the forum about this player, I tried my best, nothing really worked.....
    So now I have a Zen which only boots in the recovery mode!!
    I have Cleaned it Up, Formated it, and tried to reload its firmware BUT when I connect it and try to reload it, in the end it always says Firmware Upgrade Failed!!Really can't understand it!!!!!
    I've communicated with Creative, i wasn't at all satisfied with their responses... I think what they're trying to do is to avoid me, and earn some time with really useless suggestions which I had already told them won't work!!!So in the end they wanted me to send my Zen in Italy and pay more than 100 Euros for what an ,5 year old mp3 player?No I prefer buying a new Cowon with that amount of money!!!
    Anyways I'm pretty mad now, so I'll move to the subject..
    I have Service Pack 3 Windows XP in my computer, and I did roll back on the Media Player 0 from the I had, using the instructions from a previous post. The truth is that it rolled back with less steps than it showed, and I say that because it mentions in a step that in the add-remove programms, in the Windows XP-Software Updates section, I should find a Windows Media player thing which really doesnt exist and I suspect it's the Service Pack 3 because I have done the same in a SP2 and worked exactly as the steps said..Anyway the fact is I have Windows Media Player 0 now!!!
    Please someone tell why can't I upgrade my firmware... I can't deal with this anymore!!!!

    KRe: Zen Vision M Firmware Problem!!! Can't deal with this thing any more..._
    menios wrote:
    So you say that I actually have the Windows Media Player 0, because my Zen is being recognised..
    I have rebooted it several times but its just the same thing...it shows firmware problem!!
    Why isn't this player working?I've seen many people, not only from here, who have the same exact problem and they gave up on their mp3... I dont have this kind of luxury to buy a new one!!I don't know whether Creative has put on this a "time bomb" or is just faulty, but I really wish it could be saved..
    I'm saying it is WMP0 because the firmware file sees the player. The computer can recognize it but with WMP components that firmware file would be grayed-out..So when you reloaded the firmware did you choose "reload firmware" Before you connected it's?(That is what erases the firmware prior to uploading the firmware. If you did not do that it could cause it to fail.Do these ste
    ps.
    Open the firmware file,On the player format>cleanup>choose reload firmware, then connect & run the firmware file.

  • Can't synchronize with iTunes Ipod 4g

    I can't synchronize with iTunes anymore, since the second day I've got my iPod 4g 2 weeks ago.
    iTunes says "iTunes can't make a backup of *ipod name*, because the ipod is disconnected" (I've got the dutch version, tried to translate it as good as possible).
    I allready tried to uninstal itunes and instal it again, but that didn't worked.
    any other ideas?
    edit: and now I have a second error, 13010
    Message was edited by: jovano

    Have you sync'd it with any other computer before?

  • After installing Win7, I created an 3a. partition and now I can't boot with Win7

    After installing Win7 with success, I created an other data partition and now I can't boot with Win7 anymore. What can I do?
    Thanks!
    Vernon

    Thanks, hatter! But I´m new in the Mac World and that´s greek for me. I have no idea about what is BCDedit, GPT, EFI, etc... I went to your bookmarks and found many discursions there. I selected 5 that the subject looks useful for me (https://discussions.apple.com/thread/3543804, https://discussions.apple.com/thread/3477901,
    https://discussions.apple.com/thread/3360787, https://discussions.apple.com/thread/3354587 and https://discussions.apple.com/thread/3199099) but, as a tipical windows user, a really new mac user and a non-american (I don´t speak English well), it´s impossible to me to understand all this.
    Do you know any "how to" in this forum or i any other part of the Internet where explain step-by-step what a dummy needs to do to recover the acess to the Windows partition (my primary objective) and create an third partition (FAT32) for data acessible for both OS?
    Thank you very much!

  • Can't create a compilation with different performers on iTunes 11.1.1 anymore!!! Why???

    After I updated iTunes to 11.1.1 I coudn't create a compilation with different artistes anymore! Why??? I don't want the same album cover, like 100 times...
    Thx
    DJG5500

    Generally setting a common Album title and Album Artist will fix things.
    For deeper problems see Grouping tracks into albums.
    tt2

  • Since I'd installed the new version of iTunes, iCal and Address book do not sync with my iPhone 3GS through iTunes anymore and I get an error message stating that iTunes can not sync with this iPhone. Was must i do to correct this issue?

    Since I'd installed the new version of iTunes, iCal and Address book do not sync with my iPhone 3GS through iTunes anymore and I get an error message stating that iTunes can not sync with this iPhone. Was must i do to correct this issue and if i must, how dI reintall iTunes without loosing my content?
    P.S. I am able to sync postcasts and music though!

    http://support.apple.com/kb/TS3694
    http://support.apple.com/kb/TS3125
    http://support.microsoft.com/kb/299357

  • My iphone 5 fell down from the table and now I can't touch screen or do anything with it anymore. Please help me!!!

    My iphone 5 fell down from the table and now I can't touch screen or do anything with it anymore. I send it to Istudio in Thailand and they said it is non authorized so they will not fix for me. I search google and they said that my LCD has problem but people in here said the chip inside my phone have problem??? Please tell me what I need to do. And if I have to change the new, how can I know it is new or fake? Could you give me the price of it please? I'm not Thai people. I study in here so I dont know where to fix it. Please recommend me any truthly store in there if you know. Thank you so much!!!

    You will need to wait for Apple to rectify the issue. Do not make changes at your end.
    https://www.apple.com/support/systemstatus/

  • I just updated pages, I can't count the amount of words with space anymore. Can anybody help me?

    I just updated pages, I can't count the amount of words with space anymore. Can anybody help me?

    Yes me too, tried re setting and enabling changes but no agree button anywhere?

  • Can I compiler servlet with java compiler?

    Can I compiler servlet with java compiler?
    Here is an example of it:
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class HelloWorldServlet extends HttpServlet
              protected void doGet(HttpServletRequest request,
              HttpServletResponse response) throws ServletException , IOException
                        response.setContentType("text/html");
                        PrintWriter out = response.getWriter();
                        StringBuffer sb = new StringBuffer();
                        sb.append("<html><body><h1>");
                        sb.append("Hello World");
                        sb.append("</h1></body></html>");
                        out.print(sb.toString());
                        out.close();
         }

    Can I compiler servlet with java compiler?
    yes.
    just include the correct jarfiles in your classpath.

Maybe you are looking for