diff options
author | Andres Freund <andres@anarazel.de> | 2022-08-18 10:41:42 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-08-18 10:41:42 -0700 |
commit | 4ab53b647abffb911bea35662ca4b22d788c25d4 (patch) | |
tree | 5d2b0fab55c23d756624a06dc2ddf8c7a2f4587a /src | |
parent | 6566133c5f52771198aca07ed18f84519fac1be7 (diff) | |
download | postgresql-4ab53b647abffb911bea35662ca4b22d788c25d4.tar.gz postgresql-4ab53b647abffb911bea35662ca4b22d788c25d4.zip |
Don't add HAVE_LDAP_H HAVE_WINLDAP_H to pg_config.h
They're not referenced, so we don't need them in in pg_config.h.
Reviewed-by: Peter Eisentraut <peter.eisentraut@enterprisedb.com>
Discussion: http://postgr.es/m/e0c44fb2-8b66-a4b9-b274-7ed3a1a0ab74@enterprisedb.com
Diffstat (limited to 'src')
-rw-r--r-- | src/include/pg_config.h.in | 6 | ||||
-rw-r--r-- | src/tools/msvc/Solution.pm | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index b8fe2201f49..26eb6a2dfef 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -253,9 +253,6 @@ /* Define to 1 if you have the <langinfo.h> header file. */ #undef HAVE_LANGINFO_H -/* Define to 1 if you have the <ldap.h> header file. */ -#undef HAVE_LDAP_H - /* Define to 1 if you have the `ldap_initialize' function. */ #undef HAVE_LDAP_INITIALIZE @@ -541,9 +538,6 @@ /* Define to 1 if you have the `wcstombs_l' function. */ #undef HAVE_WCSTOMBS_L -/* Define to 1 if you have the <winldap.h> header file. */ -#undef HAVE_WINLDAP_H - /* Define to 1 if you have the `X509_get_signature_nid' function. */ #undef HAVE_X509_GET_SIGNATURE_NID diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index 55b30090f6e..fead5c2a72f 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -281,7 +281,6 @@ sub GenerateFiles HAVE_I_CONSTRAINT__BUILTIN_CONSTANT_P => undef, HAVE_KQUEUE => undef, HAVE_LANGINFO_H => undef, - HAVE_LDAP_H => undef, HAVE_LDAP_INITIALIZE => undef, HAVE_LIBCRYPTO => undef, HAVE_LIBLDAP => undef, @@ -374,7 +373,6 @@ sub GenerateFiles HAVE_UUID_OSSP => undef, HAVE_UUID_H => undef, HAVE_UUID_UUID_H => undef, - HAVE_WINLDAP_H => undef, HAVE_WCSTOMBS_L => 1, HAVE_VISIBILITY_ATTRIBUTE => undef, HAVE_X509_GET_SIGNATURE_NID => 1, |