Re: include files and statically linked libraries

2002-10-24 Thread Tom Tromey
> "Eric" == Eric Anderson <[EMAIL PROTECTED]> writes: Eric> Makefile:225: *** missing separator. Stop. Eric> and line 225 of the Makefile is: Eric> @SET_MAKE@ This means that whatever configure is building this Makefile doesn't invoke AC_PROG_MAKE_SET. AM_INIT_AUTOMAKE invokes this, so it i

Re: include files and statically linked libraries

2002-10-24 Thread Tom Tromey
>> AC_CONFIG_SUBDIRS(libghttp-1.0.9-mod) Eric> Where does this go in the configure.in file? Above the AC_OUTPUT Eric> command? From what I have read there has to be an order to the script, Eric> so I want to make sure I put it in the right place Anyplace before AC_OUTPUT is fine. >> SUBDIRS = l

Re: include files and statically linked libraries

2002-10-21 Thread Eric Anderson
On Sun, 2002-10-20 at 14:40, Tom Tromey wrote: > Why your approach failed, I don't know. I assume you re-ran autoconf, > automake, and configure? OK, I have done things as you have suggested, but I am still stuck at that error. I have narrowed it down to the fact that when I put the SUBDIRS = li

Re: include files and statically linked libraries

2002-10-21 Thread Eric Anderson
On Sun, 2002-10-20 at 14:40, Tom Tromey wrote: > Does libghttp have its own configure script? Yes > If so it is probably even cleaner to run that. Put this in > configure.in: > > AC_CONFIG_SUBDIRS(libghttp-1.0.9-mod) > Where does this go in the configure.in file? Above the AC_OUTPUT comman