diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2001-02-27 08:13:31 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2001-02-27 08:13:31 +0000 |
commit | df247b821d811abcfc0ac707e1a3af9dfce474c9 (patch) | |
tree | dbc50e5ce1f0f4ab332e3810bef8c56921308e92 /src/include | |
parent | 919ace07d59f1a0fbb237b0ca348e4a7574b4042 (diff) |
Massive commits for SunOS4 port.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/config.h.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index 68e15d067b7..bae18263567 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -8,7 +8,7 @@ * or in config.h afterwards. Of course, if you edit config.h, then your * changes will be overwritten the next time you run configure. * - * $Id: config.h.in,v 1.158 2001/02/18 04:39:42 tgl Exp $ + * $Id: config.h.in,v 1.159 2001/02/27 08:13:27 ishii Exp $ */ #ifndef CONFIG_H @@ -579,6 +579,9 @@ extern int fdatasync(int fildes); /* Set to 1 if you have getopt_long() (GNU long options) */ #undef HAVE_GETOPT_LONG +/* Set to 1 if optarg is declared in unistd.h */ +#undef HAVE_OPTARG_DECL + /* Set to 1 if you have union semun */ #undef HAVE_UNION_SEMUN @@ -651,6 +654,11 @@ extern int fdatasync(int fildes); # define HAVE_STRTOULL 1 #endif +/* Define if you have atexit() */ +#undef HAVE_ATEXIT + +/* Define if you have on_exit() */ +#undef HAVE_ON_EXIT /* *------------------------------------------------------------------------ |