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 E4CC4DC0D45; Thu, 28 May 2015 13:55:11 +0000 (UTC) Received: from ncopa-desktop.alpinelinux.org (unknown [79.160.13.133]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: n@tanael.org) by mail.alpinelinux.org (Postfix) with ESMTPSA id 04D9BDC0B9E; Thu, 28 May 2015 13:55:10 +0000 (UTC) Date: Thu, 28 May 2015 15:55:08 +0200 From: Natanael Copa To: Andrew Hills Cc: ScrumpyJack , Alpine Devel List Subject: Re: [alpine-devel] [PATCH] new aport:moc Message-ID: <20150528155508.697035a0@ncopa-desktop.alpinelinux.org> In-Reply-To: <20150528125218.GA5046@ataiki> References: <20150528125218.GA5046@ataiki> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; x86_64-alpine-linux-musl) 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-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP On Thu, 28 May 2015 08:52:18 -0400 Andrew Hills wrote: > 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? we normally solve this with: prepare() { update_config_sub || return 1 ... } -nc --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---