Tagged Questions

m4 is a general purpose macro processing language developed by Brian Kernighan and Dennis Ritchie.

learn more… | top users | synonyms

4
votes
4answers
88 views

Approaches to implement macro definitions in html

I would be great doing things like <define tag="myTag" options="3"> <h1> #1 </h1> <ul> <li> #2 <li> #3 </ul> </define> and then use it: ...
4
votes
2answers
2k 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 ...
3
votes
8answers
294 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 ...
3
votes
4answers
257 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
58 views

Add sources to build php extension

I want to write a test php extension, which will provide a test class. I want to extract class declaration into a separate C-File and call class registration from module init function of myext.c file. ...
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 ...
2
votes
2answers
466 views

How do I escape text in autoconf/m4?

The following code from my configuration.ac file does not work (note the nested square brackets with [default=no]): AC_ARG_ENABLE(debug, [ --enable-debug build with debugging support ...
2
votes
2answers
224 views

What's the point of aclocal?

What's the point of the aclocal script and aclocal.m4 file, in context of using autotools to configure source files? From what I read, aclocal scans macro files for macros that are later used by ...
2
votes
1answer
494 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 ...
1
vote
1answer
27 views

Automatically escaping slashes in m4 for shell commands

I'm writing macros with m4 to easily embed math in HTML code. Slashes need to be escaped and I want to automate this process but I have not yet figured out a good way. Running m4 on the following ...
1
vote
1answer
47 views

Expansion of macro not working in M4

I'm working on a system that uses M4 to expand some files out, but I'm getting a problem with the expansion in certain cases. The convention for definition / macro naming (which I'd rather not change ...
1
vote
1answer
418 views

aclocal/autoconf reports missing m4sugar.m4 on Mac OS X?

I have Xcode 3.2 installed into /Xcode3.2, and did not install anything into /Developer. When I wish to do development, I start up a shell as follows alias sysroot='PATH=${PATH}:${XCODE}/usr/bin ...
1
vote
1answer
36 views

Doxygen for GNU M4 language

Is it possible to document GNU M4 macros with Doxygen or something similar? We have a large collection of macros and would like to document them in comments and generate documentation from that ...
1
vote
1answer
134 views

In m4, how do you include a file that has an environment variable in its name?

I want to include a file based relative to my sandbox base directory inside of my m4 text without using the -I switch. So far, I have figured out how to grab the environment variables using a sys ...
1
vote
2answers
63 views

M4 binary output

Is it possible to define a M4 macro that outputs a binary integer? For example: define(`foo', $1) foo(42) which should output 1 byte with a value of 42.
1
vote
1answer
180 views

m4 - executing a shell command

I'm new to m4 and am trying to set up a macro which allows the user to specify the location of a library at configure-time ./configure --with-mylib=/path/to/lib.so. In the m4 macro using AC_ARG_WITH, ...
1
vote
3answers
4k views

how to run and install phpize

I have been meaning to install ffmpeg as an extension to my php setup. So before I can install it, I need to phpize it. I installed php5-dev by sudo apt-get install php5-dev But now when I run phpize ...
1
vote
2answers
125 views

How can I escape paths with spaces inside AC_CONFIG_SRCDIR

I need to include some paths in AC_CONFIG_SRCDIR which contain spaces. How should I escape them? For example, if I have "some file.in", how should I declare it in: AC_CONFIG_SRCDIR[some file]
1
vote
2answers
244 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
80 views

Why undefine failed in m4?

define(foo,0000) foo 0000 undefine('foo') foo 0000 thanks. jcyang.
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
0answers
22 views

Compiling VIPS still stuck at PKG_CHECK_MODULES after much effort

I have updated pkg-config to 0.24 and the old problem (at the end of this post) is solved. By running ./bootstrap.sh, I got configure file, and by running ./configure I did not get PKG_CHECK_MODULES ...
0
votes
1answer
29 views

m4 does not parse local variables

I have a problem with an m4 macro. The macro is define(BARRIER, ` #if defined USE_PTHREAD_BARRIERS barrier_wait(&$1,$2,$3); #elif defined (USE_CENTRALIZED_BARRIERS) ...
0
votes
0answers
20 views

Recommendation for macro language similar to M4

I am looking to use a language similar to M4 but without the idiosyncratic space and backticks you have to deal with when representing conditional statements of M4. To all the language gurus: any ...
0
votes
0answers
110 views

SCons + custom Builders: Do I have to do multistage processing?

My project contains .m4 files that should be processed into .S files (assembly code that needs to be preprocessed) and then compiled into object files. One of the compilers that I use cannot handle .S ...
0
votes
1answer
18 views

how to chop the last char of a string in m4

I am trying to create a macro for deleting the last char of a string in m4, I have trying to do something like: define(`delete_last',substr(`$1',`0',eval(``len($1)'-1')))dnl This is the one that ...
0
votes
1answer
85 views

M4 eval precision

I'm trying to use M4 macros to generate css files. I'm willing to enter my values in px and do simple math using eval() to get results in em. Unfortunatly I didn't find how to get floats. ...
0
votes
1answer
117 views

How can you do an ifdef guard for m4 macro file includes?

For C header files, you can prevent multiple inclusion of a header file like: #ifndef MY_FOO_H #define MY_FOO_H [...] #endif How can I do the same thing in m4 such that multiple include() macro ...
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
52 views

How to match newlines in GNU M4 _properly_

I am trying to craft a macro replacing newlines. My first try was: define(`m4_pascal_str',` patsubst(`$1',`^\(.*\)$',`\1++') ') m4_pascal_str(` 11 22 33 44 ') define(zz,` 11 22 33 44 ...
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 ...
0
votes
2answers
396 views

autoconf, how to include file from AC_CONFIG_SRCDIR file

I would like to be able to merge two files into one during configure run. I already do textural replacement using AC_CONFIG_SRCDIR[file.hpp] macro on some files. is there some directive to include ...
0
votes
1answer
77 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 ...
0
votes
1answer
78 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: ...