Re: Include paths: no "-I." please

2005-06-30 Thread Ralf Wildenhues
* overbored wrote on Fri, Jul 01, 2005 at 12:44:38AM CEST: > Thus spake Ralf Wildenhues on 6/30/2005 7:23 AM: > > > >Quoting the manual: > >| `nostdinc' > >| This option can be used to disable the standard `-I' options which > >| are ordinarily automatically provided by Automake. > > It'

Re: Include paths: no "-I." please

2005-06-30 Thread overbored
Thus spake Ralf Wildenhues on 6/30/2005 7:23 AM: * overbored wrote on Thu, Jun 30, 2005 at 03:07:35AM CEST: How do I tell automake not to pass "-I." to g++/gcc? Thanks in advance. Quoting the manual: | `nostdinc' | This option can be used to disable the standard `-I' options which |

Re: Automake: problem report about SUBDIRS

2005-06-30 Thread Alexandre Duret-Lutz
>>> "Harald" == Harald Dunkel <[EMAIL PROTECTED]> writes: Harald> Hi folks, Harald> my Makefile.am deep inside a subdirectory contained this: Harald> : Harald> SUBDIRS = unittests \ Harald> ../generic_datainterface \ Harald> ../generic_resource_type \ Harald> ../generic_memorymodel \ Hara

Re: multiple AM_INIT_AUTOMAKEs cause problems

2005-06-30 Thread Alexandre Duret-Lutz
>>> "Christopher" == Christopher Sean Morrison <[EMAIL PROTECTED]> writes: [...] Christopher> The intent is that if it's not a CVS checkout, I Christopher> want dependency tracking disabled by default for Christopher> faster builds. Otherwise, it should be enabled. Since ./configure supports

Re: multiple AM_INIT_AUTOMAKEs cause problems

2005-06-30 Thread Stepan Kasal
Hello, On Thu, Jun 30, 2005 at 12:32:50PM -0400, Christopher Sean Morrison wrote: > That's unfortunate but good to know that it doesn't output both or a > means to dynamically select it after running automake. As usual, if you need that functionality, code it. It's free software, you are free t

Re: multiple AM_INIT_AUTOMAKEs cause problems

2005-06-30 Thread Christopher Sean Morrison
That's unfortunate but good to know that it doesn't output both or a means to dynamically select it after running automake. That being the case, I'm wondering if there is something that I can do at autogen.sh time instead (which runs either autoreconf if it can or all the steps individually if

Re: Include paths: no "-I." please

2005-06-30 Thread Bob Friesenhahn
On Thu, 30 Jun 2005, Stepan Kasal wrote: (The problem is that this project has a string.h, which conflicts with the standard string.h. Besides, why "-I." in the first place? Is it because some people prefer #include over #include "blah" for their own header files as well?) My guess: in short

Re: Include paths: no "-I." please

2005-06-30 Thread Stepan Kasal
Hi, On Wed, Jun 29, 2005 at 06:07:35PM -0700, overbored wrote: > How do I tell automake not to pass "-I." to g++/gcc? Thanks in advance. I don't know. > (The problem is that this project has a string.h, which conflicts with > the standard string.h. Besides, why "-I." in the first place? Is it

Re: Include paths: no "-I." please

2005-06-30 Thread Ralf Wildenhues
* overbored wrote on Thu, Jun 30, 2005 at 03:07:35AM CEST: > How do I tell automake not to pass "-I." to g++/gcc? Thanks in advance. Quoting the manual: | `nostdinc' | This option can be used to disable the standard `-I' options which | are ordinarily automatically provided by Automake.

Include paths: no "-I." please

2005-06-30 Thread overbored
How do I tell automake not to pass "-I." to g++/gcc? Thanks in advance. (The problem is that this project has a string.h, which conflicts with the standard string.h. Besides, why "-I." in the first place? Is it because some people prefer #include over #include "blah" for their own header file