m4 is a general purpose macro processing language developed by Brian Kernighan and Dennis Ritchie.
0
votes
1answer
8 views
string comparison and macro OR condition
In M4 language, is there a way that I can compare a string argument to two values and if any of those two match, then X is executed, other Y is executed?
For example, if argument to MACTEST macro is ...
0
votes
1answer
59 views
Meta programming and runtime code generation
I have a requirement where I need to generate the function arguments at runtime.
At compile time, I do not know the number of arguments or their type. It has to be read from a file at runtime, ...
0
votes
1answer
24 views
(Macro Language Processor m4) How do I run resp. compile .m4 programs on Ubuntu 13.4?
I installed m4 from this site:http://www.geeksww.com/tutorials/libraries/m4/installation/installing_m4_macro_processor_ubuntu_linux.php
So far so good. The package also had some examples in it. If I ...
0
votes
1answer
32 views
(m4: Macro Processor) Dont understand complex define command
I'm currently reading the book
"SPARC Architecture, Assembly Language Programming, and C. Second Edition".
I got to a place in the book, where I don't understand or am not able to comprehend a ...
1
vote
1answer
41 views
Have error output include last couple lines of code
Is it possible, and if so, how would you make error output include the last couple lines of code? I know about GNU g++'s support for __LINE__ and __FUNC__ but those only give the line number as an int ...
0
votes
1answer
42 views
Updating m4 on mac OS X 10.6.8
I'm trying to upgrade m4 from version 1.4.6 (the version that comes with OS X 10.6.8) to 1.4.16. I've installed with homebrew, and I've also built from source into /usr/local/ (and edited /etc/paths ...
0
votes
1answer
57 views
how to use variables for strings in autoconf:configure.ac
How to use variables for messages inside configure.ac
if test "$foo" = "yes"; then
AC_MSG_ERROR([this string is being used in WARN as well as ERROR])
else
AC_MSG_WARN([this string is being ...
0
votes
1answer
78 views
PHP - Extension Config.m4 file
I am trying to code PHP Extensions using this tutorial.
In the config.m4 file, there are Macros like PHP_ARG_ENABLE etc. Where is the defintion for these macros?
1
vote
1answer
36 views
m4 expand macro inside words
I am very new to m4 but cannot find this simple thing:
Is it possible to expand a macro in the middle of a word? (I would use it for a counter
that would be used in a C symbol name in low-level code)
...
1
vote
0answers
70 views
/usr/bin/m4: Directory not empty [closed]
I am trying to compile freeswitch on arm5vte file system. While doing bootstrap.sh it says
/usr/bin/m4: cannot remove temporary directory /tmp/m4-m8UrXp:
Directory not empty
My build tool ...
3
votes
1answer
48 views
How do I define a macro with the same name as its expansion in m4?
I am attempting to replace if with if( using GNU m4 1.4.14 and I am receiving ERROR: end of file in argument list
when trying:
define(`if', `if(')
define(`then', `){')
define(`fi', `}')
if foo then ...
0
votes
1answer
34 views
how to check return value of shell cmd in autotools configure
I would like to run a shell command during the configure process- if the return value of this operation is 0, I would like to use it. Otherwise, I want to exit with error message.
I wrote something ...
4
votes
2answers
100 views
autoconf: should I always use AS_IF over if and m4_if?
The autoconf manual suggest using AS_IF instead of if, but it doesn't mention m4_if. Should AS_IF also be preferred over m4_if?
The "Limitations of Builtins" section of the manual says to use AS_IF ...
0
votes
1answer
57 views
GNU-M4: Strip empty lines
How can I strip empty lines (surplus empy lines) from an input file using M4?
I know I can append dnl to the end of each line of my script to suppress the newline output, but the blank lines I mean ...
0
votes
1answer
31 views
How to nest macro definitions in M4?
I would like to define a macro that can define more macros as:
define(`master_macro',
`foreachq(`slave_macro', `$*',
define(`slave_macro', ...)'
then I can use master_macro to define more similar ...
1
vote
1answer
51 views
What is M4 composite macros, like foreach?
I would like to use m4 for doing some type-saving stuffs, so the loop will be definitely needed. When I read m4 doc, in chapter 6 there is 6.4 and 6.5 for iteration. But it looks like that foreach is ...
1
vote
1answer
74 views
Using m4 to convert a string to ASCII codepoints
This should be possible, but as I am a novice with m4, I'm not sure how to go about it, or how to write an algorithm to do so (in m4).
edit:
Just solved it, anyway for future reference, I have a ...
0
votes
1answer
19 views
How to pack multiple statements
I'd like to regroup multiple statements in a []:
AC_ARG_WITH(
[float],
[AS_HELP_STRING(
[--with-float],
[use float instead of doubles to store polynoms coefficients])],
...
2
votes
1answer
54 views
Suppress unnecessary output to config.h.in
When AC_CHECK_HEADERS is invoked inside m4_foreach_w, autoheader(2.65) seems to generate a bogus template. For example:
m4_foreach_w([hdr],[[foo.h] [bar.h]],
...
0
votes
1answer
107 views
How to use QT and GNU Autotools by using AutoTroll?
I would like to use Autotools and QT4 together. For this i would like to use AutoTroll.
As the Website says, it should be very easy to use it. Unfortunately i was not able to do so.
I have a working ...
1
vote
1answer
215 views
No usable M4 in $PATH or /usr5bin
As part of a long, sordid story whose end goal is simply to get GMP installed for use with code::blocks in Windows, I am trying to configure gmp. I do this with the following command:
./configure ...
1
vote
1answer
2k views
How to update m4, autoconf, automake and libtool properly? Mac OSX
Hej everyone,
I'm trying to update my autoconf since I need version 2.62 or newer and Mac OSX 10.6.8 only provides the old 2.61. (Eventuall, I am trying to install the SAGA-GIS API).
I followed ...
1
vote
1answer
226 views
AC_SUBST with dynamic variable name
I'm trying to create an m4 macro that basically calls AC_CHECK_SIZEOF(type) then uses AC_SUBST to define that variable for substitution.
So given input of:
AX_CHECK_SIZEOF_AND_SUBST(int, 4)
I want ...
5
votes
1answer
74 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 ...
2
votes
1answer
105 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. ...
0
votes
0answers
147 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 ...
1
vote
1answer
71 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)
...
5
votes
4answers
174 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:
...
1
vote
1answer
111 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
2answers
40 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 ...
4
votes
4answers
3k 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
107 views
Android NDK and .m4
There is an OpenSource Linux library that has a file folder with files .m4. I want to port this library on Android NDK. Question: how to compile these. m4? Ie how to write Android.mk?
1
vote
1answer
141 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.
...
1
vote
1answer
73 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 ...
0
votes
1answer
311 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 ...
2
votes
1answer
379 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 ...
6
votes
8answers
728 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 ...
1
vote
2answers
102 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
552 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
5answers
415 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
81 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
457 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.
...
2
votes
4answers
443 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 ...
0
votes
1answer
100 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
...
1
vote
2answers
177 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]
0
votes
1answer
161 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
672 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 ...
3
votes
3answers
897 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 ...
6
votes
2answers
4k 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
2answers
368 views
In autotools, what is dnl'ed?
I see a lot in autoconf code about stuff being dnl'ed and not dnl'ed. What is dnl'ed?

