GNU autoconf creates a shell script `configure` that is used to configure software for compilation for UNIX-like operating systems.

learn more… | top users | synonyms

0
votes
1answer
30 views

pkg-config: PKG_PROG_PKG_CONFIG: command not found

I get the following error ./configure: line 11162: PKG_PROG_PKG_CONFIG: command not found when this is code is executed in (kivy-ios/tools-build-sdlmixer.sh) if [ ! -f ...
0
votes
1answer
17 views

What is the easiest way to get flymake to work with an autoconf project with a separate build directory?

I sometimes want to keep my build directory separate from my source directory (eg I'm using the same source NFS mounted to multiple different build environments). In this configuration I can't use ...
0
votes
1answer
11 views

configure finds library, but ldd does not

I am making use of a logging library, named liblogger, (that I've implemented) within another library, libmsg. For both of them, I'm using the autotools. I successfully install the liblogger library ...
0
votes
1answer
21 views

autotools: propagating package version into subpackage

I have an autotools based package call Foo. For historical reasons (are there ever any other reasons?), this contains a subpackage subBar. Foo -| |- conficure.ac |- Makefile.am |- ...
1
vote
0answers
12 views

How to dump conftest.c?

I have problems linking to a lot of libraries with a cross-compiler. Is it possible to dump the file conftest.c to a safe location each time it's being generated? I tried to uncomment the lines rm ...
0
votes
1answer
19 views

Error Packaging a Shell script with Autotools

I'm trying to write a simple Autotool package that just packages a single script. This might seem like overkill, but the script is to be added into the build-system for an embedded system and the ...
0
votes
4answers
35 views

bison in autoconf can not prompt AC_ERROR

My configure.ac is: AC_PREREQ(2.69) AC_INIT([mkbib], [2.1], [bnrj.rudra@yahoo.com]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([1.9.6 dist-bzip2 subdir-objects foreign]) # Checks for programs. ...
5
votes
2answers
105 views

Portable method to package C++11 program sources

so, C++11 has been around for a while and, given there already are compilers supporting it on most platforms, it would be nice to use it in some real software -- e.g. one that can be packaged in ...
0
votes
2answers
39 views

How to create a Makefile for an existing project

I'd like to create a Makefile for a moderately sized C++ project (~110 .cpp and .h files) that was created in Xcode. I don't own a mac, so I can't just go into xcode and export a Makefile. From my ...
0
votes
1answer
54 views

Adding AM_LDFLAGS has no effect in final library, causing linker errors

I'm using GNU autohell for my project which is a C++ library. It should link against ZMQ and boost. So I added this check for needed libraries in configure.ac PKG_CHECK_MODULES(ZMQ, libzmq >= ...
0
votes
0answers
23 views

autoconf: how to check for presence of #define

I am writing a program that uses boost::asio to access serial ports. According to the documentation, serial port support is available when the BOOST_ASIO_HAS_SERIAL_PORT macro is defined. Since this ...
1
vote
1answer
42 views

Automake demands “Autoconf 2.65 or better” and yet I already have Autoconf 2.69 installed

Right now I'm trying to build Automake on my Mac, and so far everything has been going swimmingly. I built Autoconf and m4 without any issues out of the packages (as opposed to git pulls). And then I ...
0
votes
3answers
69 views

automake configure ignoring option --with-libxml2=yes

I am trying to compile, libgphoto2 with libxml2 support followint the guidelines here. Everything is ok until I try to run ./configure: ./configure --prefix=/tmp/gphoto2/local --with-libxml2=yes ...
0
votes
1answer
37 views

error when compiling — using autogen generated makefile

I am trying to compile a libwebsocket package, procedure used is :-- ./autogen ./configure make I am getting libtool error at make time :--- make make all-recursive make[1]: Entering directory ...
1
vote
0answers
115 views

Installing autoconf on OS-X 10.8 (Mountain Lion) does not remove $PHP_AUTOCONF error message associated with phpize failure

I have followed the string on "$PHP_AUTOCONF errors on mac os x 10.7.3 when trying to install pecl extensions" as well as looked at several other websites for a solution to the following problem. One ...
0
votes
1answer
42 views

which files of an autoconf project to put into .gitigore?

We have the ctemplate library included in our git-managed project which is based on GNU Autoconf. I would like to put everything which is generated by Autoconf into the .gitignore file to avoid ...
1
vote
2answers
62 views

Autoconf: default out-of-the-box optimizations vs. cross-compilation

I am the lead developer of a software package for which performance is of utmost importance. The performance of said software can drastically improve when certain facilities are available, such as: ...
0
votes
1answer
45 views

Jamfile - “Unknow rule” - How to read into it

I am trying to compile this project - It compiles perfectly in Linux(ubuntu). But I want it to work on Windows. So I installed MinGW (which comes with Jamplus installed) - and went ahead installing ...
0
votes
2answers
48 views

Make autoconf “check” target without running it

Is there a way to compile the "check" target of an autoconf project without running it? I have Eclipse Juno with the "C/C++ Unit Test" plugin. I would like to be able to make the check target, then ...
1
vote
1answer
23 views

Why does autoconf cache my macro?

I am creating an android.m4 file to easily look up path to programs in the android SDK/NDK. The android.m4 file contains an helper function called _android_path_found_notfound: # ...
0
votes
1answer
33 views

Autoconf spaces in path

I just converted a c++ project to a autotools project and written a few lines in configure.ac from here. Build fails saying "sh: /home/me/bla: No such file or directory" when my path should be "bla ...
1
vote
1answer
14 views

link cppuint library only when doing a “make check”

You can run unit tests in our application by doing a make check. However, the cppuint library is hardcoded into LDFLAGS in Makefile.am. Is there a way of linking in the cppuint library in configure.am ...
0
votes
0answers
8 views

Test for previous define

I have the following option AC_ARG_ENABLE([opt]) AS_IF([test "x$enable_opt" = "xyes"], [AC_DEFINE([DEF],[1])], [AC_DEFINE([DEF],[0])]) and would like to test in the same file, which ...
0
votes
1answer
54 views

Checking for a C++ compiler's presence

The GNU documentation for AC_PROG_CXX states that: Otherwise, if the macro is invoked without an argument, then search for a C++ compiler under the likely names (first g++ and c++ then other ...
0
votes
1answer
47 views

AM_CONDITIONAL testing size of type

I would like to define PLATFORM64 if SIZEOF_VOIDP equals 8, the configure snippet below don't work but shows what I would like to achieve. Is there a way of doing this in my configure script? # Get ...
1
vote
1answer
90 views

automake 1.12 changes bison/yacc output names, backwards incompatible change?

I have posted a repository at https://github.com/Habbie/autoyacc-problem to demonstrate my issue. With automake 1.11 and below, using AC_PROG_YACC in configure.ac and AM_YFLAGS=-d in Makefile.am, ...
0
votes
0answers
84 views

Automatic generation of AC_CONFIG_FILES input

When creating a configure.ac file the standard practice seems to be to explicitly hard code a list of Makefiles that should be created from the corresponding Makefile.in. However it seems like this ...
1
vote
0answers
32 views

What is the complete list of packages I need for configuring software in Linux? [closed]

I am trying to build some software on a Linux machine that, for whatever reason, wasn't supplied with a terribly complete set of packages. First I had to install autoconf. Then I realized I had to ...
1
vote
1answer
31 views

conditional AC_OUTPUT

I would like to maintain a configure file that generates a different set of Makefiles, depends on what flags the configure script was given. To be more specific, I want make dist to generate a subset ...
0
votes
3answers
86 views

GNU make use file as target in SUFFIXES

Makefile is using .SUFFIXES: .ext1 .ext1: echo bla bla I have a configuration file path/to/abc.ext1 so make path/to/abc works fine. I want make path/to/abc.ext1 to work as well. It would be ...
1
vote
0answers
110 views

cannot find the flags to link with Boost thread

I'm trying to compile a library requiring boost. I was able to make it work on ubuntu but I don't understand why the ./configure can't find boost_thread on Mac OS X. Boost .hpp are located in ...
1
vote
2answers
53 views

How to use an alternative library outside of linux system

I'm build an opensourced project configured by GNU autoconf. It depends on the glib2.36 and it reports the glib library's version is lower than that. But I don't want to replace my system's glib in ...
2
votes
2answers
59 views

Should I include configure and makefile in a github repository?

We recently moved from subversion to git, and then to Github, for several open source projects. Github was nice in that it provided a lot of functionality. One of the things I particularly like is ...
0
votes
1answer
68 views

Automake not including object files in built static library

I currently have a largish project including multiple applications and am trying to build a static library along with one of my applications for inclusion in several of the other applications. I ...
1
vote
1answer
72 views

Use local library if system library is missing

I am using Autoconf and Automake tools, in ordrer to develop/distribute my application. Everything is working fine right now. My applications depends on GSL (GNU Scientific Library), so in my ...
13
votes
1answer
122 views

Autoconf check for struct flock

fcntl() uses struct flock structure to define and check file locks. Unfortunately, on different Unix systems the fields in this structure are in different order. Does anybody know how one could check ...
3
votes
1answer
169 views

How to cross-compile Git for ARM?

Unfortunately, I am having difficulty cross-compiling Git for the ARMv6 architecture. But before I begin describing the steps I've taken and commands I've entered, I should briefly describe the build ...
0
votes
2answers
26 views

Should (and how to do it) include paths be collapsed in configure script?

In my configure/configure.ac, I do multiple PKG_CHECK_MODULES calls. Most of them return the same -I path:-I/usr/local/include, and also the same -L path: -L/usr/local/lib. I would say that -I path ...
4
votes
1answer
896 views

installed libtool but libtoolize not found

im trying to build libxml2 from source on my mac. so i have autoconf libtool and automake installed using mac ports autoconf and automake seem to be working fine as expected. i try running ...
4
votes
3answers
117 views

Using autotools for a project with platform specific source code (multiple platforms)

I'm developing a project that is currently written in C but I plan to write some of the functions in asm for at least two platforms (x86_64 and arm). So I might have some source files: generic/one.c ...
0
votes
1answer
116 views

Configure.ac AC_CHECK_HEADERS not finding ruby.h

I am trying to build some code, but find that I need to alter the configure.ac file first, as it is not searching in the correct place for the ruby headers. Today is the first day I have ever even ...
0
votes
0answers
99 views

how to make the binary from a git project

I have downloaded a git project using the git url git://anongit.freedesktop.org/gstreamer/gst-omx The project was gstreamer plugin for openmax to be used with RaspBerry pi. I have to build the code ...
0
votes
0answers
74 views

libtool and ltdl dynamic loading (cannot open shared object file)

I use ltdl to load a dynamic library, it works well in project folder. But if I do sudo make install, and run from installation folder, it said "cannot open shared object file". following is the some ...
1
vote
2answers
110 views

How to pass shell variable to autogen.sh script

I calling a autogen.sh script from other Makefile, and this Makefile is called from a shell script, If I set a variable VAR on this more external script I can use-it normally inside this Makefile, ...
0
votes
2answers
220 views

Cross Compiling For ARM With Autoconf

I am having trouble cross-compiling a library for my arm board using autconf. I am using this line: ./configure --target=arm-linux --host=arm-linux --prefix=/bla/bla/bla/linux_arm_tool CFLAGS='-m32' ...
0
votes
3answers
46 views

best practice for building with/out included libraries

a project ships with a copy of library foo, in a filesystem layout like: myproject/ myproject/src/ # sources of my project myproject/libfoo/ # import of "foo" library the standard (autotools-based) ...
0
votes
3answers
172 views

How to get shell script output into Makefile.am at make time?

I am working on an autotools project, and am a newbie to the autotools world. For various reasons, detailed at the bottom for completeness, I have a shell script from which I want to get the output ...
1
vote
1answer
161 views

How to get absolute path to top build directory in autoconf configure.ac?

I am working on a project which requires a subproject which has its own makefile and configure.ac. The subproject is a program which is used to generate source files for the main project. There is an ...
18
votes
2answers
291 views

Cause compilation error in C89 if two types are not the same

Using only the features of C89, given typedef [unspecified token sequence] T1; typedef [another unspecified token sequence] T2; exhibit a language construct which will compile without error if and ...
0
votes
2answers
107 views

Make distcheck doesn't copy all sources

My project is structured as followed: / subdir1 subdir2 subdir3 common_include Each subdir compiles different binaries and libs for my project. common_include includes .h (C++ ...

1 2 3 4 5 9