1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Change wildcard cerfificate mapping to be much simler - we now only match

the * character at the beginning of a pattern, and it does not match
subdomains.

Since this means we no longer need fnmatch, remove the imported implementation
from port, along with the autoconf check for it.
This commit is contained in:
Magnus Hagander
2008-12-02 10:39:31 +00:00
parent c98c9114cb
commit 2c69fa0c38
8 changed files with 55 additions and 344 deletions

View File

@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.574 2008/11/26 11:26:54 petere Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.575 2008/12/02 10:39:30 mha Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
@ -1625,11 +1625,6 @@ fi
# SunOS doesn't handle negative byte comparisons properly with +/- return
AC_FUNC_MEMCMP
# Check for fnmatch()
AC_FUNC_FNMATCH
if test x"$ac_cv_func_fnmatch_works" != x"yes"; then
AC_LIBOBJ(fnmatch)
fi
# Select semaphore implementation type.
if test "$PORTNAME" != "win32"; then