Tagged Questions

3
votes
8answers
320 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
2answers
483 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 ...
1
vote
1answer
509 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
195 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
2answers
131 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
250 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?
0
votes
2answers
415 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 ...