Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions config/opal_functions.m4
Original file line number Diff line number Diff line change
Expand Up @@ -391,9 +391,13 @@ AC_DEFUN([OPAL_FLAGS_UNIQ],[
opal_found=0
opal_i=`expr $opal_count + 1`
;;
-framework)
opal_found=0
opal_i=`expr $opal_count + 1`
;;
--param)
ompi_found=0
ompi_i=`expr $ompi_count + 1`
opal_found=0
opal_i=`expr $opal_count + 1`
;;
esac

Expand Down
2 changes: 2 additions & 0 deletions opal/mca/event/libevent2022/libevent/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,14 @@ fi

# OS X Lion started deprecating the system openssl. Let's just disable
# all deprecation warnings on OS X.
if test "$GCC" = "yes" ; then
case "$host_os" in

darwin*)
CFLAGS="$CFLAGS -Wno-deprecated-declarations"
;;
esac
fi

AC_ARG_ENABLE(gcc-warnings,
AS_HELP_STRING(--enable-gcc-warnings, enable verbose warnings with GCC))
Expand Down