Tagged Questions
GNU autoconf creates a shell script _configure_ that is used to configure software for compilation for UNIX-like operating systems.
15
votes
9answers
3k views
Alternatives to Autoconf and Autotools?
I'm a very frequent user of the GNU Autotools (mostly Autoconf, occasionally Libtool). I'm working on a project where portability is going to be a sticking point.. Yet, the rest of the team is just ...
10
votes
3answers
5k views
CFLAGS vs CPPFLAGS
I understand that CFLAGS (or CXXFLAGS for C++) are for the compiler, whereas CPPFLAGS is used by the preprocessor.
But I still don't understand the difference.
I need to specify an include path for ...
8
votes
5answers
220 views
How to check for haskell package versions in ./configure?
how can I tell configure to check for version >= x.y of a given Haskell package?
Thanks,
8
votes
3answers
1k views
gnu autotools: Debug/Release targets?
I've been looking for this for a while: I'm currently converting a medium-size program to autotools, coming from an eclipse-based method (with makefiles)
I'm always used to having a "debug" build, ...
8
votes
3answers
316 views
Injecting mercurial changeset as version information in a C executable
I would like the executables for a project I am working on to have the latest mercurial changeset recorded so that when a user complains about buggy behavior, I can track which version they are using. ...
8
votes
6answers
3k views
Library resolution with autoconf?
I'm building my first autoconf managed package.
However I can't find any simple examples anywhere of how to specify a required library, and find that library where it might be in various different ...
6
votes
2answers
59 views
Autoconf/Automake: How to avoid passing the “check” option to AC_CONFIG_SUBDIRS
I'm using Autoconf to build my c++ project. It uses third party code which is also built with the help of Autoconf/Automake. So in my configure.ac I've got the following line:
...
6
votes
5answers
1k views
Using rake with a non-ruby project
A workmate floated the idea of using rake as a build system for a non-ruby project. Is it possible to extend rake to compliment other languages where the autoconf toolset would usually be used?
5
votes
4answers
533 views
how to compile MPI and non-MPI version of the same program with automake?
I have a C++ code that can be compiled with MPI support depending on a
certain preprocessor flag; missing the appropriate flag, the sources
compile to a non-parallel version.
I would like to setup ...
5
votes
3answers
1k views
Automake generating binaries to bin/ instead of in src/
I searched for the answer to this question but couldn't find any good. Maybe they're old and something has changed, so I ask again.
I have a directory structure as:
my_project
src
bin
I want ...
5
votes
5answers
2k views
Shell variable with spaces , quoting for single command line option
Autoconf scripts have trouble with a filename or pathname with spaces. For example,
./configure CPPFLAGS="-I\"/path with space\""
results in (config.log):
configure:3012: gcc -I"/path with ...
5
votes
1answer
967 views
autoconf with -pthread
Greetings. I am trying to create an autoconf configure script that automatically checks for which pthread option to use and, ideally, specifies -pthread when compiling with gcc.
It was my hope that ...
5
votes
3answers
711 views
How to avoid redefining VERSION, PACKAGE, etc
I haven't seen any questions relating to GNU autoconf/automake builds, but I'm hoping at least some of you out there are familiar with it. Here goes:
I have a project (I'll call it myproject) that ...
4
votes
1answer
78 views
Custom command to generate object(.o) from binary file using autoconf
We have a project (c++) and it needs to include a binary file into shared library. This is done on windows by referencing the binary file from a resource file. On Linux it can be achieved by using ...
4
votes
2answers
485 views
Autoconf: dnl vs. #
The Autoconfig manual states that comment lines can start with either dnl or #.
Is there any difference between them, any reason to use one rather than the other in any circumstance? Or is it purely ...
4
votes
1answer
909 views
Autotools - tar This does not look like a tar archive
After running make distcheck I get the message that I have successfully built the package and is ready for distribution. If I untar the tar.gz with tar -zxvf hello-0.2.tar.gz it successfully extracts ...
4
votes
1answer
539 views
How to use autoconf with C++0x features
What are the best practices for using autoconf in conjunction
with shared_ptr and other TR1/BOOST C++0x templates so as to maximize
portability and maintainability?
With autoconf I can determine ...
4
votes
2answers
2k views
Why autoconf isn't detecting boost properly?
I am using autoconf to detect boost libraries, with the support of the autoconf-archive macros and they work fine with system-wide boost libraries, but fail if I manually compile boost in my home ...
4
votes
2answers
866 views
Portably include GLib headers in autoconf/automake
I need to include the GLib headers for a project that is built with an autoconf-based system for portability.
How can I safely import the GLib headers in a portable manner? I know about pkg-config, ...
4
votes
4answers
374 views
Refactoring build system to use Autotools
Over the past couple of days I have been reading into using autotools to build my project instead of the Makefiles I have pieced together over the past couple of months. Unfortunately I have not found ...
3
votes
2answers
72 views
Autoconf check for program and fail if not found
I'm creating a project and using GNU Autoconf tools to do the configuring and making. I've set up all my library checking and header file checking but can't seem to figure out how to check if an ...
3
votes
1answer
125 views
speed up autoconf/configure of large project
I have a large autoconf/automake project, broken into components using AC_CONFIG_SUBDIRS. Is there any way to make autoconf/configure run faster? Perhaps doing subdirs in parallel, or caching ...
3
votes
1answer
81 views
Locating $pkgdatadir defined by autotools from a script
My application uses autotools to install data files that are needed at runtime in $pkgdatadir. Part of the application is written in C, and the path to the data directory is set by the following ...
3
votes
3answers
289 views
Why doesn't autoconf pass the AC_CHECK_HEADER test when the .h is file clearly available?
I am having a bear of a time getting autoconf to check for the presence of a particular header file.
Let's call the header dependency "inky.h", and let's say that inky is a library that was installed ...
3
votes
2answers
134 views
Can I get UTC offset from Unix command line?
I'm writing an autoconf script that needs the current UTC offset. There's no obvious way to get this out of the date program. Is there any straightforward way to get this from a command-line utility, ...
3
votes
3answers
189 views
How to include .m4 files in Autoconf?
I have downloaded a macro from Autoconf Archive, and I want to use it. What do I have to put in my configure.ac file to make use this macro?
3
votes
3answers
653 views
autoconf/automake: conditional compilation based on presence of library?
I need to conditionally compile some code based on the presence of a library. Seems like this should be easy with autoconf/automake but I can't figure it out.
For example, if there is a PNG library ...
3
votes
8answers
296 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
3answers
106 views
Autoconf when there is no .pc file
I'm relatively new to using autoconf and so far I've only used PKG_CHECK_MODULES and that's worked for me.
But now I've come across a package, specifically the debian libmhash-dev v0.9.9.9-1, that ...
3
votes
2answers
177 views
configure.in or configure.ac?
It seems that some autoconf projects use a configure.in file to generate a configure script, and some use configure.ac.
What is the difference/advantage between using one or the other?
3
votes
1answer
85 views
detect obsolete and incorrect function prototypes with autoconf
I maintain an open source program that builds with autoconf.
Right now I'm having a problem with some of my users. They are using a pre-distributed VM from an organization that has an incorrect ...
3
votes
1answer
192 views
Any difference between configure.ac and configure.in, and Makefile.am and Makefile.in?
I have seen both in different things I have configured. What I the difference? Is it notable to use only one? Or does it not matter which one to use?
3
votes
1answer
1k views
Autoconf — including a static library (newbie)
I am trying to migrate my application from manual build to autoconf, which is working very nicely so far. But I have one static library that I can't figure out how to integrate. That library will ...
3
votes
3answers
370 views
Tips on how to deploy C++ code to work every where
I'm not talking about making portable code. This is more a question of distribution. I have a medium-sized project. It has several dependencies on common libraries (eg openssl, zlib, etc). It ...
3
votes
1answer
341 views
how get fully expanded variables out of configure?
i created a configure.ac file like this:
AC_INIT()
set
the purpose of this is to print every available environment variable the configure
script creates using 'set'
so i do:
user@host:~$ ...
3
votes
3answers
858 views
Why would autoconf/automake project link against installed library instead of local development library?
I'm creating a library libgdata that has some tests and non-installed programs. I am running into the problem that once I've installed the library once, the programs seem to be linking to the ...
3
votes
2answers
405 views
How to reconfigure a large program for GNU Autotools
I have a fairly large program written in C. It spans several files, and has a bit of retooling in order to attempt to compensate for platform issues. Specifically, I have header files for different ...
3
votes
2answers
2k views
Autotools : how to set global compilation flag
I have a project with several sources directories :
src/A
/B
/C
In each, the Makefile.am contains
AM_CXXFLAGS = -fPIC -Wall -Wextra
How can avoid repeating this in each source folder ?
...
2
votes
2answers
61 views
GNU Autotools: install binaries into /bin, /sbin, /usr/bin and /usr/sbin, interactions with --prefix and DESTDIR
Most packages using autotools are user-level utilities or at least high-enough level to be completely under /usr, or low enough to be entirely below /usr.
I'm writing a package that would need to ...
2
votes
3answers
175 views
How to use C++11 features with Autoconf?
I have a project configured via Autoconf, and I want to start using C++11 features in this project. How to have the "-std=gnu++0x" switch always enabled and support for the features checked while ...
2
votes
1answer
62 views
Autoconf subdirectories with subpackages depending on each other?
I've got a large project on my hand (master) that is split into several components (liba, b, c, d) to ease building and maintenance. When building the whole package, all of the subcomponents must be ...
2
votes
3answers
74 views
Can I build Perl modules with ExtUtils::MakeMaker-based build system “out of tree”?
Instead of adding or modifying files in the directory where the sources of a Perl module are unpacked, I would like to build everything in a separate directory. Is this easily achievable with a fairly ...
2
votes
3answers
259 views
Install data directory tree with massive number of files using automake
I have a data directory which I would like automake to generate install and uninstall targets for. Essentially, I just want to copy this directory verbatim to the DATA directory, Normally, I might ...
2
votes
2answers
80 views
Finding custom includes directories with autoconf
I'm trying to compile a program which uses the festival library.
Basically, the requirements are that you include the festival and estools header directories in the include path, and you include both ...
2
votes
1answer
69 views
autoconf & c++ & obsolete headers
Some code I have runs into the following with modern C++. Of course, there's a better way to express this in modern C++. Question is, how to use automake to set a CPP macro for conditionalization?
In ...
2
votes
1answer
26 views
Is there a versioned index of autoconf macros so I know which version to put in AC_PREREQ?
I'd like to use AC_PREREQ to state the minimum version my configure.ac requires. Neither the chapter Versioning nor the alphabetical index of available macros in the autoconf manual tell me when the ...
2
votes
1answer
82 views
Is there something like AC_CHECK_LIB for python setup.py build instructions?
I have a python package that builds its own extension module. currently I'm doing all the compilation in setup.py as an ext_module, but I really need AC_CHECK_LIB type capability - is there something ...
2
votes
2answers
226 views
Automake: dependency on build result
I use automake and autoconf.
In the subdirectory src/ the Makefile.am contains
bin_PROGRAMS = hello
hello_SOURCES = hello.c
After building hello I want to run a tool (some analyzer/optimizer ...
2
votes
1answer
216 views
Inconsistent results from AC_CHECK_FUNCS
I am having a problem with a configure script verifying the presence of some basic functions,
AC_CHECK_FUNCS([floor gettimeofday memset pow sqrt sin exp])
Under certain criteria, the results are ...
2
votes
1answer
260 views
Having trouble with configure.ac syntax using AC_SEARCH_LIBS
I'm trying to use AC_SEARCH_LIBS to find the location of the X libraries on my system. Some older systems (RH4) have the libraries in /usr/X11, while most current systems just put them in /usr/lib.
...