Tagged Questions
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 ...
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?
0
votes
2answers
397 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 ...