Hello Pau,

> Here come two patches:
> - 05_examples_cmake_check_dependencies adds dependency check (Boost,
> Asio, threads, Qt4, etc) to the examples and fix WtFindBoost.txt

Hmm, the reason for the 'NO_DEFAULT' is that many shipped boosts
turned out to be missing some interesting features, such as
multithreading. By adding it, we are sure that the system default
boost will not be used unless explicitly specified. But I see where
you have problems with this. I guess the right thing to do in the
current situation is to ask the user to specify BOOST_DIR,
BOOST_COMPILER and BOOST_VERSION also when examples are compiled...
Maybe this cmakelists.txt should use a config file that was written
out by the 'main' CMakeList.txt, which contains these values?
Or should we wait until we switch to the find_package(Boost) thing?

> - 06_hangman_build_with_mysqlpp3 makes the Hangman example build with
> MySql++ 2.x and 3.x, instead of only 2.x.

Can you rewrite this to
#if MYSQLPP_HEADER_VERSION < 196608
      typedef Result StoreQueryResult;
#endif

at the top of the file ans rename all Result -> StoreQueryResult after
that? I think it's less intrusive

Regards,
Wim.

------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
witty-interest mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/witty-interest

Reply via email to