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 _______________________________________________ Alsa-devel mailing list Alsa-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.sourceforge.net/lists/listinfo/alsa-devel