diff options
author | Vladimir Mezentsev <vladimir.mezentsev@oracle.com> | 2022-05-26 18:38:33 -0700 |
---|---|---|
committer | Vladimir Mezentsev <vladimir.mezentsev@oracle.com> | 2022-05-26 23:51:37 -0700 |
commit | aa9b5dbc0f30855aa23034cbd78a1f2025cb9fa9 (patch) | |
tree | 4923e79e0282eccb9f6235bdf53ed5c623cbc7a9 | |
parent | 7063667edb6a663163c2adba754b5abbbe67dc46 (diff) | |
download | fsf-binutils-gdb-aa9b5dbc0f30855aa23034cbd78a1f2025cb9fa9.zip fsf-binutils-gdb-aa9b5dbc0f30855aa23034cbd78a1f2025cb9fa9.tar.gz fsf-binutils-gdb-aa9b5dbc0f30855aa23034cbd78a1f2025cb9fa9.tar.bz2 |
gprofng: fix build with --disable-shared
gprofng/ChangeLog
2022-05-26 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
* libcollector/configure.ac: Use AC_MSG_WARN instead of AC_MSG_ERROR
* libcollector/configure: Rebuild.
-rwxr-xr-x | gprofng/libcollector/configure | 3 | ||||
-rw-r--r-- | gprofng/libcollector/configure.ac | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/gprofng/libcollector/configure b/gprofng/libcollector/configure index 687a6ee..52d9892 100755 --- a/gprofng/libcollector/configure +++ b/gprofng/libcollector/configure @@ -15471,7 +15471,8 @@ fi if test "$enable_shared" != "yes"; then - as_fn_error $? "Cannot set --enable-shared for gprofng/libcollector." "$LINENO" 5 + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Cannot set --enable-shared for gprofng/libcollector. Profiling will be unavailable." >&5 +$as_echo "$as_me: WARNING: Cannot set --enable-shared for gprofng/libcollector. Profiling will be unavailable." >&2;} fi GPROFNG_VARIANT=unknown diff --git a/gprofng/libcollector/configure.ac b/gprofng/libcollector/configure.ac index 6b6c5c0..2e67e74 100644 --- a/gprofng/libcollector/configure.ac +++ b/gprofng/libcollector/configure.ac @@ -38,7 +38,7 @@ AC_ENABLE_SHARED AC_DISABLE_STATIC if test "$enable_shared" != "yes"; then - AC_MSG_ERROR([Cannot set --enable-shared for gprofng/libcollector.]) + AC_MSG_WARN([Cannot set --enable-shared for gprofng/libcollector. Profiling will be unavailable.]) fi GPROFNG_VARIANT=unknown |