X-Original-To: alpine-devel@mail.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 3EDBADC0787 for ; Thu, 28 May 2015 12:50:52 +0000 (UTC) Received: from ataiki.ednos.net (ednos.dserver.softronics.ch [91.214.168.83]) by mail.alpinelinux.org (Postfix) with ESMTP id 02B77DC0786 for ; Thu, 28 May 2015 12:50:46 +0000 (UTC) Received: by ataiki.ednos.net (Postfix, from userid 10001) id CB4571AEC; Thu, 28 May 2015 08:52:18 -0400 (EDT) Date: Thu, 28 May 2015 08:52:18 -0400 From: Andrew Hills To: ScrumpyJack Cc: Alpine Devel List Subject: Re: [alpine-devel] [PATCH] new aport:moc Message-ID: <20150528125218.GA5046@ataiki> References: X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) X-Virus-Scanned: ClamAV using ClamSMTP On Wed, May 20, 2015 at 04:21:47PM +0000, ScrumpyJack wrote: > +build() { > + cd "$_builddir" > + ./configure \ > + --build=$CBUILD \ > + --host=$CHOST \ > + --prefix=/usr \ > + --without-rcc \ > + --with-oss \ > + --with-alsa \ > + --with-jack \ > + --with-aac \ > + --with-mp3 \ > + --with-musepack \ > + --with-vorbis \ > + --with-flac \ > + --with-wavpack \ > + --with-sndfile \ > + --with-modplug \ > + --with-ffmpeg \ > + --with-speex \ > + --with-samplerate \ > + --with-curl \ > + --disable-cache \ > + --disable-debug \ > + || return 1 > + make || return 1 > +} Thanks for this APKBUILD; however, at least on 3.2, I'm unable to complete the configure step, as it fails very early: checking build system type... Invalid configuration `x86_64-alpine-linux-musl': machine `x86_64-alpine-linux' not recognized This is from config.sub:324, which tests $basic_machine and matches *-*-*. I suppose the best solution here is to patch config.sub to explicitly consider linux-musl in lines 126-129... of course, this is just one more argument against autoconf, but perhaps upstream could be convinced to use a more modern version than whatever was around in November of 2009. How did you get this to build? --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---