diff options
| author | Magnus Hagander <magnus@hagander.net> | 2008-11-24 09:15:16 +0000 |
|---|---|---|
| committer | Magnus Hagander <magnus@hagander.net> | 2008-11-24 09:15:16 +0000 |
| commit | cb10467d305726bf13bc1cb9ad9f7054c722c7dd (patch) | |
| tree | 43443f9d721a3b8609f5e90f078ebec3e243d45c /src/include/pg_config.h.in | |
| parent | a37855550100f93887ffb289a8a9c2f15706bad2 (diff) | |
| download | postgresql-cb10467d305726bf13bc1cb9ad9f7054c722c7dd.tar.gz | |
Add support for matching wildcard server certificates to the new SSL code.
This uses the function fnmatch() which is not available on all platforms
(notably Windows), so import the implementation from NetBSD into src/port.
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 9f6f21bf81..1064d15526 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -143,6 +143,9 @@ /* Define to 1 if you have the `fdatasync' function. */ #undef HAVE_FDATASYNC +/* Define to 1 if your system has a working POSIX `fnmatch' function. */ +#undef HAVE_FNMATCH + /* Define to 1 if you have the `fpclass' function. */ #undef HAVE_FPCLASS |
