From: David R. <ro...@ph...> - 2008-12-09 15:45:27
Attachments:
build.log
config.log
|
I'm attaching my build.log and config.log as requested (by the message printed when compiling). It looks like maybe I need a more recent boost library or something? If so, the autoconf test should be tightened, so I get a configure error telling me what's wrong... For those who don't want to look at long log files, the error message is: ./core/util/render_manager.cpp:4:26: warning: threadpool.hpp: No such file or directory ./core/util/render_manager.cpp:61:23: warning: no newline at end of file ./core/util/render_manager.cpp: In static member function 'static double cvisual::render_manager::paint_displays(const std::vector<cvisual::display*, std::allocator<cvisual::display*> >&, bool)': ./core/util/render_manager.cpp:14: error: 'boost::threadpool' has not been declared ./core/util/render_manager.cpp:14: error: expected initializer before '*' token ./core/util/render_manager.cpp:31: error: 'swap_thread_pool' was not declared in this scope ./core/util/render_manager.cpp:32: error: expected type-specifier ./core/util/render_manager.cpp:32: error: expected `;' ./core/util/render_manager.cpp:37: error: 'swap_thread_pool' was not declared in this scope ./core/util/render_manager.cpp:37: error: 'bind' is not a member of 'boost' ./core/util/render_manager.cpp:41: error: 'swap_thread_pool' was not declared in this scope David |
From: Bruce S. <Bru...@nc...> - 2008-12-09 16:18:14
|
Thanks much! I think I see the problem. The creation of the distribution file is missing a component (the threadpool stuff). I failed to catch this because the component is present in CVS from which I was building the package. I'll post an update on this. Bruce Sherwood David Roundy wrote: > I'm attaching my build.log and config.log as requested (by the message > printed when compiling). It looks like maybe I need a more recent > boost library or something? If so, the autoconf test should be > tightened, so I get a configure error telling me what's wrong... > > For those who don't want to look at long log files, the error message is: > > ./core/util/render_manager.cpp:4:26: warning: threadpool.hpp: No such > file or directory > ./core/util/render_manager.cpp:61:23: warning: no newline at end of file > ./core/util/render_manager.cpp: In static member function 'static > double cvisual::render_manager::paint_displays(const > std::vector<cvisual::display*, std::allocator<cvisual::display*> >&, > bool)': > ./core/util/render_manager.cpp:14: error: 'boost::threadpool' has not > been declared > ./core/util/render_manager.cpp:14: error: expected initializer before '*' token > ./core/util/render_manager.cpp:31: error: 'swap_thread_pool' was not > declared in this scope > ./core/util/render_manager.cpp:32: error: expected type-specifier > ./core/util/render_manager.cpp:32: error: expected `;' > ./core/util/render_manager.cpp:37: error: 'swap_thread_pool' was not > declared in this scope > ./core/util/render_manager.cpp:37: error: 'bind' is not a member of 'boost' > ./core/util/render_manager.cpp:41: error: 'swap_thread_pool' was not > declared in this scope > > David > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. > The future of the web can't happen without you. Join us at MIX09 to help > pave the way to the Next Web now. Learn more and register at > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > > > ------------------------------------------------------------------------ > > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users |
From: Bruce S. <Bru...@nc...> - 2008-12-09 17:12:14
|
For compiling on Linux, you need this resource, which is not mentioned in INSTALL.txt: http://threadpool.sourceforge.net Let me know if that gets you past the roadblock. I've added this instruction to the vpython.org download page. Bruce Sherwood David Roundy wrote: > I'm attaching my build.log and config.log as requested (by the message > printed when compiling). It looks like maybe I need a more recent > boost library or something? If so, the autoconf test should be > tightened, so I get a configure error telling me what's wrong... > > For those who don't want to look at long log files, the error message is: > > ./core/util/render_manager.cpp:4:26: warning: threadpool.hpp: No such > file or directory > ./core/util/render_manager.cpp:61:23: warning: no newline at end of file > ./core/util/render_manager.cpp: In static member function 'static > double cvisual::render_manager::paint_displays(const > std::vector<cvisual::display*, std::allocator<cvisual::display*> >&, > bool)': > ./core/util/render_manager.cpp:14: error: 'boost::threadpool' has not > been declared > ./core/util/render_manager.cpp:14: error: expected initializer before '*' token > ./core/util/render_manager.cpp:31: error: 'swap_thread_pool' was not > declared in this scope > ./core/util/render_manager.cpp:32: error: expected type-specifier > ./core/util/render_manager.cpp:32: error: expected `;' > ./core/util/render_manager.cpp:37: error: 'swap_thread_pool' was not > declared in this scope > ./core/util/render_manager.cpp:37: error: 'bind' is not a member of 'boost' > ./core/util/render_manager.cpp:41: error: 'swap_thread_pool' was not > declared in this scope > > David |