Top "Autoconf" questions

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

why autogen.sh failed even with the correct autoconf?

autogen.sh failed, the output shows that i need an autoconf of higher version. but in fact i have a 2.6…

centos autotools autoconf automake autogen
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. …

c autoconf
How do I get autotools to compile with the Intel compiler?

I want my code to compile with the Intel compiler(s) or with gcc/g++ depending on a configure argument. …

autotools autoconf automake
autoreconf failed with exit status 1

I am trying to install a program by cloning it with git. I am running in an Ubuntu 14.04.4 LTS. I …

shell autoconf autoreconf
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 …

c++ build makefile autoconf
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 …

unix command-line utc autoconf
how to create binary and .so using libtool

I have a set of cpp files that I want to compile directly into a binary and also to compile …

c++ gcc autoconf automake libtool
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 …

autoconf automake
How to upgrade openssl 0.9.8 to 1.0.2 with mod_ssl in Apache 2.2.9

I am asked to recompile mo_ssl with openssl 1.0.2 in SuseSE11SP3. However, I am a newbie to Suse, but …

apache autoconf suse php-openssl mod-ssl
Autotools check for C++11

I use AX_CXX_COMPILE_STDCXX_0X(can look on autoconf-archive) to check for c++11 capabilities of the compiler. It …

c++ c++11 autotools autoconf