Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: ALSA development <alsa-devel@alsa-project.org>
Cc: alsa-devel@lists.sourceforge.net
Subject: Re: ALSA 1.0.12rc2
Date: Wed, 09 Aug 2006 13:25:13 +0200	[thread overview]
Message-ID: <s5hd5baducm.wl%tiwai@suse.de> (raw)
In-Reply-To: <20060809111319.GD31959@neu.nirvana>

At Wed, 9 Aug 2006 13:13:19 +0200,
Axel Thimm wrote:
> 
> Hi,
> 
> On Fri, Aug 04, 2006 at 04:01:26PM +0200, Jaroslav Kysela wrote:
> > 	1.0.12rc2 ALSA packages (except tools and oss - no changes) were 
> > released. The list of changes can be obtained here:
> 
> I tried to build on several FC/RHEL platforms, there are some new
> failures wrt rc1:
> 
> a) all 2.4. kernel platforms (but probably more binutils related):
>    Starting with pcm_oss.o it fails on assembly
> 
> {standard input}:5744: Warning: rest of line ignored; first ignored character is `"'
> {standard input}:5745: Error: unknown pseudo-op: `.text.lock.'

Does it happen with HG version?

> b) on 2.6.10/x86_64:
> 
>   CC [M]  /builddir/alsa-driver-1.0.12rc2/acore/ioctl32/ioctl32.o
>   CC [M]  /builddir/alsa-driver-1.0.12rc2/acore/ioctl32/pcm32.o
> In file included from /builddir/alsa-driver-1.0.12rc2/acore/ioctl32/pcm32.c:16:
> /builddir/alsa-driver-1.0.12rc2/acore/ioctl32/pcm32_new.c: In function `snd_pcm_info_ioctl32':
> /builddir/alsa-driver-1.0.12rc2/acore/ioctl32/pcm32_new.c:409: error: structure has no member named `no_mmap_ctrl'
> make[4]: *** [/builddir/alsa-driver-1.0.12rc2/acore/ioctl32/pcm32.o] Error 1

OK, that's my failure.  The patch below should fix.
(applied to HG now.)

> c) on 2.6.17/x86_64 xen guest kernels:
> 
>   CC [M]  /builddir/alsa-driver-1.0.12rc2/acore/memory_wrapper.o
> /builddir/alsa-driver-1.0.12rc2/acore/memory_wrapper.c: In function 'snd_compat_vmalloc_to_page':
> /builddir/alsa-driver-1.0.12rc2/acore/memory_wrapper.c:40: error: implicit declaration of function 'VMALLOC_VMADDR'
> /builddir/alsa-driver-1.0.12rc2/acore/memory_wrapper.c:45: error: incompatible type for argument 1 of 'pud_val'
> /builddir/alsa-driver-1.0.12rc2/acore/memory_wrapper.c:46: error: implicit declaration of function 'pte_offset'
> /builddir/alsa-driver-1.0.12rc2/acore/memory_wrapper.c:46: warning: assignment makes pointer from integer without a cast
> make[3]: *** [/builddir/alsa-driver-1.0.12rc2/acore/memory_wrapper.o] Error 1

This must be because of the failed detection in configure.
Could you show config.log?


thanks,

Takashi

diff -r 486e8f257fb7 acore/ioctl32/pcm32_old.c
--- a/acore/ioctl32/pcm32_old.c	Tue Aug 08 21:16:55 2006 +0200
+++ b/acore/ioctl32/pcm32_old.c	Wed Aug 09 13:21:13 2006 +0200
@@ -518,7 +518,7 @@ static int snd_pcm_info_ioctl32(unsigned
 	substream = pcm_file->substream;
 	if (! substream)
 		return -ENOTTY;
-	substream->no_mmap_ctrl = 1;
+	substream->no_compat_mmap = 1;
 	return filp->f_op->ioctl(filp->f_dentry->d_inode, filp, cmd, arg);
 }
 

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

  reply	other threads:[~2006-08-09 11:25 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-08-04 14:01 ALSA 1.0.12rc2 Jaroslav Kysela
2006-08-04 16:35 ` [alsa-announce] " Thierry Vignaud
2006-08-04 16:42   ` Thierry Vignaud
2006-08-04 16:46   ` Takashi Iwai
2006-08-04 17:11     ` Thierry Vignaud
2006-08-04 17:19       ` Jaroslav Kysela
2006-08-09 11:13 ` Axel Thimm
2006-08-09 11:25   ` Takashi Iwai [this message]
2006-08-09 11:36     ` Axel Thimm
2006-08-09 12:17       ` Takashi Iwai
2006-08-10 15:32         ` Axel Thimm
2006-08-10 16:41           ` Takashi Iwai
2006-08-10 15:29     ` Axel Thimm
2006-08-10 15:33       ` Axel Thimm
2006-08-10 16:41       ` Takashi Iwai
2006-08-19 14:56         ` 1.0.12rc3 (was: ALSA 1.0.12rc2) Axel Thimm

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=s5hd5baducm.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=alsa-devel@lists.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox