I see the problem is that QSA is using bad qmake (QMAKE variable was not 
inherited when child qmakes were run, thus in middle of the process, qmake 
from QT4 was run)

It was fixed in CVS.
You can apply this quickfix, it should solve the problem

diff -u -r1.3 configutils.cpp
--- src/qsa/configure2/configutils.cpp  12 Apr 2007 14:29:20 -0000      
1.3
+++ src/qsa/configure2/configutils.cpp  18 Apr 2007 18:54:00 -0000
@@ -116,13 +116,13 @@
         args.append(target);
     }

-    if (configs.size() > 0 || antiConfigs.size() > 0) {
-        args.append("-after");
-        if (!configs.isEmpty())
-            args.append( "CONFIG+=" + configs.join( " " ) );
-        if (!antiConfigs.isEmpty())
-            args << "CONFIG-=" + antiConfigs.join(" ");
-    }
+    args.append("-after");
+    if (!configs.isEmpty())
+        args.append( "CONFIG+=" + configs.join( " " ) );
+    if (!antiConfigs.isEmpty())
+        args << "CONFIG-=" + antiConfigs.join(" ");
+    //Need to pass QMAKE to qmake subprocesses
+    args.append( "QMAKE=" + qmake );

     if( !execute( args ) )
        warnings++;


> Hi,
> 
> again a make problem on Suse 10.0. I've tried to set
> 
> export PATH=$QTDIR/bin/qmake:$PATH

BTW it should be "export PATH=$QTDIR/bin:$PATH" to be correct.
Also, from 0.3.0 with that configutils fix above setting PATH should not 
be necessary (if you have QTDIR set right, the configuration script will 
figure out what qmake to use)

Martin Petricek

> 
> but I get the same error (the above fixed the compile issue on 0.2.3)
> 
> The error I get is:
   GPG/PGP Public key:  http://www.petricek.net/petricm.pgp
Fingerprint 6AA8 FFCE C061 1CB2 55F0  A1F3 3AA9 EB4F BD50 C1B8
/------------------------------------------------------------\
| WWW:                    http://www.petricek.net/           |
\------------------------------------------------------------/


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Pdfedit-support mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pdfedit-support

Reply via email to