Hi,

currently, the cmake variable VERSION is not set (this part of the
pkg-config patch was apparently not applied). This results in an
Equalizer.pc file that contains no version information, which is bad.
The attached minimal patch sets the version, but I'm not sure that
lib/CMakeLists.txt is the right place for this, maybe you want to do
this in the main CMakeLists file.

Martin
-- 
Computer Graphics and Multimedia Systems Group
University of Siegen, Germany
http://www.cg.informatik.uni-siegen.de/
Index: lib/CMakeLists.txt
===================================================================
--- lib/CMakeLists.txt	(revision 4967)
+++ lib/CMakeLists.txt	(working copy)
@@ -4,6 +4,8 @@
 include(${CMAKE_CURRENT_SOURCE_DIR}/configure.cmake)
 include(${CMAKE_CURRENT_SOURCE_DIR}/files.cmake)
 
+set(VERSION 0.9.2)
+
 set(HEADERS
   ${BASE_HEADERS}
   ${CLIENT_HEADERS}
_______________________________________________
eq-dev mailing list
[email protected]
http://www.equalizergraphics.com/cgi-bin/mailman/listinfo/eq-dev
http://www.equalizergraphics.com

Reply via email to