Seems like the BEST case would be to have a configure test verify that
it works and define something if it does, but i don't know what such a
test would look like.
--Josh
Bruce Momjian wrote:
Tom Lane wrote:
Bruce Momjian <[EMAIL PROTECTED]> writes:
! #if defined(sun) && defined(__sparc__)
Tom Lane wrote:
> Bruce Momjian <[EMAIL PROTECTED]> writes:
>
> > ! #if defined(sun) && defined(__sparc__)
> > /* use intimate shared memory on SPARC Solaris */
> > memAddress = shmat(shmid, 0, SHM_SHARE_MMU);
> > #else
>
> I think this is going in the wrong direction. Why isn't the co
Bruce Momjian <[EMAIL PROTECTED]> writes:
> ! #if defined(sun) && defined(__sparc__)
> /* use intimate shared memory on SPARC Solaris */
> memAddress = shmat(shmid, 0, SHM_SHARE_MMU);
> #else
I think this is going in the wrong direction. Why isn't the code just
#if defined(SHM_SHA
Please use new patch. This uses __sun__ rather than sun.
---
Josh Wilmes wrote:
>
> Bruce Momjian wrote:
>
> > Josh Wilmes wrote:
> >
> >>Nope, __solaris__ is not defined on our system either.
> >
> >
> > I thought our
OK, attached patch applied. I tested for 'sun' rather than 'solaris'.
---
Josh Wilmes wrote:
>
> Bruce Momjian wrote:
>
> > Josh Wilmes wrote:
> >
> >>Nope, __solaris__ is not defined on our system either.
> >
> >
> >
Bruce Momjian wrote:
Josh Wilmes wrote:
Nope, __solaris__ is not defined on our system either.
I thought our configure defined __portname__ for every platform, but I
don't see that anywhere, so it seems we rely on the compiler to supply
defines for the cpu and OS.
Does src/tools/ccsym show you
Nope, __solaris__ is not defined on our system either.
--Josh
Bruce Momjian wrote:
Yikes! We thought we were already using ISM on Solaris.
Would you test the attached patch? It uses _solaris_ rather than
SHM_SHARE_MMU in the define test. Does that work too?
--
Josh Wilmes wrote:
> Nope, __solaris__ is not defined on our system either.
I thought our configure defined __portname__ for every platform, but I
don't see that anywhere, so it seems we rely on the compiler to supply
defines for the cpu and OS.
Does src/tools/ccsym show you your defines? I woul
Yikes! We thought we were already using ISM on Solaris.
Would you test the attached patch? It uses _solaris_ rather than
SHM_SHARE_MMU in the define test. Does that work too?
---
Josh Wilmes wrote:
> I hope this is the r