From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C7E5C15800A for ; Sat, 5 Aug 2023 04:32:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D864B2BC019; Sat, 5 Aug 2023 04:32:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C3C362BC019 for ; Sat, 5 Aug 2023 04:32:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E03A5340D8B for ; Sat, 5 Aug 2023 04:32:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35188EFB for ; Sat, 5 Aug 2023 04:32:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1691209934.4f42e1984227012797030839b5e757a6da147141.sam@gentoo> Subject: [gentoo-commits] proj/sandbox:master commit in: / X-VCS-Repository: proj/sandbox X-VCS-Files: configure.ac X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4f42e1984227012797030839b5e757a6da147141 X-VCS-Branch: master Date: Sat, 5 Aug 2023 04:32:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a4bbf094-4269-4c5b-9745-28c116d7bc22 X-Archives-Hash: ec95193538b9d6a0c5c7046f2e631f4d commit: 4f42e1984227012797030839b5e757a6da147141 Author: Sam James gentoo org> AuthorDate: Fri Jul 21 15:04:23 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Aug 5 04:32:14 2023 +0000 URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=4f42e198 configure.ac: cleanup error messages Signed-off-by: Sam James gentoo.org> configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index e5e9722..bb4c52c 100644 --- a/configure.ac +++ b/configure.ac @@ -294,18 +294,18 @@ if test x"$va_copy" != xva_copy ; then ) fi -dnl Verify people aren't doing stupid shit +dnl Avoid footguns. if test x"$enable_static" != xno ; then - AC_MSG_ERROR([dont be a Kumba, building a libsandbox.a is stupid]) + AC_MSG_ERROR([Building a static libsandbox.a is not supported]) fi if test x"$enable_shared" != xyes ; then - AC_MSG_ERROR([dont be a Kumba, omitting a libsandbox.so is stupid]) + AC_MSG_ERROR([Omitting a libsandbox.so is not supported]) fi if echo " $CFLAGS " | $EGREP ' -static ' >/dev/null 2>&1; then - AC_MSG_ERROR([dont be a Kumba, using -static in CFLAGS is stupid]) + AC_MSG_ERROR([Using -static in CFLAGS is not supported]) fi if echo " $LDFLAGS " | $EGREP ' -static ' >/dev/null 2>&1; then - AC_MSG_ERROR([dont be a Kumba, using -static in LDFLAGS is stupid]) + AC_MSG_ERROR([Using -static in LDFLAGS is not supported]) fi dnl Some libc's like those on bsd have dlopen() in libc, and not libdl