From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 63C29C433FE for ; Wed, 2 Nov 2022 15:16:46 +0000 (UTC) Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id 7FB491678; Wed, 2 Nov 2022 16:15:54 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 7FB491678 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1667402204; bh=VZDYBKFvBlOtHAfSwO0GE34rHPXlIQG1SllWYfsmI7o=; h=Date:From:To:Subject:References:In-Reply-To:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=fxPaZHHX5PAwZRenWLUyVodJsdwbZYy5JvF+S0h30glKWmZ5NG6dow4bVxNNC54bJ JS3qRhLjylWpXnqa+yqUoBjY6LiZZ/tSuLCP0u1A+G59fooCQ27QPlmzJaw4sLnft0 wPBJ3KSta7cssXZShT3OpNlvTi44KnVxCNJFuj04= Received: from alsa1.perex.cz (localhost.localdomain [127.0.0.1]) by alsa1.perex.cz (Postfix) with ESMTP id 21941F80254; Wed, 2 Nov 2022 16:15:54 +0100 (CET) Received: by alsa1.perex.cz (Postfix, from userid 50401) id 28AEEF8026D; Wed, 2 Nov 2022 16:15:52 +0100 (CET) Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id 190BEF80085 for ; Wed, 2 Nov 2022 16:15:45 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz 190BEF80085 Authentication-Results: alsa1.perex.cz; dkim=pass (2048-bit key) header.d=disroot.org header.i=@disroot.org header.b="i12fpuAl" Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 4789241099 for ; Wed, 2 Nov 2022 16:15:45 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id q8oK2IXWbw3R for ; Wed, 2 Nov 2022 16:15:44 +0100 (CET) Received: from ael by shelf.conquest with local (Exim 4.96) (envelope-from ) id 1oqFSw-00029p-1a for alsa-devel@alsa-project.org; Wed, 02 Nov 2022 15:15:42 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1667402144; bh=VZDYBKFvBlOtHAfSwO0GE34rHPXlIQG1SllWYfsmI7o=; h=Date:From:To:Subject:References:In-Reply-To; b=i12fpuAl1vwfKzbHYpekWywVl2B6SKlIbbXqTDeOuGmty0uiVuOwfZ+69oMxccjNv bQZyG4rR17uoOwj6OToAc++PTaSuNweqAxpdGX+3VuMSQRVE3SpD+WYIRm1har6llm cckPGSZAQssYiD/gas8iUZf0AE3lv8ep6fXpz8IOaf+rd+/ICaeldyzdkzndVs1jxd OK219YIYW256DJa1/DIMmPKw9kOSd4bjmpJiql5f+A0C/H7jhs3pGcOczpCF6RSS+Y tDTCSzDmvrcc+7CsthH/3/HmmPhCxhqNBpZUIOEj4ISgcYiuAW/lY4HqUomdqP8LAu Q47Ab4vDU1q6g== Date: Wed, 2 Nov 2022 15:15:42 +0000 From: ael To: alsa-devel@alsa-project.org Subject: Re: building aplay / arecord Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: "Alsa-devel" On Mon, Oct 31, 2022 at 06:04:26PM -0700, David Jaffe wrote: > Newbie question... > > I downloaded the alsa-utils source and it says to run ./configure. But no > such file exists. And if I go to aplay and type “make aplay” it can’t find > a file called “aconfig.h”, which is presumably written by > ./configure. What am I missing? I think that you need to run autoconf on the configure.ac file which you should have: it is there in the git directory. Perhaps read man autoconf ? The INSTALL file does indeed say run ./configure without explaining that you need autoconf if ./configure is not present. ael