On 29/07/2010 17:46, Rick Kautick wrote: > Hi all, I'm not sure if I have come to the right place, but here goes > nothing. > > I recently decided that I wanted to get involved with open source > development, and thought that fixing some small bugs or creating basic > enhancements to oo would be a good place to start. > > So, naturally, the first thing I did was download the source from > http://openoffice.mirrorbrain.org/files/stable/3.2.1/OOo_3.2.1_src_core.tar.bz2. > So far so good. > > I then ran the configure script as described in the build (Ubuntu) > instructions, and after installing quite a number of packages, managed > to get it too execute with no problems. > > Next I ran "./bootstrap" and "source LinuxX86Env.Set.sh" as described > in the build guide, and again no problems. > > Finally, I ran "cd instsetoo_native && build --all", but this fails > when building module ucb.
[...] > dmake: makefile.mk: line 61: Error: -- Include file > /home/zeppelin/Desktop/OOO320_m19/solver/320/unxlngi6.pro/inc/external/neon/version.mk, > not found > > ERROR: Error 65280 occurred while making > /home/zeppelin/Desktop/OOO320_m19/ucb/source/ucp/webdav rmdir > /tmp/c8b1jjIqx5 > > > > Having looked at the folder "solver/320/unxlngi6.pro/inc/external", I > can find no "neon" folder, and have no idea what I am doing wrong. it should be copied there by the "deliver" step in module "neon". apparently "ucb" actually has a build dependency on "neon", so what you did (build --all in "instsetoo_native") should have built and delivered "neon". that that didn't happen is weird. you do not build against system neon, right? i.e. variable $SYSTEM_NEON is not set, and $BUILD_TYPE includes NEON, right? (your configure parameters would also be helpful to debug such problems) as a workaround, you can try to cd into the "neon" directory and call "deliver" by hand. -- "C++ is in that inconvenient spot where it doesn't help make things simple enough to be truly usable for prototyping or simple GUI programming, and yet isn't the lean system programming language that C is that actively encourags you to use simple and direct constructs." -- Linus Torvalds --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
