delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2024/10/09/17:21:17

DKIM-Filter: OpenDKIM Filter v2.11.0 delorie.com 499LLGpS970783
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=KojO1Juc
X-Recipient: archive-cygwin AT delorie DOT com
DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 964F1385EC10
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com;
s=default; t=1728508874;
bh=rq2gjqQ5sof0uY6qiZo72iycyJYY2iGuoE5z8SYKEtQ=;
h=Date:To:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post:
List-Help:List-Subscribe:From:Reply-To:From;
b=KojO1Juc15lSJHO4VXhFlAA5Gmf2RXgPYRsbOdOmvjr4iQdSKEsRWbLnMO8O/1cS0
jTHL00GchEG3ih374XOct2KTOfMvciM6bg4MILMrxX6626a7XDAHcqHNeQxY3GPH20
9hzZwR1cLAfV2R0K/fIIOACpCUz9cGYZakIAnu0U=
X-Original-To: cygwin AT cygwin DOT com
Delivered-To: cygwin AT cygwin DOT com
DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 733E7385E459
ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 733E7385E459
ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1728508849; cv=none;
b=FKrVLtQzq+zFinTuRt7ylllhZHoHvjt0KrhVgyHFZXQi0nnJoXE213RtSPG3IKk/Oy2kT2kCb7dghuv7ph5EN9wt7Qy/hjk1olAkH2dJdoW+pw04X9C1oOC5QNTAsqe+TrC0W+OVOGAOxUkHYW/wh3PuaDV5kUinDivtLLpiptA=
ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key;
t=1728508849; c=relaxed/simple;
bh=sNnefHXVY1Ib3/mzJIhF+j5iD/1+Umjz6YvtHMdWMdw=;
h=DKIM-Signature:Date:To:From:Subject:Message-ID:MIME-Version;
b=eMo9YRyDhdu377TXPgyj640m+IrTF+XCllQ1bTiuvToBE9DYtZPnZbIH/tPybWxRn6ySYngVZcuJCzVJnYiT3EtN5A9Z01Pby+xTGYiqXI47eWGUSZA1cMzgy21i7bNcgw6Wip4uWJ9Bstl2a5ULqkgpVHsgTfrc8roEVUbGmiE=
ARC-Authentication-Results: i=1; server2.sourceware.org
Date: Wed, 09 Oct 2024 21:20:39 +0000
To: "cygwin AT cygwin DOT com" <cygwin AT cygwin DOT com>
Subject: automake-bin
Message-ID: <TDEdAbUIMgUOOK76DUb4E6fQaKaXJqYTwj-fWuZie8cjvK8PUJDdXprbgBo5FvW8hHbTxon0Qh-iTopHQICwOVnW7LHK4TdF487Vq3p0jZs=@proton.me>
Feedback-ID: 65268012:user:proton
X-Pm-Message-ID: 68f4f3db23db001d625fcec9131601f11e35b21e
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
List-Id: General Cygwin discussions and problem reports <cygwin.cygwin.com>
List-Archive: <https://cygwin.com/pipermail/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-request AT cygwin DOT com?subject=help>
List-Subscribe: <https://cygwin.com/mailman/listinfo/cygwin>,
<mailto:cygwin-request AT cygwin DOT com?subject=subscribe>
From: Jim McNamara via Cygwin <cygwin AT cygwin DOT com>
Reply-To: Jim McNamara <jmcnamara10001 AT proton DOT me>
Sender: "Cygwin" <cygwin-bounces~archive-cygwin=delorie DOT com AT cygwin DOT com>
X-MIME-Autoconverted: from base64 to 8bit by delorie.com id 499LLGpS970783

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!




Sent with Proton Mail secure email.

-- 
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

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019