diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-02-23 15:05:08 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-02-23 15:05:08 -0500 |
commit | 74e29162a4f0ec0ad1c7224b8be936d1f9a51f7e (patch) | |
tree | a725e4acf89c0da2acdb919bfbd140e4a6715859 /src | |
parent | c9d700444007046d799cdfea2038194e56bec1f7 (diff) | |
download | postgresql-74e29162a4f0ec0ad1c7224b8be936d1f9a51f7e.tar.gz postgresql-74e29162a4f0ec0ad1c7224b8be936d1f9a51f7e.zip |
Allow MinGW builds to use standardly-named OpenSSL libraries.
In the Fedora variant of MinGW, the openssl libraries have their normal
names, not libeay32 and libssleay32. Adjust configure probes to allow
that, per bug #6486.
Tomasz Ostrowski
Diffstat (limited to 'src')
-rw-r--r-- | src/include/pg_config.h.in | 6 | ||||
-rw-r--r-- | src/include/pg_config.h.win32 | 6 |
2 files changed, 0 insertions, 12 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 46c72245032..813ee678eae 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -299,9 +299,6 @@ /* Define to 1 if you have the `crypto' library (-lcrypto). */ #undef HAVE_LIBCRYPTO -/* Define to 1 if you have the `eay32' library (-leay32). */ -#undef HAVE_LIBEAY32 - /* Define to 1 if you have the `ldap' library (-lldap). */ #undef HAVE_LIBLDAP @@ -323,9 +320,6 @@ /* Define to 1 if you have the `ssl' library (-lssl). */ #undef HAVE_LIBSSL -/* Define to 1 if you have the `ssleay32' library (-lssleay32). */ -#undef HAVE_LIBSSLEAY32 - /* Define to 1 if you have the `wldap32' library (-lwldap32). */ #undef HAVE_LIBWLDAP32 diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index 35294e9f124..dd109b5762b 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -220,9 +220,6 @@ /* Define to 1 if you have the `crypto' library (-lcrypto). */ /* #undef HAVE_LIBCRYPTO */ -/* Define to 1 if you have the `eay32' library (-leay32). */ -/* #undef HAVE_LIBEAY32 */ - /* Define to 1 if you have the `ldap' library (-lldap). */ /* #undef HAVE_LIBLDAP */ @@ -235,9 +232,6 @@ /* Define to 1 if you have the `ssl' library (-lssl). */ /* #undef HAVE_LIBSSL */ -/* Define to 1 if you have the `ssleay32' library (-lssleay32). */ -/* #undef HAVE_LIBSSLEAY32 */ - /* Define to 1 if you have the `wldap32' library (-lwldap32). */ /* #undef HAVE_LIBWLDAP32 */ |