diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-02-06 05:30:50 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-02-06 05:30:50 +0000 |
commit | e72b1ccd30ca89c250a021def7ab82c2f417dbfe (patch) | |
tree | ce51b39f171d60af0e11f48e3afab2cbbea4ad2a /src/include/storage/ipc.h | |
parent | 321d42c6d049fc72d387d75bcd78405ea5df16ff (diff) |
Add test for union semun to configure
Remove references to NEED_UNION_SEMUN from include/config.h.in and
from include/storage/ipc.h, replacing it with a single HAVE_UNION_SEMUN
Diffstat (limited to 'src/include/storage/ipc.h')
-rw-r--r-- | src/include/storage/ipc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h index 87ba9898c10..1fb86c7d610 100644 --- a/src/include/storage/ipc.h +++ b/src/include/storage/ipc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: ipc.h,v 1.13 1997/01/26 20:15:26 momjian Exp $ + * $Id: ipc.h,v 1.14 1997/02/06 05:30:50 scrappy Exp $ * * NOTES * This file is very architecture-specific. This stuff should actually @@ -43,7 +43,7 @@ extern int S_LOCK_FREE(slock_t *lock); #endif /* HAS_TEST_AND_SET */ -#ifdef NEED_UNION_SEMUN +#ifndef HAVE_UNION_SEMUN union semun { int val; struct semid_ds *buf; |