From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2041) id C4E7A38356A6; Fri, 27 May 2022 06:52:12 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C4E7A38356A6 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Vladimir Mezentsev To: bfd-cvs@sourceware.org, gdb-cvs@sourceware.org Subject: [binutils-gdb] gprofng: fix build with --disable-shared X-Act-Checkin: binutils-gdb X-Git-Author: Vladimir Mezentsev X-Git-Refname: refs/heads/master X-Git-Oldrev: 7063667edb6a663163c2adba754b5abbbe67dc46 X-Git-Newrev: aa9b5dbc0f30855aa23034cbd78a1f2025cb9fa9 Message-Id: <20220527065212.C4E7A38356A6@sourceware.org> Date: Fri, 27 May 2022 06:52:12 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 May 2022 06:52:12 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3Daa9b5dbc0f30= 855aa23034cbd78a1f2025cb9fa9 commit aa9b5dbc0f30855aa23034cbd78a1f2025cb9fa9 Author: Vladimir Mezentsev Date: Thu May 26 18:38:33 2022 -0700 gprofng: fix build with --disable-shared =20 gprofng/ChangeLog 2022-05-26 Vladimir Mezentsev =20 * libcollector/configure.ac: Use AC_MSG_WARN instead of AC_MSG_= ERROR * libcollector/configure: Rebuild. Diff: --- gprofng/libcollector/configure | 3 ++- gprofng/libcollector/configure.ac | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gprofng/libcollector/configure b/gprofng/libcollector/configure index 687a6eeda5d..52d9892fadd 100755 --- a/gprofng/libcollector/configure +++ b/gprofng/libcollector/configure @@ -15471,7 +15471,8 @@ fi =20 =20 if test "$enable_shared" !=3D "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-sh= ared for gprofng/libcollector. Profiling will be unavailable." >&5 +$as_echo "$as_me: WARNING: Cannot set --enable-shared for gprofng/libcolle= ctor. Profiling will be unavailable." >&2;} fi =20 GPROFNG_VARIANT=3Dunknown diff --git a/gprofng/libcollector/configure.ac b/gprofng/libcollector/confi= gure.ac index 6b6c5c03e27..2e67e740c9e 100644 --- a/gprofng/libcollector/configure.ac +++ b/gprofng/libcollector/configure.ac @@ -38,7 +38,7 @@ AC_ENABLE_SHARED AC_DISABLE_STATIC =20 if test "$enable_shared" !=3D "yes"; then - AC_MSG_ERROR([Cannot set --enable-shared for gprofng/libcollector.]) + AC_MSG_WARN([Cannot set --enable-shared for gprofng/libcollector. Profil= ing will be unavailable.]) fi =20 GPROFNG_VARIANT=3Dunknown