0
votes
2answers
34 views
In autotools, what is dnl’ed?
I see alot in autoconf code about stuff being dnl'ed and not dnl'ed. What is dnl'ed?
1
vote
1answer
47 views
Why undefine failed in m4?
define(foo,0000)
foo
0000
undefine('foo')
foo
0000
thanks.
jcyang.
0
votes
1answer
25 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
1answer
62 views
How do I strip a substring given that the total string is too long? (m4)
I have code like this:
define(`DOSPACE',`...................................
.........................
................`'ifelse(eval(len(`Space: $2: $3')>60),1,`...'substr($3,eval((60-len(`Space: …
0
votes
1answer
20 views
how can I collapse multiple lines into one line with the m4 preprocessor?
We have an internal configuration file that processes lines one by one. Unfortunately, the lines have gotten really big over time. The config processor does an m4 pre-process on the config file. Is …
1
vote
1answer
51 views
Using m4 macros with Eclipse & Java
Is there a way to use m4 macros when developing in Java for Eclipse, ie. making sure the preprocessor is automatically invoked before Eclipse compiles?
Or has anyone used another preprocessor …
0
votes
2answers
81 views
Is there an eclipse plugin for developing in m4?
Googling has turned up little to nothing.
I need to develop some heavy stuff in m4 and I'd love to do it in my favorite environment with all the bells and whistles thereof.
There are packages for …
2
votes
1answer
242 views
What is the best way to automatically transpose a LilyPond source file into multiple keys?
problem
I'm using LilyPond to typeset sheet music for a church choir to perform. Depending on who is available on any given week, songs will be played in various keys. We have an amazing pianist who …
