Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple commits #1784

Merged
merged 7 commits into from
Sep 4, 2023
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ configure.log.*
make.log.*
make.install.log.*
libtool
doxygen
bin
lib
cscope.*
Expand Down
1,101 changes: 0 additions & 1,101 deletions Doxyfile

This file was deleted.

4 changes: 2 additions & 2 deletions config/prte_mca.m4
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dnl Copyright (c) 2010-2020 Cisco Systems, Inc. All rights reserved
dnl Copyright (c) 2013-2019 Intel, Inc. All rights reserved.
dnl Copyright (c) 2019 Research Organization for Information Science
dnl and Technology (RIST). All rights reserved.
dnl Copyright (c) 2021-2022 Nanook Consulting. All rights reserved.
dnl Copyright (c) 2021-2023 Nanook Consulting. All rights reserved.
dnl $COPYRIGHT$
dnl
dnl Additional copyrights may follow
Expand Down Expand Up @@ -112,7 +112,7 @@ AC_DEFUN([PRTE_MCA],[
if test "$enable_static" != "no"; then
DSO_all=0
msg="none (static libraries built)"
elif test "$PRRTE_ENABLE_DLOPEN_SUPPORT" = 0; then
elif test "$PRTE_ENABLE_DLOPEN_SUPPORT" = 0; then
DSO_all=0
msg="none (dlopen disabled)"
elif test -z "$enable_mca_dso"; then
Expand Down
13 changes: 13 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,16 @@
.. |flex_min_version| replace:: {flex_min_version}

"""

# The sphinx_rtd_theme does not properly handle wrapping long lines in
# table cells when rendering to HTML due to a CSS issue (see
# https://github.com/readthedocs/sphinx_rtd_theme/issues/1505). Until
# the issue is fixed upstream in sphinx_rtd_theme, we can simply
# override the CSS here.
rst_prolog += """
.. raw:: html

<style>
.wy-table-responsive table td,.wy-table-responsive table th{white-space:normal}
</style>
"""
Loading
Loading