diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-08-01 23:52:50 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-08-01 23:52:50 +0000 |
commit | cb90b2dacb14b774ad3ddc68d78ec52f45db78bf (patch) | |
tree | e4eec86281567ada4d7d3643828c329344348808 /src/include | |
parent | bc042e0a775040927b194473b4abf9c48e56d0a5 (diff) |
Digging through previous discussion of this patch, I note where Peter E.
points out how silly it is to use Autoconf to test for a preprocessor
symbol, when one can equally easily #ifdef on the symbol itself.
Accordingly, revert configure to prior state and do it that way.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/config.h.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index 971a32a3ace..c0559089eb6 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.169 2001/08/01 23:25:39 tgl Exp $ + * $Id: config.h.in,v 1.170 2001/08/01 23:52:50 tgl Exp $ */ #ifndef CONFIG_H @@ -685,9 +685,6 @@ extern int fdatasync(int fildes); /* Define if you have on_exit() */ #undef HAVE_ON_EXIT -/* Define if you have SO_PEERCRED */ -#undef HAVE_SO_PEERCRED - /* *------------------------------------------------------------------------ * Part 4: pull in system-specific declarations. |