[QGIS Commit] r12181 - trunk/qgis/doc

svn_qgis at osgeo.org svn_qgis at osgeo.org
Wed Nov 18 17:07:00 EST 2009


Author: kyngchaos
Date: 2009-11-18 17:06:57 -0500 (Wed, 18 Nov 2009)
New Revision: 12181

Modified:
   trunk/qgis/doc/INSTALL.t2t
Log:
fix Qt + SDK issue in OSX build

Modified: trunk/qgis/doc/INSTALL.t2t
===================================================================
--- trunk/qgis/doc/INSTALL.t2t	2009-11-18 21:01:33 UTC (rev 12180)
+++ trunk/qgis/doc/INSTALL.t2t	2009-11-18 22:06:57 UTC (rev 12181)
@@ -405,7 +405,19 @@
 Once downloaded open the dmg and run the installer. Note you need admin
 privileges to install.
 
+__Qt 4.4+ note:__ Starting in Qt 4.4 (?) libQtCLucene was added, and in 4.5 libQtUiTools was added, both in /usr/lib.  When using a system SDK (which will happen in the Xcode build), these libraries will not be found.  To fix this problem, add symlinks to /usr/local:
 
+```
+sudo ln -s /usr/lib/libQtUiTools.a /usr/local/lib/
+sudo ln -s /usr/lib/libQtCLucene.dylib /usr/local/lib/
+```
+
+These should then be found automatically on Leopard and above.  Earlier systems
+may need some help by adding '-L/usr/local/lib' to CMAKE_SHARED_LINKER_FLAGS,
+CMAKE_MODULE_LINKER_FLAGS and CMAKE_EXE_LINKER_FLAGS in the cmake build, or
+adding '/usr/local/lib' to LIBRARY_SEARCH_PATHS in the Xcode build.
+
+
 == Install development frameworks for QGIS dependencies ==
 
 Download William Kyngesburye's excellent GDAL Complete package that includes PROJ, GEOS, GDAL, SQLite3, and image libraries, as frameworks.



More information about the QGIS-commit mailing list