Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Problems with Convert Anything to PalmDoc Format' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Problems with Convert Anything to PalmDoc Format
Authored by: evildrbob on Feb 25, '03 12:27:36PM

I had the same problem with configure and then the printing error.

One comment - the aconf2 file? After commenting out every line beginning with a "#" I was left with no code uncommented - here's my file:

/*
* aconf2.h
*
* This gets included by aconf.h, and contains miscellaneous global
* settings not directly controlled by autoconf. This is a separate
* file because otherwise the configure script will munge any
* #define/#undef constructs.
*
* Copyright 2002 Glyph & Cog, LLC
*/

/#ifndef ACONF2_H/
/#define ACONF2_H/

/*
* This controls the use of the interface/implementation pragmas.
*/
/#ifdef __GNUC__/
/#define USE_GCC_PRAGMAS/
/#endif/
/* There is a bug in the version of gcc which ships with MacOS X 10.2 */
/#ifdef MAC_OS_X_VERSION_MAX_ALLOWED/
/# if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2/
/# undef USE_GCC_PRAGMAS/
/# endif/
/#endif/

/#endif/


Is this correct? It doesn't seem to make sense to comment everything out, but the instructions *did* say every line with a # in front of it.



[ Reply to This | # ]