Sensiz Geçen Günler

2003-06-02 Thread [EMAIL PROTECTED]
Title: New Page 1

Convenience lib puzzle

2003-06-02 Thread Robin Rowe
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

Re: SDL, automake, autoconf

2003-06-02 Thread Mattias Brändström
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 same warning,

AC_PATH_PROG

2003-06-02 Thread Mattias Brändström
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

Re: AC_PATH_PROG

2003-06-02 Thread Tim Van Holder
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

Makefileless AC_CONFIG_AUX_DIR

2003-06-02 Thread Akim Demaille
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

Re: Makefileless AC_CONFIG_AUX_DIR

2003-06-02 Thread Alexandre Duret-Lutz
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

Re: Makefileless AC_CONFIG_AUX_DIR

2003-06-02 Thread Akim Demaille
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

Re: SDL, automake, autoconf

2003-06-02 Thread Assar Westerlund
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 changing the