Looks like we're all lost on this one. I've found the problem but don't know how to fix it....
If you look in config.status you'll see a bunch of regex's which strip out autof00 vars such that they aren't included later in the resultant Makefile's. These lines come from the configure script, which creates config.status. The lines in config.status look like this: [EMAIL PROTECTED]@%%g [EMAIL PROTECTED]@%#%g The lines for ECORE_TXT don't exist. Because of this the vars don't get chomped off, and when you look at the makefile for the TXT module you see: @[EMAIL PROTECTED] = libecore_txt.la The problem is that when the Makefile goes to build all it ultimately goes looking for lib_LTLIBRARIES, which doesn't exsist because @BUILD_ECORE_TXT_TRUE@ was never chopped off. So to work around this you can do either of the following: A) Run autogen.sh and configure as normal. BEFORE you run make edit config.status and add the lines: [EMAIL PROTECTED]@%%g [EMAIL PROTECTED]@%#%g Then run make and things should be fine. B) Run autogen.sh, and the configure. When the X module fails, go back to src/lib/ecore_txt and run "make libecore_txt.la". The module should compile fine, then go back to the top of the source tree and run make again. Things should run fine. But, despite all this, I can't figure out what the problem with configure.in is that doesn't put the needed lines in config.status. I've dug thru the autof00 manuals, but configure.in looks fine to me. benr. ------------------------------------------------------- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tutorials. Learn everything from the bash shell to sys admin. Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click _______________________________________________ enlightenment-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
