Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
4a820de1
"doc/FAQ_DEV" did not exist on "c1c5b39728047dffd6d9b660205be76450635ab8"
Commit
4a820de1
authored
28 years ago
by
Bryan Henderson
Browse files
Options
Downloads
Patches
Plain Diff
Include some macros that used to be -D options in Makefile.global.
parent
e2a8163c
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/config.h
+18
-3
18 additions, 3 deletions
src/include/config.h
with
18 additions
and
3 deletions
src/include/config.h
+
18
−
3
View file @
4a820de1
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
#if defined(alpha)
#if defined(alpha)
# define USE_POSIX_TIME
# define USE_POSIX_TIME
# define USE_POSIX_SIGNALS
# define DISABLE_XOPEN_NLS
# define DISABLE_XOPEN_NLS
# define NEED_ISINF
# define NEED_ISINF
# define HAS_LONG_LONG
# define HAS_LONG_LONG
...
@@ -32,6 +33,8 @@
...
@@ -32,6 +33,8 @@
#if defined(dgux)
#if defined(dgux)
# define LINUX_ELF
# define LINUX_ELF
# define NEED_UNION_SEMUN
# define NEED_UNION_SEMUN
# define __USE_POSIX_SIGNALS
# define -DUSE_POSIX_SIGNALS
#endif
#endif
#if defined(ultrix4)
#if defined(ultrix4)
...
@@ -41,9 +44,12 @@
...
@@ -41,9 +44,12 @@
#endif
#endif
#if defined(linux)
#if defined(linux)
# ifndef __USE_POSIX
/* __USE_POSIX, __USE_BSD, and __USE_BSD_SIGNAL used to be defined either
# define __USE_POSIX
here or with -D compile options, but __ macros should be set and used by C
# endif
library macros, not Postgres code. __USE_POSIX is set by features.h,
__USE_BSD is set by bsd/signal.h, and __USE_BSD_SIGNAL appears not to
be used.
*/
# define USE_POSIX_TIME
# define USE_POSIX_TIME
# define HAVE_TZSET
# define HAVE_TZSET
# define NEED_CBRT
# define NEED_CBRT
...
@@ -59,11 +65,13 @@
...
@@ -59,11 +65,13 @@
#if defined(i386_solaris)
#if defined(i386_solaris)
# define USE_POSIX_TIME
# define USE_POSIX_TIME
# define USE_POSIX_SIGNALS
# define NEED_ISINF
# define NEED_ISINF
# define NEED_RUSAGE
# define NEED_RUSAGE
# define NO_EMPTY_STMTS
# define NO_EMPTY_STMTS
# define HAVE_TZSET
# define HAVE_TZSET
# define NEED_UNION_SEMUN
# define NEED_UNION_SEMUN
# define SYSV_DIRENT
#endif
#endif
#if defined(sparc) && !defined(sparc_solaris)
#if defined(sparc) && !defined(sparc_solaris)
...
@@ -73,21 +81,25 @@
...
@@ -73,21 +81,25 @@
#if defined(sparc_solaris)
#if defined(sparc_solaris)
# define USE_POSIX_TIME
# define USE_POSIX_TIME
# define USE_POSIX_SIGNALS
# define NEED_ISINF
# define NEED_ISINF
# define NEED_RUSAGE
# define NEED_RUSAGE
# define NO_EMPTY_STMTS
# define NO_EMPTY_STMTS
# define USE_POSIX_TIME
# define USE_POSIX_TIME
# define HAVE_TZSET
# define HAVE_TZSET
# define NEED_UNION_SEMUN
# define NEED_UNION_SEMUN
# define SYSV_DIRENT
#endif
#endif
#if defined(svr4)
#if defined(svr4)
# define USE_POSIX_TIME
# define USE_POSIX_TIME
# define USE_POSIX_SIGNALS
# define NEED_ISINF
# define NEED_ISINF
# define NEED_RUSAGE
# define NEED_RUSAGE
# define NO_EMPTY_STMTS
# define NO_EMPTY_STMTS
# define HAVE_TZSET
# define HAVE_TZSET
# define NEED_UNION_SEMUN
# define NEED_UNION_SEMUN
# define SYSV_DIRENT
#endif
#endif
#if defined(next)
#if defined(next)
...
@@ -122,14 +134,17 @@
...
@@ -122,14 +134,17 @@
# define NEED_UNION_SEMUN
# define NEED_UNION_SEMUN
# define NEED_SYS_SELECT_H
# define NEED_SYS_SELECT_H
# define HAVE_TZSET
# define HAVE_TZSET
# define HAVE_ANSI_CPP
#endif
#endif
#if defined(irix5)
#if defined(irix5)
# define USE_POSIX_TIME
# define USE_POSIX_TIME
# define USE_POSIX_SIGNALS
# define NEED_ISINF
# define NEED_ISINF
# define NO_EMPTY_STMTS
# define NO_EMPTY_STMTS
# define NO_VFORK
# define NO_VFORK
# define HAVE_TZSET
# define HAVE_TZSET
# define SYSV_DIRENT
#endif
#endif
/*
/*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment