Re: CVS compile problem

2005-06-16 Thread Jean-Marc Lasgouttes
> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes: Angus> Urg! Jean-Marc! What are you doing? ;-) It was not me! I swear! I'll revert it, but that does not tell me why valgrind thought there was a leak (and why I could compile). JMarc

Re: CVS compile problem

2005-06-16 Thread Angus Leeming
Kayvan A. Sylvan wrote: g++ -DHAVE_CONFIG_H -I. -I../../../lyx/src/frontends -I../../src -Winvalid-pch --include=../../../lyx/src/frontends/pch.h -I../../../lyx/src/frontends/.. -I../ ../../lyx/boost -I/usr/local/include -Wextra -Wall -I/usr/X11R6/include -fno-exc eptions -O2 -mms-bitfields -MT

Re: CVS: Compile problem on Solaris

2001-12-04 Thread Stephan Witt
Lars Gullik Bjønnes wrote: > > "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: > > | On Tue, Dec 04, 2001 at 12:00:46AM +0100, Lars Gullik Bjønnes wrote: > >> Ok, what is munmap's prototype on your box? > > > | #ifdef __STDC__ > | #if (_POSIX_C_SOURCE > 2) > | [...] > | extern int munmap(voi

Re: CVS: Compile problem on Solaris

2001-12-03 Thread Ben Stanley
So does that mean that we should #define _POSIX_C_SOURCE 3 or something like that before #include I don't have experience with Solaris on this level... Kayvan A. Sylvan wrote: >On Tue, Dec 04, 2001 at 12:00:46AM +0100, Lars Gullik Bjønnes wrote: > >>Ok, what is munmap's prototype on your box?

Re: CVS: Compile problem on Solaris

2001-12-03 Thread Kayvan A. Sylvan
On Tue, Dec 04, 2001 at 12:00:46AM +0100, Lars Gullik Bjønnes wrote: > Ok, what is munmap's prototype on your box? #ifdef __STDC__ #if (_POSIX_C_SOURCE > 2) [...] extern int munmap(void *, size_t); [...] #else [...] extern int munmap(caddr_t, size_t); [...] #endif /* (_POSIX_C_SOURCE > 2) *