Re: Postgres for Sunos 4.1.4

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: stevek(at)uimage(dot)com (Stephen Kogge)
Cc: hackers(at)postgreSQL(dot)org (PostgreSQL-development)
Subject: Re: Postgres for Sunos 4.1.4
Date: 1998-12-13 02:23:32
Message-ID: 199812130223.VAA08514@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

>
> I decided to build the current on my 4.1.4 system. No luck - there is
> the usual missing def's for fprintf, printf... which are easy to list for
> a possible massive #include for sunsos builds - I can send you the list later.
> The main problem is in s_lock.c
>
> ....
> gcc -I../../../include -I../../../backend -Wall -Wmissing-prototypes
> -I../..
> -c s_lock.c -o s_lock.o
> s_lock.c:43: warning: type defaults to `int' in declaration of `slock_t'
> s_lock.c:43: parse error before `*'
> s_lock.c: In function `s_lock_stuck':
> s_lock.c:47: `lock' undeclared (first use in this function)
> s_lock.c:47: (Each undeclared identifier is reported only once
> s_lock.c:47: for each function it appears in.)
> s_lock.c:47: `file' undeclared (first use in this function)
> s_lock.c:47: `line' undeclared (first use in this function)
> s_lock.c: At top level:
> s_lock.c:60: warning: type defaults to `int' in declaration of `slock_t'
> s_lock.c:60: parse error before `*'
> s_lock.c:61: warning: no previous prototype for `s_lock'
> s_lock.c: In function `s_lock':
> s_lock.c:64: warning: implicit declaration of function `TAS'
> s_lock.c:64: `lock' undeclared (first use in this function)
> s_lock.c:74: `file' undeclared (first use in this function)
> s_lock.c:74: `line' undeclared (first use in this function)
> gmake[3]: *** [s_lock.o] Error 1
> ...
>
> which means that .o never is built and much later the entire build fails.
>
> Since you last checked out this file - I figured you might want to
> take a stab at it. I am open to suggestions before I try to puzzle it out.
>

Can you try this and let me know:

---------------------------------------------------------------------------

*** ./s_lock.c.orig Sat Dec 12 21:22:33 1998
--- ./s_lock.c Sat Dec 12 21:22:43 1998
***************
*** 30,37 ****
#define S_NSPINCYCLE 20
#define S_MAX_BUSY 500 * S_NSPINCYCLE

! int s_spincycle[S_NSPINCYCLE] =
! {0, 0, 0, 0, 10000, 0, 0, 0, 10000, 0,
0, 10000, 0, 0, 10000, 0, 10000, 0, 10000, 10000
};

--- 30,37 ----
#define S_NSPINCYCLE 20
#define S_MAX_BUSY 500 * S_NSPINCYCLE

! int s_spincycle[S_NSPINCYCLE] = {
! 0, 0, 0, 0, 10000, 0, 0, 0, 10000, 0,
0, 10000, 0, 0, 10000, 0, 10000, 0, 10000, 10000
};

--
Bruce Momjian | http://www.op.net/~candle
maillist(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 1998-12-13 02:30:30 Re: [HACKERS] Concurrency control questions 6.3.2 vs. 6.4
Previous Message Bruce Momjian 1998-12-13 00:37:39 Re: [HACKERS] 6.4.1 contrib/spi/