# HG changeset patch # User vtchill@33b003aa-7bff-0310-803a-e67f0ece8222 # Date 1266702103 0 # Node ID 68aa65e5bd9cc547ee6cb95fd830965643aabe1a # Parent a79084d8167cb7007c1300a3bbb6ae3d49f8eeed another fix to the build system, the current way we check for lib dependencies do not handle lowercase vs. uppercase name differences correctly when using pkg-config. The only lib dependency that currently has this is Xcursor, so i removed the lowercase version so that "Xcursor" will be the only one that is searched for. diff -r a79084d8167c -r 68aa65e5bd9c build/linux2-config.py --- a/build/linux2-config.py Sat Feb 20 20:50:30 2010 +0000 +++ b/build/linux2-config.py Sat Feb 20 21:41:43 2010 +0000 @@ -76,7 +76,7 @@ (('boost_filesystem', 'boost_filesystem-gcc', 'boost_filesystem-gcc41', 'boost_filesystem-mt'), 'boost/filesystem.hpp'), (('boost_regex', 'boost_regex-gcc', 'boost_regex-gcc41', 'boost_regex-mt'), 'boost/regex.hpp'), ('png', 'png.h'), - (('xcursor', 'Xcursor'), '')] + ('Xcursor', '')] if (opengl): libs.append(('guichan_opengl', ''))