DKIM-Filter: OpenDKIM Filter v2.11.0 delorie.com 49A08oYa1031685 Authentication-Results: delorie.com; dkim=pass (1024-bit key, unprotected) header.d=cygwin.com header.i=@cygwin.com header.a=rsa-sha256 header.s=default header.b=AeIDhjXj X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 47A93385E003 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1728518928; bh=aiPwcRdt7gIZcb8ahFL1Vg9DPCJ8MugsJMxSu6YrWe8=; h=Date:To:Subject:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=AeIDhjXjMlUtx/UWUmpv9CEBmsc+s3U53JzCJJOqbO6vthD8d3Bd301cDBMI1zRlr /L5pKxcpfp49wdyz9sOhnMME6rGzvOp9Idva25vCAGcButlqzL/jtLc1DkuHQ6xl0N PT+9vBqUrBTjWOcXPqgh4fMk0Z+4aVGiSH4IJJn0= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 1C7A1385DDFF ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 1C7A1385DDFF ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1728518873; cv=none; b=Nyi4O+t8DA2klQOAqz7szWTfT33VYzOff9/IZ63W2L5WHOAJLqYev+L3X1w2OoubJPHgySN0XfVOhMME+Vu+Pd1HBQiLlVQuWxgjNfiKoFiJ2TQFRJUopvXi9V+JJQYx2XodhBocylPd8xyR/2uztMxSURdTy/1RhB1R/Ho+zS0= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1728518873; c=relaxed/simple; bh=99n7kXMSyjT93t1hXqftgQ5kQLaXhmKd9KkEWFHtztc=; h=DKIM-Signature:Date:To:From:Subject:Message-ID:MIME-Version; b=raUob4REP+wTW0q/hQi4b8Vk/J31RXkaEV+AzD+EzZQ0Ux9mqguV9FU41pBCGQxITtYQbJvgitwfg93FWiPSNbvc4Yvmcc8vNKf2TVpyWCecE9ktIJLQJwWLduG0TevRFW10jk5ruv3UEM+KqXVjT04BPrIMYRVozsQHnngFr/g= ARC-Authentication-Results: i=1; server2.sourceware.org Date: Thu, 10 Oct 2024 00:07:43 +0000 To: cygwin AT cygwin DOT com Subject: Re: automake-bin Message-ID: In-Reply-To: <0f53a80c-f7bb-4a12-8eec-f28c75a8b37e@SystematicSW.ab.ca> References: <0f53a80c-f7bb-4a12-8eec-f28c75a8b37e AT SystematicSW DOT ab DOT ca> Feedback-ID: 65268012:user:proton X-Pm-Message-ID: 82ace7908bac9ef9da31e9fcdf8a4ef72d3d9d19 MIME-Version: 1.0 X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, KAM_INFOUSMEBIZ, RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.30 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Jim McNamara via Cygwin Reply-To: Jim McNamara Content-Type: text/plain; charset="utf-8" Errors-To: cygwin-bounces~archive-cygwin=delorie DOT com AT cygwin DOT com Sender: "Cygwin" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id 49A08oYa1031685 Hi Brian- I had tried autoreconf -i. I will keep thinking about it. I am in a bit of a loop trying to troubleshoot it. thanks, jim Sent with Proton Mail secure email. On Wednesday, October 9th, 2024 at 7:05 PM, Brian Inglis via Cygwin wrote: > On 2024-10-09 15:20, Jim McNamara via Cygwin wrote: > > > Hi- > > > > which package does cygwin have for automake-bin. I need aclocal because the software i am installing has a newer automake, autoconf, and libtool than what is available than the dir that resides in ./configure dir. It instructed me to do this: > > > > thanks for any help guys. > > > > jim > > > > Steps to Resolve the Issue > > Install automake-bin: > > > > Run the Cygwin setup executable (setup-x86_64.exe for 64-bit). > > Search for automake-bin. > > Make sure it is selected for installation. > > Reinstall automake: > > > > To ensure compatibility, you might also want to reinstall the automake package alongside automake-bin. > > Verify Installation: > > > > After installation, check if aclocal is now available: > > bash > > Copy code > > aclocal --version > > Regenerate Build Files: > > > > Once aclocal is installed, you can run the necessary commands to regenerate your project’s build files: > > bash > > Copy code > > aclocal > > autoconf > > automake --add-missing > > Continue the Build Process: > > > > After regenerating the files, proceed with configuring and building your project: > > bash > > Copy code > > ./configure --prefix=/usr/ > > make > > By ensuring that both automake and automake-bin are installed, you should be able to resolve the version issues and successfully run aclocal. If you continue to face problems, please let me know! > > > Those must be really old instructions! > Check on the Cygwin Time Machine for automake-bin. > Repology.org has no hits for automake-bin, mostly just automake, including > Cygwin, and a couple of instances of automake-common and automake-vanilla. > That could also just be a reference to BSD or similar ports package names. > > Normally on Cygwin package builds, you run autoreconf to update the package > autotools scripts and macros, and use or apply Cygwin adaptations to macros for > tool variants. > It is normally easier to install cygport and create a cygport script with > minimal variable definitions to automagically build and check a package using > autotools. > > -- > Take care. Thanks, Brian Inglis Calgary, Alberta, Canada > > La perfection est atteinte Perfection is achieved > non pas lorsqu'il n'y a plus rien à ajouter not when there is no more to add > mais lorsqu'il n'y a plus rien à retirer but when there is no more to cut > -- Antoine de Saint-Exupéry > > -- > Problem reports: https://cygwin.com/problems.html > FAQ: https://cygwin.com/faq/ > Documentation: https://cygwin.com/docs.html > Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple