Title: New Page 1
Hi. I have a shared library libfoo (in directory foo) that had some of its
source files moved (into subdirectory foo/bar) to help make the code easier
to manage. However, I'm having trouble linking libbar back into libfoo. Both
libfoo and libbar build ok. But, libfoo isn't pulling in the definition
On Thu, 29 May 2003, Assar Westerlund wrote:
> Mattias Brändström <[EMAIL PROTECTED]> writes:
> >
> > I get this warning:
> > configure.ac:16: warning: AC_ARG_PROGRAM was called before
> > AC_CANONICAL_TARGET
> >
> > I tried to add AC_CANONICAL_TARGET before the AM_PATH_SDL macro but I
> > got the
Hello!
If I have something like this in my configure.ac:
AC_PATH_PROG(SED, sed)
AC_ARG_VAR(SED, [path to sed])
Now everything works fine when sed is in my PATH, but I would like for
./configure to fail if sed isn't in my PATH. Is there a standard way to do
this? I haven't found any.
If someone
> If I have something like this in my configure.ac:
>
> AC_PATH_PROG(SED, sed)
> AC_ARG_VAR(SED, [path to sed])
>
> Now everything works fine when sed is in my PATH, but I would like for
> ./configure to fail if sed isn't in my PATH. Is there a
> standard way to do
> this? I haven't found any.
>
I discovered a nice property of AC_CONFIG_AUX_DIR and (CVS) Automake:
you can use the Autoconf macro, and not provide a Makefile.am for this
directory. The content is properly shipped, everything works fine,
and you saved one AC_CONFIG_FILES, one Makefile.am, one SUBDIRS.
I don't know if this is
On Mon, Jun 02, 2003 at 09:09:23AM +0200, Akim Demaille wrote:
>
> I discovered a nice property of AC_CONFIG_AUX_DIR and (CVS) Automake:
> you can use the Autoconf macro, and not provide a Makefile.am for this
> directory. The content is properly shipped, everything works fine,
> and you saved one
> On Mon, Jun 02, 2003 at 09:09:23AM +0200, Akim Demaille wrote:
>>
>> I discovered a nice property of AC_CONFIG_AUX_DIR and (CVS) Automake:
>> you can use the Autoconf macro, and not provide a Makefile.am for this
>> directory. The content is properly shipped, everything works fine,
>> an
Mattias Brändström <[EMAIL PROTECTED]> writes:
> AC_INIT(foo.cpp)
>
> AM_INIT_AUTOMAKE(foo, 0.1)
>
> AC_CANONICAL_TARGET
>
> AC_OUTPUT(Makefile)
>
> I still get the same warning. Any ideas?
AM_INIT_AUTOMAKE calls AC_ARG_PROGRAM which should get called after
AC_CANONICAL_TARGET, so just changin
"Robin Rowe" <[EMAIL PROTECTED]> writes:
> Hi. I have a shared library libfoo (in directory foo) that had some of its
> source files moved (into subdirectory foo/bar) to help make the code easier
> to manage. However, I'm having trouble linking libbar back into libfoo. Both
> libfoo and libbar buil
10 matches
Mail list logo