Ossama> I'm making the switch to CVS Automake. Can someone please tell me
Ossama> what the prerequisite software is? Do I need CVS Autoconf? Anything
Ossama> else?
You shouldn't need the cvs autoconf.
You should need Perl 5.
Ossama> $ ./configure
Ossama> loading cache ./config.cache
Ossama> c
> "Allan" == Allan Clark <[EMAIL PROTECTED]> writes:
>> Add .x to SUFFIXES, the write rules to generate the .c files from .x.
>> Since you want to generate at least 2 files from the same .x, you
>> won't be able to use implicit rules (such as `.c.x:').
Allan> rpcgen usually has the command-l
I know everyone must have this problem, but I can't seem to find it anywhere
(I'll keep looking though...)
I want to check for $JDKHOME/include/jni.h, but of course, it includes another
header in the same directory so when the compile test is done, what I really
want to try is to compile with -I$
Alexandre Oliva wrote:
> On May 29, 2000, Marek Kowal <[EMAIL PROTECTED]> wrote:
>
> > I have an .x file and want to create, using rpcgen, stub files in
> > automake. Later on I want to compile and link part of them into server,
> > and the other part into client. Did anybody excercised this alre
Hi Alex,
On Thu, Jun 01, 2000 at 09:59:41AM +0100, Alex Hornby wrote:
> I agree that its nicer to put both stubs into a the library, but
> that's not how our project does it :)
Alrighty. :-)
> If no-one was ever going to split the client and server stubs there
> would be no need to generate the
Tom Tromey <[EMAIL PROTECTED]> writes:
> >> 1. I can't get automake to read a dynamically created AC_OUTPUT
>...
> Yes, automake needs a static AC_OUTPUT list. Automake uses the
> argument to AC_OUTPUT to determine which Makefile.am's to scan.
>
> My suggestion: keep AC_OUTPUT static, and use
Heres a script that I use to generate configure.in from a template
file with @Makefiles@ in AC_OUTPUT. This is so that developers can add
directories without having to change configure.in.
Is this of use to anyone? If you have a better/simpler version let me
know, as this was a quick hack. I thi
Ossama Othman writes:
> Hi Alex,
>
> On Wed, May 31, 2000 at 07:01:52PM +0100, Alex Hornby wrote:
> > Apart from the obvious difficultly of multi ORB setup etc, to keep
> > clients small it is often desirable to put the IDL client stubs in a
> > library, keeping the server stubs in the serv