Hi everybody,
I downloaded the 3.3Go Git files. When I tryed to build it following http://trinitydesktop.org/wiki/bin/view/Developers/HowToBuild I uses OpenSuse 11.1. I had the following prolem:
configure: error: Your Installation isn't able to compile simple C++ programs. Check config.log for details - if you're using a Linux distribution you might miss a package named similar to libstdc++-dev.
I checked with Yast: the package libstdc++-dev is well present. Could it be a version bloblem, as a search on "libstdc++" with yast shows version 33, 41 and 43 with libstdc++43, libstdc++43-32bits and libstdc++43-devel installed, with libstdc++-dev...
You could answer that I have to wait for the availability of the distribution specific package (OSS 12.1)...
Good luck to everyone, Patrick
Hi All,
Attempting to build tdewebdev from git fails because the file "projectuploads.h", #included from quanta/project/projectupload.h does not exist. The file "projectuploads.h" does not seem to be present anywhere, including stable source.
Any ideas anybody?
Cheers, Mike.
Hi All,
Attempting to build tdewebdev from git fails because the file "projectuploads.h", #included from quanta/project/projectupload.h does not exist. The file "projectuploads.h" does not seem to be present anywhere, including stable source.
Any ideas anybody?
Cheers, Mike.
It could be an automatically generated file. Look for a projectuploads.ui file somewhere in the tdewebdev sources.
Also, is tdewebdev built using CMake or Automake, and on Wheezy or some other distribution?
Thanks!
Tim
On 04/01/2012 23:35, Timothy Pearson wrote:
Hi All,
Attempting to build tdewebdev from git fails because the file "projectuploads.h", #included from quanta/project/projectupload.h does not exist. The file "projectuploads.h" does not seem to be present anywhere, including stable source.
Any ideas anybody?
Cheers, Mike.
It could be an automatically generated file. Look for a projectuploads.ui file somewhere in the tdewebdev sources.
Yes, projectuploads.ui is present in the directory quanta/project, which is where projectuploads.h should be. Not being a developer, I assume that projectuploads.h should have been generated from projectuploads.ui?
Also, is tdewebdev built using CMake or Automake, and on Wheezy or some other distribution?
It's built with CMake. I'm using the source from git on wheezy
Cheers, Mike.
On 04/01/2012 23:35, Timothy Pearson wrote:
Hi All,
Attempting to build tdewebdev from git fails because the file "projectuploads.h", #included from quanta/project/projectupload.h does not exist. The file "projectuploads.h" does not seem to be present anywhere, including stable source.
Any ideas anybody?
Cheers, Mike.
It could be an automatically generated file. Look for a projectuploads.ui file somewhere in the tdewebdev sources.
Also, is tdewebdev built using CMake or Automake, and on Wheezy or some other distribution?
Thanks!
Tim
I tried the build in a squeeze chroot, with the same result, i.e.;
In file included from /tmp/tdewebdev/quanta/project/uploadprofilespage.cpp:22: /tmp/tdewebdev/quanta/project/uploadprofilespage.ui.h:23:27: error: projectupload.h: No such file or directory In file included from /tmp/tdewebdev/quanta/project/uploadprofilespage.cpp:22: /tmp/tdewebdev/quanta/project/uploadprofilespage.ui.h: In member function âvirtual void UploadProfilesPage::buttonEditProfiles_clicked()â: /tmp/tdewebdev/quanta/project/uploadprofilespage.ui.h:27: error: âProjectUploadâ was not declared in this scope /tmp/tdewebdev/quanta/project/uploadprofilespage.ui.h:27: error: âdlgâ was not declared in this scope /tmp/tdewebdev/quanta/project/uploadprofilespage.ui.h:27: error: expected type-specifier before âProjectUploadâ /tmp/tdewebdev/quanta/project/uploadprofilespage.ui.h:27: error: expected â;â before âProjectUploadâ /tmp/tdewebdev/quanta/project/uploadprofilespage.ui.h:30: error: type â<type error>â argument given to âdeleteâ, expected pointer make[2]: *** [quanta/project/CMakeFiles/project-static.dir/uploadprofilespage.cpp.o] Error 1
However, projectupload.h is in fact present in the original source but not in the out of source build. projectuploads.h, which is #included from projectupload.h in the original source is present in the out of source build.
Mike.
On 04/01/2012 23:35, Timothy Pearson wrote:
Hi All,
Attempting to build tdewebdev from git fails because the file "projectuploads.h", #included from quanta/project/projectupload.h does not exist. The file "projectuploads.h" does not seem to be present anywhere, including stable source.
Any ideas anybody?
Cheers, Mike.
It could be an automatically generated file. Look for a projectuploads.ui file somewhere in the tdewebdev sources.
Also, is tdewebdev built using CMake or Automake, and on Wheezy or some other distribution?
Thanks!
Tim
I tried the build in a squeeze chroot, with the same result, i.e.;
<snip> Thank you for trying to build on Squeeze; this lets me know there is a problem in TDE instead of the distribution.
Try adding this line to your quanta/project/CMakeLists.txt file, directly below ${CMAKE_SOURCE_DIR}/quanta/src:
${CMAKE_SOURCE_DIR}/quanta/project
Rebuild the entire tdewebdev module with that change in place and see if it fixes the problem.
What is strange is that I was able to build tdewebdev on Squeeze without encountering this problem; perhaps you are using different option flags than I did. Either way it needs to be fixed in the TDE sources.
Tim
2012/1/5 Timothy Pearson kb9vqf@pearsoncomputing.net:
On 04/01/2012 23:35, Timothy Pearson wrote:
Hi All,
Attempting to build tdewebdev from git fails because the file "projectuploads.h", #included from quanta/project/projectupload.h does not exist. The file "projectuploads.h" does not seem to be present anywhere, including stable source.
Any ideas anybody?
Cheers, Mike.
It could be an automatically generated file. Look for a projectuploads.ui file somewhere in the tdewebdev sources.
Also, is tdewebdev built using CMake or Automake, and on Wheezy or some other distribution?
Thanks!
Tim
I tried the build in a squeeze chroot, with the same result, i.e.;
<snip> Thank you for trying to build on Squeeze; this lets me know there is a problem in TDE instead of the distribution.
Try adding this line to your quanta/project/CMakeLists.txt file, directly below ${CMAKE_SOURCE_DIR}/quanta/src:
${CMAKE_SOURCE_DIR}/quanta/project
Rebuild the entire tdewebdev module with that change in place and see if it fixes the problem.
What is strange is that I was able to build tdewebdev on Squeeze without encountering this problem; perhaps you are using different option flags than I did. Either way it needs to be fixed in the TDE sources.
Tim
That should do it. It's what I did in arch PKGBULD for kdewebdev.
I tried the build in a squeeze chroot, with the same result, i.e.;
<snip> Thank you for trying to build on Squeeze; this lets me know there is a problem in TDE instead of the distribution.
Try adding this line to your quanta/project/CMakeLists.txt file, directly below ${CMAKE_SOURCE_DIR}/quanta/src:
${CMAKE_SOURCE_DIR}/quanta/project
Rebuild the entire tdewebdev module with that change in place and see if it fixes the problem.
What is strange is that I was able to build tdewebdev on Squeeze without encountering this problem; perhaps you are using different option flags than I did. Either way it needs to be fixed in the TDE sources.
Tim
That should do it. It's what I did in arch PKGBULD for kdewebdev.
OK, fixed in GIT hash 56be183.
Let me know if the problem persists.
Tim
Le mercredi 04 janvier 2012, Mike Howard a écrit :
Hi All,
Attempting to build tdewebdev from git fails because the file "projectuploads.h", #included from quanta/project/projectupload.h does not exist. The file "projectuploads.h" does not seem to be present anywhere, including stable source.
Any ideas anybody?
Cheers, Mike.
--------------------------------------------------------------------- Hi Mike,
This is not the good way to start a new thread. Pressing "R" key or "respond" menu item from the mail client (supposed KMail), then changing the title of the mail is inelegant. And I fill frustrated, I suppose that you are able to understand why... If you are missing somethine, never known, In the Directory menu (Dossier[fr]) of KMail's main menu, if you select the two ways of ordering the messages, you will see that I started a thread with this "Building Trinity Failing - opensuse 11.1" title and the same thread continues with "Building tdewebdev - projectupload.h". This suppose, of course, that you archive the mails.
I thisk that the things are so because KMail uses a internal string from the initial mail, when you édit the response, and this string helps KMail recognising the thread the mail is part of.
To start a new thread, simply click on the adresse following "To: " (that is trinity-users@lists.pearsoncomputing.net).
Cheers, Patrick