diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-22 16:39:30 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-22 16:39:30 +0000 |
commit | c120f4ba0adaeff5f4311c2edccdb58235e3ac82 (patch) | |
tree | 31a5ae84f12f8c4ccb2d62ecff4f5b1cfbe3547e /src | |
parent | 39e98d9563a48ddf5b25e89bad91b391f5af9690 (diff) | |
download | postgresql-c120f4ba0adaeff5f4311c2edccdb58235e3ac82.tar.gz postgresql-c120f4ba0adaeff5f4311c2edccdb58235e3ac82.zip |
Adjust configure so that extern tzname[] will be checked for
independently of whether the struct tm tm_zone member exists.
Also run autoheader, which seems not to have been done lately;
it added about three more things to pg_config.h.in than I was expecting...
Diffstat (limited to 'src')
-rw-r--r-- | src/include/pg_config.h.in | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 838abafffc6..129d7396e5e 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -55,6 +55,9 @@ /* Define to 1 if you have the `class' function. */ #undef HAVE_CLASS +/* Define to 1 if you have the `crypt' function. */ +#undef HAVE_CRYPT + /* Define to 1 if you have the <crypt.h> header file. */ #undef HAVE_CRYPT_H @@ -121,6 +124,9 @@ /* Define to 1 if you have the `gethostname' function. */ #undef HAVE_GETHOSTNAME +/* Define to 1 if you have the `getopt' function. */ +#undef HAVE_GETOPT + /* Define to 1 if you have the <getopt.h> header file. */ #undef HAVE_GETOPT_H @@ -250,6 +256,9 @@ /* Define to 1 if you have the `util' library (-lutil). */ #undef HAVE_LIBUTIL +/* Define to 1 if you have the `wsock32' library (-lwsock32). */ +#undef HAVE_LIBWSOCK32 + /* Define to 1 if you have the `z' library (-lz). */ #undef HAVE_LIBZ @@ -460,8 +469,7 @@ `HAVE_STRUCT_TM_TM_ZONE' instead. */ #undef HAVE_TM_ZONE -/* Define to 1 if you don't have `tm_zone' but do have the external array - `tzname'. */ +/* Define to 1 if you have the external array `tzname'. */ #undef HAVE_TZNAME /* Define to 1 if the system has the type `uint64'. */ |