Remove mysqlpp check since mysql bindings are used directly now.

This commit is contained in:
Sergey Popov 2008-12-11 19:42:09 +00:00
parent 1fdfdfa78d
commit b5d093c588

View file

@ -243,8 +243,7 @@ if env["prereqs"]:
if env["forum_user_handler"]:
env.ParseConfig("mysql_config --libs --cflags")
if conf.CheckLibWithHeader("mysqlpp", "mysql++/mysql++.h", "C++"):
env.Append(CPPDEFINES = ["HAVE_MYSQLPP"])
env.Append(CPPDEFINES = ["HAVE_MYSQLPP"])
if env["python"]:
env["python"] = (float(sys.version[:3]) >= 2.4) and conf.CheckPython() or Warning("Python >= 2.4 not found. Python extensions will be disabled.")