Tagged Questions
3
votes
8answers
295 views
Are there noteworthy uses of m4 besides autoconf?
Does someone know of any uses of m4 besides autoconf (preferably in a c or c++ environment) that is more than just an academic excerise, because it helped solve a problem that would otherwise (for ...
2
votes
4answers
287 views
Scala, Maven, and preprocessors
I know all of the philosophical arguments against preprocessors and macros in Java. I don't agree that just because some may abuse a language feature, it should be excluded for all.
I would like to ...
1
vote
1answer
255 views
in m4's patsubst, how do I replace newlines with spaces?
How can I tell m4's patsubstr to replace all newlines in a string with a space?
I've tried:
patsubst(MULTI_LINE_STR_DEFINE,`\n',` ')
and
patsubst(MULTI_LINE_STR_DEFINE,`\\n',` ')
0
votes
3answers
236 views
preprocessor API for Java
Does anyone know of a Java preprocessor library? I'm searching for something like m4. I could just invoke m4 from Java and capture the result, but I don't want to depend on m4 being installed in the ...
0
votes
1answer
62 views
m4 does not obey expansion?
I use m4 for a little text preprocessing here, and it behaves in a way I don't understand.
This is the portion in question:
ifdef(`TEST',
define(`O_EXT', `.obj'),
define(`O_EXT', `.o'))
...
0
votes
1answer
287 views
Generic preprocessor: How to use for any kind of file?
I was wondering if someone uses a generic preprocessor for manipulating text files.
The idea came up, as Java does not have a preprocessor, but I'd like to have conditional code compilation, etc.
...
0
votes
1answer
90 views
Generating DDL (specific to postgres) Scripts Conditionally
My application does not fit into the "general purpose" RDBMS schema category, I do not want a ginormous DDL script -- therefore I would need #include semantics and I will probably have different ...