View Issue Details [ Jump to Notes ] | [ Print ] |
ID | Project | Category | View Status | Date Submitted | Last Update |
0012306 | CMake | Modules | public | 2011-06-25 00:29 | 2013-01-09 14:05 |
|
Reporter | Campbell Barton | |
Assigned To | Philip Lowman | |
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | Linux | OS | Arch Linux 64bit | OS Version | Current |
Product Version | CMake 2.8.4 | |
Target Version | CMake 2.8.10 | Fixed in Version | CMake 2.8.10 | |
|
Summary | 0012306: FindGTK2 gives GTK2_CAIROMM_INCLUDE_DIR but not GTK2_CAIROMMCONFIG_INCLUDE_DIR |
Description | cairomm.h now includes cairommconfig.h, which is currently not made available by cmake. This makes including CairoMM impossible.
(This is a problem with building inkscape which uses cairomm) |
Additional Information | Attached a patch which adds this into FindGTK2.cmake |
Tags | No tags attached. |
|
Attached Files | cairomm_config.diff [^] (586 bytes) 2011-06-25 00:29 [Show Content] [Hide Content]diff --git a/Modules/FindGTK2.cmake b/Modules/FindGTK2.cmake
index a03c023..1efa3e6 100644
--- a/Modules/FindGTK2.cmake
+++ b/Modules/FindGTK2.cmake
@@ -471,6 +471,7 @@ foreach(_GTK2_component ${GTK2_FIND_COMPONENTS})
_GTK2_FIND_LIBRARY (GTK2_GTKMM_LIBRARY gtkmm true true)
_GTK2_FIND_INCLUDE_DIR(GTK2_CAIROMM_INCLUDE_DIR cairomm/cairomm.h)
+ _GTK2_FIND_INCLUDE_DIR(GTK2_CAIROMMCONFIG_INCLUDE_DIR cairommconfig.h)
_GTK2_FIND_LIBRARY (GTK2_CAIROMM_LIBRARY cairomm true true)
_GTK2_FIND_INCLUDE_DIR(GTK2_PANGOMM_INCLUDE_DIR pangomm.h)
|
|