Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a899ec1

Browse files
committed
Fix inconsistent configure data for --with-ssl
This inconsistency was showing up after an autoreconf. Reported-by: Antonin Houska Reviewed-by: Tom Lane Discussion: https://postgr.es/m/47255.1613716807@antos
1 parent fe06819 commit a899ec1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,7 @@ if test "$with_ssl" = openssl ; then
12341234
# thread-safety. In 1.1.0, it's no longer required, and CRYPTO_lock()
12351235
# function was removed.
12361236
AC_CHECK_FUNCS([CRYPTO_lock])
1237-
AC_DEFINE([USE_OPENSSL], 1, [Define to 1 if you have OpenSSL support.])
1237+
AC_DEFINE([USE_OPENSSL], 1, [Define to 1 to build with OpenSSL support. (--with-ssl=openssl)])
12381238
elif test "$with_ssl" != no ; then
12391239
AC_MSG_ERROR([--with-ssl must specify openssl])
12401240
fi

src/include/pg_config.h.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@
899899
/* Define to select named POSIX semaphores. */
900900
#undef USE_NAMED_POSIX_SEMAPHORES
901901

902-
/* Define to build with OpenSSL support. (--with-ssl=openssl) */
902+
/* Define to 1 to build with OpenSSL support. (--with-ssl=openssl) */
903903
#undef USE_OPENSSL
904904

905905
/* Define to 1 to build with PAM support. (--with-pam) */

0 commit comments

Comments
 (0)