From: Steffan K. <ste...@fo...> - 2017-02-23 10:36:02
|
Older versions of autoconf generate an empty "else fi" block for empty fields in an AC_CHECK_FUNCS() macro. This breaks on e.g. RHEL6. Signed-off-by: Steffan Karger <ste...@fo...> --- configure.ac | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 546a7d6..79ef52d 100644 --- a/configure.ac +++ b/configure.ac @@ -912,9 +912,7 @@ if test "${enable_crypto}" = "yes" -a "${with_crypto_library}" = "openssl"; then X509_STORE_get0_objects \ X509_OBJECT_free \ X509_OBJECT_get_type \ - ], - , - [] + ] ) CFLAGS="${saved_CFLAGS}" -- 2.7.4 |