Skip to content
Snippets Groups Projects
Commit 157e9ef3 authored by Christopher J. Morrone's avatar Christopher J. Morrone
Browse files

libtool is broken on AIX, so we need to compile against the static opensllfor now.

parent 8f972c21
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,11 @@ AC_DEFUN([X_AC_SLURM_WITH_SSL], [ ...@@ -24,7 +24,11 @@ AC_DEFUN([X_AC_SLURM_WITH_SSL], [
AC_SUBST(SSL_LIBS) AC_SUBST(SSL_LIBS)
AC_SUBST(SSL_CPPFLAGS) AC_SUBST(SSL_CPPFLAGS)
SSL_LIBS="-lcrypto" if test "x$ac_have_aix" = "xyes"; then
SSL_LIBS="-lcrypto-static"
else
SSL_LIBS="-lcrypto"
fi
AC_ARG_WITH(ssl, AC_ARG_WITH(ssl,
AC_HELP_STRING([--with-ssl=PATH],[Specify path to OpenSSL installation]), AC_HELP_STRING([--with-ssl=PATH],[Specify path to OpenSSL installation]),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment