diff options
author | Peter Eisentraut | 2000-06-11 11:40:09 +0000 |
---|---|---|
committer | Peter Eisentraut | 2000-06-11 11:40:09 +0000 |
commit | 06cd0f1a32b843832298471e92cc1c577f1363a1 (patch) | |
tree | f94f7a4ea39288ff268213c93aff15e4d00682c2 /src/include | |
parent | b4182b1327415f2ef2cae6e3795d9f04f578df43 (diff) |
Substituted new configure test for types of accept()
Interfaced a lot of the custom tests to the config.cache, in the process
made them separate macros and grouped them out into files. Made naming
adjustments.
Removed a couple of useless/unused configure tests.
Disabled C++ by default. C++ is no more special than Perl, Python, and Tcl.
And it breaks equally often. :(
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/config.h.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index 0d913101904..78eca0921bb 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.117 2000/06/09 16:03:07 momjian Exp $ + * $Id: config.h.in,v 1.118 2000/06/11 11:39:58 petere Exp $ */ #ifndef CONFIG_H @@ -322,8 +322,8 @@ */ /* Set to 1 if you gettimeofday(a,b) vs gettimeofday(a) */ -#undef HAVE_GETTIMEOFDAY_2_ARGS -#ifndef HAVE_GETTIMEOFDAY_2_ARGS +#undef GETTIMEOFDAY_1ARG +#ifdef GETTIMEOFDAY_1ARG # define gettimeofday(a,b) gettimeofday(a) #endif @@ -512,11 +512,11 @@ extern void srandom(unsigned int seed); #undef ALIGNOF_DOUBLE #undef MAXIMUM_ALIGNOF -/* Define as the base type of the last arg to accept */ -#undef SOCKET_SIZE_TYPE +/* Define as the type of the type of the 3rd argument to accept() */ +#undef ACCEPT_TYPE_ARG3 /* Define if POSIX signal interface is available */ -#undef USE_POSIX_SIGNALS +#undef HAVE_POSIX_SIGNALS /* Define if C++ compiler accepts "using namespace std" */ #undef HAVE_NAMESPACE_STD |