Commit 46606ab0 authored by Marc G. Fournier's avatar Marc G. Fournier

Document some more #ifdef's

parent 94e82514
...@@ -8,6 +8,11 @@ ...@@ -8,6 +8,11 @@
#define BLCKSZ 8192 #define BLCKSZ 8192
/* Found in catalog/catalog.c, but doesn't seem to do anything in there */
#ifndef MAXPATHLEN
#define MAXPATHLEN 80
#endif
#if defined(sequent) #if defined(sequent)
# define NEED_UNION_SEMUN # define NEED_UNION_SEMUN
#endif #endif
...@@ -32,6 +37,9 @@ ...@@ -32,6 +37,9 @@
#endif #endif
#if defined(linux) #if defined(linux)
# ifndef __USE_POSIX
# define __USE_POSIX
# endif
# define NEED_CBRT # define NEED_CBRT
#endif #endif
...@@ -75,8 +83,12 @@ ...@@ -75,8 +83,12 @@
# define NEED_UNION_SEMUN # define NEED_UNION_SEMUN
#endif #endif
#if defined(next)
# define NEED_SIG_JMP
#endif
#if defined(win32) #if defined(win32)
# define WIN32 # define NEED_SIG_JMP
# define NO_UNISTD_H # define NO_UNISTD_H
# define USES_WINSOCK # define USES_WINSOCK
# define NOFILE 100 # define NOFILE 100
...@@ -228,6 +240,8 @@ ...@@ -228,6 +240,8 @@
/* #define FASTBUILD_DEBUG /* access/nbtree/nbtsort.c */ /* #define FASTBUILD_DEBUG /* access/nbtree/nbtsort.c */
#define RTDEBUG /* access/rtree/rtree.c */ #define RTDEBUG /* access/rtree/rtree.c */
#define GISTDEBUG /* access/gist/gist.c */ #define GISTDEBUG /* access/gist/gist.c */
/* #define PURGEDEBUG /* commands/purge.c */
/* #define DEBUG_RECIPE /* commands/recipe.c */
/* The following don't have any apparent purpose, but are in the /* The following don't have any apparent purpose, but are in the
...@@ -235,9 +249,13 @@ ...@@ -235,9 +249,13 @@
* document them here * document them here
*/ */
/* #define OMIT_PARTIAL_INDEX /* access/hash/hash.c */ /* #define OMIT_PARTIAL_INDEX /* access/hash/hash.c */
/* #define PERFECT_MMGR /* access/hash/hash.c */ /* #define PERFECT_MMGR /* access/hash/hash.c */
/* #define PERFECT_MEM /* access/hash/hashscan.c */ /* #define PERFECT_MEM /* access/hash/hashscan.c */
/* #define NO_BUFFERISVALID /* access/heap/heapam.c */ /* #define NO_BUFFERISVALID /* access/heap/heapam.c */
/* #define NO_SECURITY /* commands/cluster.c */
/* #define TIOGA /* commands/recipe.c */
/* #define OLD_REWRITE /* commands/version.c */
/* #define NOTYET /* commands/view.c */
/* Undocumented "features"? */ /* Undocumented "features"? */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment