diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-07-12 22:59:15 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-07-12 22:59:15 +0000 |
commit | cb292206c5c160cde6eb5618de64f810e62f378a (patch) | |
tree | 54e4fc4f39a97edad06ae0f8266d87c46a506d06 /src/backend/libpq/pqformat.c | |
parent | dce43d22f052f7c9cbbf9535c9e50aaa7e51c1d9 (diff) |
Remove a bunch of unused configure tests, in particular cases where
* the result is not recorded anywhere
* the result is not used anywhere
* the result is only used in some places, whereas others have been getting away with it
* the result is used improperly
Also make command line options handling a little better (e.g., --disable-locale,
while redundant, should really still *dis*able).
Diffstat (limited to 'src/backend/libpq/pqformat.c')
-rw-r--r-- | src/backend/libpq/pqformat.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/libpq/pqformat.c b/src/backend/libpq/pqformat.c index a591e4ead55..24bc0bda384 100644 --- a/src/backend/libpq/pqformat.c +++ b/src/backend/libpq/pqformat.c @@ -16,7 +16,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pqformat.c,v 1.14 2000/07/08 05:30:33 tgl Exp $ + * $Id: pqformat.c,v 1.15 2000/07/12 22:58:59 petere Exp $ * *------------------------------------------------------------------------- */ @@ -48,9 +48,7 @@ #include "postgres.h" #include <errno.h> -#ifdef HAVE_SYS_PARAM_H #include <sys/param.h> -#endif #include "libpq/libpq.h" #include "libpq/pqformat.h" @@ -58,7 +56,7 @@ #include "mb/pg_wchar.h" #endif #ifdef HAVE_ENDIAN_H -#include "endian.h" +#include <endian.h> #endif #ifndef BYTE_ORDER |