Software :: CMake Warnings (setting Up Khtml2png)?
Jan 25, 2010
I'm new to CMake, and I got a few warnings after running a 'configure' file, which I don't really understand.I was hoping someone could tell me if they are real problems of if I can just ignore them. Here is the output I got:
Code:
[root@linux khtml2png-2.7.6]# ./configure
rm: cannot remove `cmake_install.cmake': No such file or directory
[code]....
View 2 Replies
ADVERTISEMENT
Feb 23, 2010
I am attempting to compile some code on a cluster where I do not have root access (and is missing many of the libraries I want), and hence have had to create local builds of the boost and opencv libraries (i.e. in /home/username/usr/local). In particular, my cmake depends on:
Code:
find_package(boost)
which my normal development machine finds in:
Code:
/usr/share/cmake-2.6/Modules/FindBoost.cmake
On the cluster I have a version of FindBoost.cmake at:
Code:
/home/username/cmake_modules
How can I tell CMake to look for FindBoost.cmake in that directory, since neither the cmake file, nor the boost install is in the standard location? I've modified the FindBoost.cmake file to make it search in the locally installed boost libraries.
[code]....
View 3 Replies
View Related
Jun 2, 2010
This is probably an easy question but somehow I couldn't manage it to work.. I was testing the C++ WT library and I have a CMakeLists.txt file as below:
Code:
ADD_EXECUTABLE(heloooo.wt
hello.C
)
SET(CMAKE_SKIP_BUILD_RPATH FALSE)
[Code]....
What am i doing wrong, I don't want to use the LD_LIBRARY_PATH, but to get the executable find the library with rpath when run?
View 7 Replies
View Related
Oct 4, 2010
I'm trying to install Kicad from source but cmake gives me an error:"- Check for installed OpenGL -- not foundCMake Error at CMakeModules/CheckFindPackageResult.cmake:6 (message): OpenGL was not found - it is required to build Kicad "I have an Nvidia video card with the proprietary drivers installed.I also have glut, (glutg3) installed.I don't understand why cmake can't find OpenGL.
View 9 Replies
View Related
Apr 4, 2011
I've tried installing all packages that look like they have anything to do with GTK, but CMake still says "Some or all of the gtk libraries were not found. (missing: GTK2_GLIBCONFIG_INCLUDE_DIR)" and the build fails. What do I need to do to fix this?
P.S.: I'm running Natty. I couldn't find a board for problems with Natty, which is why I posted this here. If such a board exists, and you're a moderator/admin
View 1 Replies
View Related
Jan 20, 2010
My problem is: CMake can't find OpenSceneGraph package,in spite the fact that it is installed. I tried re-installing it with yum,Furthermore, I do not even know where it is installed, but if I did, I might set up some environment variables to help CMake find it.I for it, and what I found are some libraries in /usr/lib64/, but only regarding osgdb (a part of osg), and directory /usr/lib64/osgPlugins-2.8.2, again filled with files prefixed with osgdb_ and osgWrapper_.Background:I have set up Fedora 11 system in a virtual machine(vbox), in order to be able to use valgrind for memory leak hunting on my project. This project is configured with CMake from the start - so it should be portable. osg is one of the used libraries - and now it makes problems. When I tried uninstalling osg with yum, osgdb_ libs remained behind. If I can completely remove osg, I can download source and compile it and install it by myself - I will try this if no one knows where osg gets installed.
View 2 Replies
View Related
Jun 21, 2011
Overnight, I upgraded from KDE 4.5.1 to 4.6.3 and had a rude awakening this morning when I found that KDE had managed to, once again, break the Task Manager "force rows" behavior which had been fixed a few major releases ago. I found this lovely patch that had been applied:
[URL]
And thus broken the functionality, and I want to recompile that particular plasmoid with the patch removed. However, I am completely unfamiliar with CMake or building anything at all, for that matter. All my programming is done in PHP which means I'm pretty much completely lost. I'm in the midst of pulling down the kde-workspace tree with git, and already downloaded and modified a separate copy of the file in question to look the way it is supposed to. I don't want to rebuild all of KDE, just the one module.
View 2 Replies
View Related
Oct 15, 2010
I've been trying to understand issues that occur during a uClinux distribution build (so I can include such issues in a module I'm writing for students). My process has been to work through errors that occur due to missing packages, then remove the distribution and build it again to uncover what happens.One thing I notice is different sets of warnings within each iteration of making a new build. From the document here (URl...it states, "A typical warning involves a variable being used before its value has been set."
So my question: is there a way to verify that the issue throwing the warning has been resolved by the end of the make build?And, is running make build again an option or could this cause problems within the build directories or image?
View 6 Replies
View Related
Jan 11, 2011
You should be running a firewall. I would also periodically check for rootkits with rkhunter and chkrootkit. Antivirus is usually optional, but it depends on your network ... if you have Window$ machines, do use clamav or something.Hope I'm not distorting the thread but just ran rkhunter and got a lot of red warnings, especially worrying seems:
Quote:
Applications checks...
Applications checked: 4
Suspect applications: 3
View 11 Replies
View Related
Nov 4, 2010
kernel 2.6.21.5, Slackware 12.0 cdrecord 2.01
Code:
This is the command line I used to run cdrecord. Afterwards, I ran 'cdrecord -media-info' on the same disc and, as a result, I got the messages contained in the file I am adjoining. There, two consecutive warnings can be seen, which I quote:
Quote:
The disk, after recording, however, is both readable by GNU/linux and another O.S. What is the meaning of those warnings and what are its possible implications? I would like to know.
View 11 Replies
View Related
Aug 16, 2011
I'm trying to get Rigs of Rods working on Fedora, but I've run into problems. RoR uses wxGTK development version 2.9, but Fedora only uses the stable 2.8. When I compiled and installed wxGTK and other RoR depencies not available with yum, some installed to /usr/local/lib and not the CMake expected location /usr/lib64 (LD_DEBUG=libs /home/user/ror-trunk/bin/rorconfig) I had to add "CMAKE_CXX_FLAGS:STRING=-ldl" to CMakeCache.txt to get RoR to compile, and tried adding "CMAKE_LIBRARY_PATH:PATH=/usr/local/lib" and "wxWidgets_LIBRARIES:PATH=/usr/local/lib" to try and fix
ldd rorconfig | grep -i libwx
libwx_baseu-2.9.so.1 => not found
libwx_gtk2u_core-2.9.so.1 => not found
libwx_gtk2u_html-2.9.so.1 => not found
libwx_baseu_net-2.9.so.1 => not found
libwx_gtk2u_adv-2.9.so.1 => not found
but it didn't work. ldconfig hasn't helped either.
View 2 Replies
View Related
Aug 28, 2010
I'm trying to install .tar.bz2 app. When I run cmake I get this error message:
Code:
-- Found KDE 4.4 include dir: /usr/include
-- Found KDE 4.4 library dir: /usr/lib
-- Found the KDE4 kconfig_compiler preprocessor: /usr/bin/kconfig_compiler
-- Found automoc4: /usr/bin/automoc4
CMake Error at /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:70 (MESSAGE):
Could NOT find ZLIB (missing: ZLIB_LIBRARIES ZLIB_INCLUDE_DIRS)
Call Stack (most recent call first):
/usr/share/cmake-2.8/Modules/FindZLIB.cmake:39 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
CMakeLists.txt:15 (find_package)
Configuring incomplete, errors occurred!
View 2 Replies
View Related
Feb 20, 2011
I'm trying to compile an application and I'm getting "WARNING: This project requires version 2.6 of CMake. You are running version 2.4.7." How can I update the cmake version (I'm a total newbie @ linux)
View 9 Replies
View Related
Apr 10, 2011
I am trying to install cmake but got problem.Have in my tmp directory this file;cmake-2.6.4-7.el5.i386.rpm (and when use putty it is shown in red color)When using command;Quote:[root@system tmp]# su -c "yum install cmake*"I got following:Quote:
Loading "protect-packages" plugin
base-kernels | 951 B 00:00
[code]....
View 14 Replies
View Related
Jun 4, 2011
cmake appears to be finding libraries that no longer exist.I am trying to build OpenCV, and cmake is finding libraries for FFMPEG i.e. libavcodec,libavfilter and libswscale etc. These files used to exist, but were uninstalled from my system. OpenCV still appears to think these files exist, so where is it looking ?
View 4 Replies
View Related
Nov 3, 2010
I'm creating a static lib via cmake,and when I view the .a binary file with less/more/cat I see functions from my time_tools.c, but not my other_api.c The directories structure is:
Code:
CMakeLists.txt
time/CMakeLists.txt
time/time_tools.c
time/time_tools.h
[code]....
View 2 Replies
View Related
Feb 18, 2010
Is there any tool to translate rules from configure.ac into Cmake rules?
View 3 Replies
View Related
Aug 26, 2010
Im currently installing debian on my old server, its a 64bit computer, so i've downloaded the amd64 for this project. But under the Basis Installation, of this cd image, im getting a debootstrap warning every time i want to continue the installation, the last warning i remember was something coreutils_6.10-6_amd64.deb (Something like that, not totaly sure), and im lost, can't find anything closely related to the subject.
View 11 Replies
View Related
Apr 27, 2010
When I start up my computer I always get the Akonadi message window with some errors. If I just close it, launch "akonadi configuration" and ask for a test, some of the errors have already disappeared. It looks like the first test is made too soon, before everything is running. It's not a big issue but I would like to get rid of the akonadi warnings window. Does anybody know how?
[code]...
View 9 Replies
View Related
Nov 14, 2010
Every time I run "apt-get" or "apt-get autoremove" terminal-commands lately, I see this:
Code:
Do you want to continue [Y/n]? y
(Reading database ...
dpkg: warning: files list file for package `mythtv-theme-metallurgy' missing, assuming package has no files currently installed.
(Reading database ... 10%
[Code].....
View 1 Replies
View Related
Dec 23, 2010
Last night I received the classic rkhunter's email with several warnings inside:
Quote:
Warning:
Warning:
Warning:
and so on..
Why rkhunter isn't able to calculate the hash of those files and compare it with the stored one?
Other strange thing: for the "good" file, the hash is often different!
For example, in the last rkhunter.log, /bin/awk is "good".
But:
Quote:
Quote:
So, if the sha1sum is different, why rkhunter tell me that awk is secure?
View 1 Replies
View Related
Dec 2, 2010
I've decided to learn perl and have an application that is going to require the use of mysql.
Are these warnings bad?
Here's the code:
Code:
And the warnings:
Code:
View 2 Replies
View Related
Feb 28, 2011
I am just now doing the 'final' few tweeks on my new x86_64 Laptop running multilib-enabled Slackware Current and as part of the process, I installed compat32pkg and ran:
Code:
Next, to test compat32pkg, I ran:
Code:
The compat32pkg script seemed to do the 'right thing', placing the three Slackware Packages in the /var/cache/compat32pkg/compat-32/ directory as it was configured to do:
Code:
Note the warnings about 'etc/gtk-2.0/i486-slackware-linux/im-multipress.conf.new' ...
Is there a missing file in the SlackPkg ?
Code:
View 2 Replies
View Related
Jan 7, 2010
I got these warnings, on Slackware64 13.0, so I aborted the build:
Code:
gcj -O2 -fPIC -w --encoding=UTF-8 --classpath="/tmp/SBo/pdftk-1.41/java_libs" -c Anchor.java -o Anchor.o
GC Warning: Repeated allocation of very large block (appr. size 2097152000):
[code]....
View 3 Replies
View Related
Sep 14, 2010
I've made a CentOS 5 x86_64 setup last year, around november/december.This system is supposed to operate as a home router/gateway, firewall, nas, small intranet/extranet server and media center.I've previously built a system using older parts (Pentium III 866MHz), and had on it CentOS 5 x86.It successfully served the same purpose (except nas and media center) for quite some time, about 1-2years, until i felt i needed better hardware (more memory, speed and disk space mainly) and 64-bit support.
Part of this intended setup isn't finished (router/gateway, firewall, media center), partially because i'm still lacking a good 1000mbps switch and a supported wireless n 3-antenna card in AP/server mode.In the previous setup, i had router/gateway, firewall and small intranet/extranet server working, with a crappy 100mbps switch (the switch is broken now).the new setup has run pretty well, it had been upgraded 2 times, etc...But since it has been installed, even before any updates, upgrades or repo additions, there has been always warnings/errors during kernel boot.I'm listing my specs, configs, versions and logs bellow. all the partitions, RAID and LVM were created during CentOS initial setup.
Hardware:
Case:1x Cooler-Master CM-690 II Advanced (RC-692-KKN2)
PSU:1x Corsair VX450W (CMPSU-450VX)
[code]....
View 7 Replies
View Related
Oct 15, 2010
I am trying to compile Avidemux 2.4.4 from the folder where it is installed.When I type cmake. for compiling it is showing this errorQuote:
CMake Error at cmake/Po.cmake:11 (MESSAGE):
msgfmt not found - po files can't be processed
Call Stack (most recent call first):
[code]....
View 2 Replies
View Related
Jun 26, 2010
I'm trying to install Semantik 0.7.3 on OpenSUSE 11.2 and having difficulties with the dependencies. Here's the last message my terminal spit out on my attempt to start building:
--A whole bunch of stuff the forum apparently won't let me post because it thinks it's URLs and I'm too new--
error: could not open /usr/share/kde4/apps/cmake/modules/KDELibsDependencies.cmake
--End
I'd had some problems with dependencies on the way to this message and installed gcc and g++ successfully to solve them. But now it's telling me can't find KDELibsDependencies.cmake. I've checked it out - it's not in the directory. After installing cmake, I'm kind of at the end of my wits - I just don't know where to look further.
Another hint that seems to be connected with it: As I was trying to install rkward 0.5.3 (also today) it had problems with cmake too:
CMake Error at /usr/share/cmake/Modules/FindKDE4.cmake:84 (MESSAGE):
ERROR: cmake/modules/FindKDE4Internal.cmake not found in
/home/erget/.kde4/share/apps;/usr/share/kde4/apps;/etc/kde4/share/apps
Call Stack (most recent call first):
[Code]....
View 7 Replies
View Related
Feb 2, 2011
When trying to compile Armadillo on a computer cluster I get the following error after running "cmake ." (works OK) and "make":
/usr/bin/ld: /share/apps/opt_intel/lib/libblas.a(dgemm.o): relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC
/share/apps/opt_intel/lib/libblas.a: could not read symbols: Bad value
collect2: ld returned 1 exit status
make[2]: *** [libarmadillo.so.1.0.2] Error 1
make[1]: *** [CMakeFiles/armadillo.dir/all] Error 2
make: *** [all] Error 2
Cmake says it has successfully found BLAS, but there is still a linking problem.
View 3 Replies
View Related
Nov 1, 2010
Say I have a directory structure:
And other.c has:
How do I setup the CMakeFiles.txt files in each directory, so the executable "program" (from program.c) is created.
Currently I get the error:
View 1 Replies
View Related
Aug 31, 2010
I'm trying to install uzbl and was following the step by step guide on this page http://xanderboy.esdebian.org/36949/uzb ... orts-flash
When i run make i get a lot of errors and warnings. Can anybody point out what I'm doing wrong?
here's what I get code...
View 14 Replies
View Related