Hello,

I've been having a problem with 3.1.2 and git not installing the files 
src/Wt/Dbo/backend/WDbo*.h on my Kubuntu 9.10 system.  Once I manually copy 
them to /usr/include/Wt/Dbo/backend/ everything is fine.  I looked through the 
CMakeLists.txt and came up with this quick and easy patch against git.

Mike
diff --git a/src/Wt/Dbo/backend/CMakeLists.txt b/src/Wt/Dbo/backend/CMakeLists.txt
index bcddba5..7aeb363 100644
--- a/src/Wt/Dbo/backend/CMakeLists.txt
+++ b/src/Wt/Dbo/backend/CMakeLists.txt
@@ -33,6 +33,7 @@ PROPERTIES
 )
 
 INSTALL_FILES(/include/Wt/Dbo/backend "^Sqlite3$")
+INSTALL_FILES(/include/Wt/Dbo/backend ".*Sqlite3.*\.h")
 
 IF(POSTGRES_FOUND)
   MESSAGE("** Wt::Dbo: building Postgres backend.")
@@ -57,6 +58,7 @@ IF(POSTGRES_FOUND)
   )
 
   INSTALL_FILES(/include/Wt/Dbo/backend "^Postgres$")
+  INSTALL_FILES(/include/Wt/Dbo/backend ".*Postgres.*\.h")
 ELSE(POSTGRES_FOUND)
   MESSAGE("** Wt::Dbo: could not find libpq development files, not building Postgres backend.")
 ENDIF(POSTGRES_FOUND)
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
witty-interest mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/witty-interest

Reply via email to