diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-02-23 15:05:17 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-02-23 15:05:17 -0500 |
commit | 630fa6f308ad1652ffc11c0001aaa35018ea81ce (patch) | |
tree | 4948d899ad38bcfad7abdac3b53d7589c04614e9 /src | |
parent | 602dd1eeaad14a4bef92045956de7e7249f8b38e (diff) | |
download | postgresql-630fa6f308ad1652ffc11c0001aaa35018ea81ce.tar.gz postgresql-630fa6f308ad1652ffc11c0001aaa35018ea81ce.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 ecb0e41aadd..7cda05c61ec 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -290,9 +290,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 @@ -314,9 +311,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 0c3c70c2481..d2f77a0f09e 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -214,9 +214,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 */ @@ -229,9 +226,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 */ |