Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
0fadfc00
Commit
0fadfc00
authored
Oct 02, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added NEED_UNION_SEMUN to config.h
parent
22ef6d06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
src/include/config.h
src/include/config.h
+20
-0
No files found.
src/include/config.h
View file @
0fadfc00
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
# define NO_UNISTD_H
# define NO_UNISTD_H
# define USES_WINSOCK
# define USES_WINSOCK
# define NOFILE 100
# define NOFILE 100
# define NEED_UNION_SEMUN
#endif
/* WIN32 */
#endif
/* WIN32 */
#if defined(__FreeBSD__) || defined(__NetBSD__)
#if defined(__FreeBSD__) || defined(__NetBSD__)
...
@@ -23,6 +24,7 @@
...
@@ -23,6 +24,7 @@
#if defined(bsdi)
#if defined(bsdi)
# define USE_LIMITS_H
# define USE_LIMITS_H
# define NEED_UNION_SEMUN
#endif
#endif
#if defined(bsdi_2_1)
#if defined(bsdi_2_1)
...
@@ -31,12 +33,30 @@
...
@@ -31,12 +33,30 @@
#if defined(aix)
#if defined(aix)
# define NEED_SYS_SELECT_H
# define NEED_SYS_SELECT_H
# define NEED_UNION_SEMUN
#endif
#endif
#if defined(irix5)
#if defined(irix5)
# define NO_VFORK
# define NO_VFORK
#endif
#endif
/*
* On architectures for which we have not implemented spinlocks (or
* cannot do so), we use System V semaphores. We also use them for
* long locks. For some reason union semun is never defined in the
* System V header files so we must do it ourselves.
*/
#if defined(sequent) || \
defined(PORTNAME_alpha) || \
defined(PORTNAME_hpux) || \
defined(PORTNAME_dgux) || \
defined(PORTNAME_i386_solaris) || \
defined(PORTNAME_sparc_solaris) || \
defined(PORTNAME_ultrix4) || \
defined(PORTNAME_svr4) || \
#define NEED_UNION_SEMUN
#endif
/* Debug and various "defines" that should be documented */
/* Debug and various "defines" that should be documented */
/* found in function aclparse() in src/backend/utils/adt/acl.c */
/* found in function aclparse() in src/backend/utils/adt/acl.c */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment