> "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
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
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
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?
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) *