0
votes
1answer
7 views
Header dependency in automake
I'd like to create a Makefile.am file which generates one header file mentioned in a xxx.c file.
Let's say that xxx.c contains:
#include <version.h>
...
and that I have a …
1
vote
0answers
17 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 …
0
votes
6answers
76 views
How do I stop automake from adding -I. to my compile line?
How do I stop automake from adding -I. to my compile line?
It seems automake or libtool objects always have a compile command similar to:
g++ -DHAVE_CONFIG_H -I. -I./proj/otherdi …
0
votes
1answer
44 views
Debian dropped support for .la files; how do I build now?
Background
I recently came across the fuppes UPnP media server and it seemed great. I installed it on my home server and started using it to stream video to my XBox. It worked rea …
0
votes
2answers
37 views
How do you set the order of libraries in automake?
How do you set the order of libraries in automake?
In my am file I have something like:
myprog_DEPENDENCIES = adhoc-target
myprog_SOURCES = myprog.c
myprog_LDADD = libmine.la
myp …
0
votes
3answers
95 views
Should I use automake/autoconf for distribution of a small ansi C app?
I have a small ANSI C application which compiles cleanly under different tested compilers and platforms. It doesn't use any preprocessor switches or external dependencies and the m …
1
vote
2answers
35 views
What is the best way to auto detect library dependencies in a C/C++ project?
What is the best way to auto detect library dependencies in a C/C++ project?
I have a project where I have all the dependencies on the machine. It builds and runs. Now I want to p …
1
vote
2answers
32 views
How should I run a prebuilt Makefile from a Makefile.am?
How should I run a prebuilt Makefile from a Makefile.am?
I am new to automake/autoconf build system. The package I am implementing autotools for has a couple libraries and test ex …
1
vote
2answers
54 views
libtool deleted by ‘make distclean’
I've copied libtool into my program's source tree to distribute it with the program. But when I run 'make distclean' libtool is deleted with the rest of the rest of the generated …
0
votes
1answer
114 views
Linking a PHP Extension Written in C
Edit: Revising My Question
When building an external PHP module in C, how do I link shared objects?
2
votes
4answers
172 views
In very simple gtk2 c app, problem setting up gnu build tools
UPDATE: First problem solved, second one described at the bottom of this post.
UPDATE2: Second problem solved as well.
I'm trying to learn about setting up GNU build tools (autoc …
0
votes
1answer
51 views
How to point autoconf/automake to non-standard packages
I'm trying to build ZooKeeper on a RedHat Linux box. (Exactly what ZooKeeper is is probably not important :-)
When I follow the package instructions, I get:
$ autoreconf -if
acl …
3
votes
3answers
254 views
Directory structure for C++ library
I am working on a c++ library. Ultimately, I would like to make it publicly available for multiple platforms (linux/windows at least), along with some examples and python bindings. …
2
votes
5answers
771 views
Errors linking libresolv when building PHP 5.2.10 from source on OS X
To begin with, I would normally opt to use a pre-compiled binary of PHP, but am required to build from source for a specific business need. (I'm not the type that compiles open-sou …
4
votes
8answers
167 views
Is it worth learning GNU Make?
I'm lately feeling the need to learn a build tool. I'm looking through StackOverflow for recommendations and Gnu Make gets barely mentioned. Instead I see Ant, Maven, CMake, Scon a …
