Re: [CMake] libcrypto.so.6 library needed for cmake on Ubuntu 8.04

2011-07-14 Thread Eric Noulard
2011/7/15 Neil Higgins : > cmake fails to start with the following error message: > > cmake: error while loading shared libraries: libcrypto.so.6: cannot open > shared object file: No such file or directory > > I have tried installing the openssl libraries and openssl-dev to no > avail. Which vers

[CMake] libcrypto.so.6 library needed for cmake on Ubuntu 8.04

2011-07-14 Thread Neil Higgins
cmake fails to start with the following error message: cmake: error while loading shared libraries: libcrypto.so.6: cannot open shared object file: No such file or directory I have tried installing the openssl libraries and openssl-dev to no avail. Please advise where to find the required librar

Re: [CMake] Linker Path Issues: /usr/local/lib

2011-07-14 Thread Michael Hertling
On 07/14/2011 07:19 PM, Ryan Farrell wrote: > Hi everyone, > > I'm using cmake to try and Build the latest release of OpenCV (2.3), but > am encountering an error. It's important to know that this is on a > shared cluster machine where I don't have root access. I've therefore > built and install

[CMake] test linker flags?

2011-07-14 Thread Clifford Yapp
Is there a way to test flags supplied to the linker (CMAKE_SHARED_LINKER_FLAGS) in the same way we can test compiler flags with CHECK_C_COMPILER_FLAG? I'd like to check if -Wl,--no-undefined works or not before using it. Cheers, CY ___ Powered by www.ki

Re: [CMake] Magical transformation of /path/to/libmylib.so to -lmylib

2011-07-14 Thread Jens Mueller
Michael Hertling wrote: > On 07/14/2011 12:54 AM, Jens Mueller wrote: > > Michael Hertling wrote: > >> On 07/11/2011 11:34 PM, Jens Mueller wrote: > >>> Hi, > >>> > >>> I'm trying to figure out where the path for a found library is changed. > >>> In my case Curses is found at /usr/lib/libcurses.so.

Re: [CMake] New Module: FindSDL_gfx.cmake

2011-07-14 Thread Eric Wing
On 7/6/11, David Cole wrote: > Many people care. Few have time to respond to everything on the CMake > mailing list... > > This is how to become a CMake module maintainer if it is necessary: > http://www.cmake.org/Wiki/CMake:Module_Maintainers > > Looks like Eric Wing is the maintainer for the oth

Re: [CMake] Compile error- select() support

2011-07-14 Thread Alexander Neundorf
On Thursday 14 July 2011, Jeff Dahl wrote: > I have an old sparc system running Linux on which I am trying to compile > CMake. I am able to bootstrap just fine, but when I run make, I get the > following error: > > Building C object Utilities/cmcurl/CMakeFiles/cmcurl.dir/select.o > ~/cmake-2.8.4/

[CMake] Linker Path Issues: /usr/local/lib

2011-07-14 Thread Ryan Farrell
Hi everyone, I'm using cmake to try and Build the latest release of OpenCV (2.3), but am encountering an error. It's important to know that this is on a shared cluster machine where I don't have root access. I've therefore built and installed a few libraries (ffmpeg for example) locally. I'm tr

Re: [CMake] Setting the installation order of a script

2011-07-14 Thread David Cole
The only way to guarantee that your install SCRIPT and CODE segments run last is to put them in their own subdirectory, and add it last. i.e. : dir3/CMakeLists.txt: INSTALL (SCRIPT setpermissions.cmake) CMakeLists.txt: ADD_SUBDIRECTORY(dir1) ADD_SUBDIRECTORY(dir2) # last, so it's install rules ru

Re: [CMake] Issues with execute_process and svn

2011-07-14 Thread David Cole
Yes. The net effect from svn's point of view is that one of the arguments given to it contains a space. On Wed, Jul 13, 2011 at 11:31 PM, wrote: > Ah, so does that mean that it is escaping the space, similar to --username\ > MyUserName ? > > Aaron Meadows > > > -Original Message- > From

Re: [CMake] string(FIND)

2011-07-14 Thread David Cole
On Thu, Jul 14, 2011 at 6:40 AM, Mihai Sandu wrote: > "string does not recognize sub-command FIND" > Can anyone know why this happens? > I use cmake 2.8.5 and it happens only when I make nightly builds. > ___ > Powered by www.kitware.com > > Visit other

Re: [CMake] Wiki: version compatibility matrix

2011-07-14 Thread Clifford Yapp
On Tue, Jul 12, 2011 at 4:58 PM, Alexander Neundorf wrote: > now cmake 2.8.5 has been released, could you please if you find the time > update that page ? > It's really useful :-) Second that motion - it just helped me figure out another issue! :-) Cheers, CY ___

[CMake] string(FIND)

2011-07-14 Thread Mihai Sandu
"string does not recognize sub-command FIND" Can anyone know why this happens? I use cmake 2.8.5 and it happens only when I make nightly builds. ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensour

[CMake] Setting the installation order of a script

2011-07-14 Thread Mathias Tausig
Hy! My CMakeLists.txt in the top directory looks like this: ADD_SUBDIRECTORY(dir1) ADD_SUBDIRECTORY(dir2) INSTALL (SCRIPT setpermissions.cmake) setpermissions.cmake changes some file-owner permissions of the stuff that has been installed from dir1 and dir2. The problem is: if I execute "make ins