I want to distribute my source code and relevant data files using Autotools: ~/foo$ ls -R .: confconfigure.acdatMakefile.amsrc
I have a autotool project where part of the source code is downloaded dynamically from the net (because of IP rights preventing direct redistribution) and then built.
I\'m looking for some tips to implement binary --version that would provide good information about the version it was compiled from.
I have a program, myprogram, which is linked with a static convenience library, call it libconvenience.a, which contains a function, func(). The function func() isn\'t called anywhere in myprogram; it
I have a project using autoconf and automake with following structure: / src/ class.h class.cpp test/ class_unittest.cpp
I have an error while trying to run aclocal although i have the Autoconf v 2.67 installed configure.ac:6: error: Autoconf version 2.62 or higher is required
I have a project that is a library that links against libresolv, It works fine on recent distros: Ubuntu 10.xFedora 13, Mandriva
I am using GNU autotools for my 开发者_JAVA技巧project. The configure.ac script has the following snippet.
In my Makefile.am, I have SUBDIRS = libltdl . This is because I want to be able to use the version of libltdl included with my package (i.e. ./configure --with-included-ltdl). However, I occasional
I have a problem trying to use autotools for a simple contrived project, the task is simple, use Objective-C on Mac OSX, and C++ on Windows (mingw) - with some C glue in the middle.