Skip to content

Commit 00dd745

Browse files
committed
Remove --with-extra-libs option
Remove the --with-extra-libs configure option, which is a functional duplicate of the --with-wrapper-libs configure option. --with-extra-libs has not been included in an official release (it has been in release candidates), while --with-wrapper-libs has existed for over a decade. Signed-off-by: Brian Barrett <bbarrett@amazon.com>
1 parent ecd012c commit 00dd745

File tree

1 file changed

+2
-17
lines changed

1 file changed

+2
-17
lines changed

config/opal_configure_options.m4

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ dnl Copyright (c) 2011-2013 NVIDIA Corporation. All rights reserved.
2020
dnl Copyright (c) 2013-2017 Intel, Inc. All rights reserved.
2121
dnl Copyright (c) 2015 Research Organization for Information Science
2222
dnl and Technology (RIST). All rights reserved.
23+
dnl Copyright (c) 2020 Amazon.com, Inc. or its affiliates. All Rights
24+
dnl reserved.
2325
dnl
2426
dnl $COPYRIGHT$
2527
dnl
@@ -213,23 +215,6 @@ else
213215
fi
214216
AM_CONDITIONAL(WANT_INSTALL_HEADERS, test "$WANT_INSTALL_HEADERS" = 1)
215217

216-
#
217-
# If there's no pkg-config available, allow users to pass in -l/-L flags manually.
218-
#
219-
AC_MSG_CHECKING([if want extra libs for static builds])
220-
AC_ARG_WITH([extra-libs],[AS_HELP_STRING([--with-extra-libs],
221-
[A comma seperated list of extra libraries to link in for static builds (example: -lbar,-lbat) (default: None.). This should be used if pkg-config is not available.])])
222-
OPAL_EXTRA_LIBS=""
223-
if test -n "x$with_extra_libs"; then
224-
# Iterate over the list, removing the commas.
225-
for i in $(echo $with_extra_libs | sed "s/,/ /g"); do
226-
OPAL_FLAGS_APPEND_UNIQ([OPAL_EXTRA_LIBS], [$i])
227-
done
228-
AC_MSG_RESULT($OPAL_EXTRA_LIBS)
229-
else
230-
AC_MSG_RESULT(default)
231-
fi
232-
233218
#
234219
# Do we want the pretty-print stack trace feature?
235220
#

0 commit comments

Comments
 (0)