diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-10-02 00:25:20 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-10-02 00:25:20 +0000 |
| commit | f1d37a9997ef8b00d53267ddfd0f5d7975017085 (patch) | |
| tree | 9456d7df97201ddf4729e06c133d47b037235095 /src/include/pg_config.h.in | |
| parent | eb9f280ca78e9b8b28c88911ed45e8e59a04b997 (diff) | |
| download | postgresql-f1d37a9997ef8b00d53267ddfd0f5d7975017085.tar.gz | |
Cope with ERR_set_mark() and ERR_pop_to_mark() not existing in older
OpenSSL libraries --- just don't call them if they're not there. This
might possibly lead to misleading error messages, but we'll just have
to live with that.
Diffstat (limited to 'src/include/pg_config.h.in')
| -rw-r--r-- | src/include/pg_config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 0f58395376..f0b5230e51 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -118,6 +118,9 @@ /* Define to 1 if you have the <editline/readline.h> header file. */ #undef HAVE_EDITLINE_READLINE_H +/* Define to 1 if you have the `ERR_set_mark' function. */ +#undef HAVE_ERR_SET_MARK + /* Define to 1 if you have the `fcvt' function. */ #undef HAVE_FCVT |
