Need help !

2000-10-26 Thread Thomas Nagler
Dear "Automakers" I am a new user of automake, which I find realy quite useful. But by the way I have a problem, which kept me busy the last 4 days, and which is not working by now. Perhaps you can help me to get it run: I am working on a SUN SOlaris 2.7 and a Linux SUSE 7.0 The automake is the

Re: Need help !

2000-10-26 Thread Alexandre Oliva
On Oct 26, 2000, Thomas Nagler <[EMAIL PROTECTED]> wrote: > Using the Makfile.am below starts in compiling the files without > doing sysdep before. Therefore they miss sysdep.inc and sysdep.h files. Add to Makefile.am the line: $(libgetorb_a_OBJECTS) $(getorb_OBJECTS): sysdep.h sysdep.inc > M

How to install "config.h"

2000-10-26 Thread Robert Boehne
I have a massive set of C++ libraries that use CVS libtool, autoconf and automake to build and install. Since users then need to have _all_ the header files they also need to have the configure generated config.h What is the "best" way to coerce Automake into installing config.h in $(prefix) ? -

Re: How to install "config.h"

2000-10-26 Thread Ossama Othman
Hi Robert, On Thu, Oct 26, 2000 at 01:32:42PM -0500, Robert Boehne wrote: > I have a massive set of C++ libraries that use > CVS libtool, autoconf and automake to build and install. > Since users then need to have _all_ the header files > they also need to have the configure generated config.h >

Re: How to install "config.h"

2000-10-26 Thread Simon Richter
On Thu, 26 Oct 2000, Robert Boehne wrote: [Finding libraries from other packages] > What is the "best" way to coerce Automake into installing > config.h in $(prefix) ? Not at all. Instead, create m4 macros that search for the libraries somehow and place them in ${datadir}/aclocal. A common sear

Re: More about dependencies...

2000-10-26 Thread Robert Boehne
I have a similar problem, I have 'depcomp' in $(top_srcdir)/make and I have used AC_CONFIG_AUX_DIR(make) in 'configure.in'. This doesn't work, but if I copy 'depcomp' into $(top_srcdir) then it works. Is there another step required to get automake to find these auxiliary scripts? I'm using CVS v

Re: How to install "config.h"

2000-10-26 Thread Alexandre Oliva
On Oct 26, 2000, Robert Boehne <[EMAIL PROTECTED]> wrote: > Since users then need to have _all_ the header files > they also need to have the configure generated config.h > What is the "best" way to coerce Automake into installing > config.h in $(prefix) ? If you really want to have it installe

Re: How to install "config.h"

2000-10-26 Thread Ossama Othman
Hi Alexandre, On Thu, Oct 26, 2000 at 07:13:28PM -0200, Alexandre Oliva wrote: > If you really want to have it installed, don't call it `config.h', or > at least install it in include/. To accomplish > that, use: > > pkginclude_HEADERS = config.h ... > > And use `#include ' in all other header

Re: How to install "config.h"

2000-10-26 Thread Robert Boehne
Ossama Othman wrote: > > Hi Alexandre, > > On Thu, Oct 26, 2000 at 07:13:28PM -0200, Alexandre Oliva wrote: > > If you really want to have it installed, don't call it `config.h', or > > at least install it in include/. To accomplish > > that, use: > > > > pkginclude_HEADERS = config.h ... > > >