Browse Source

Stefan Fiedler:


			
			
				rocklinux
			
			
		
Stefan Fiedler 20 years ago
parent
commit
85fcc26864
3 changed files with 11 additions and 99 deletions
  1. +2
    -2
      package/base/alsa-driver/alsa-driver.desc
  2. +9
    -9
      package/base/alsa/alsa.desc
  3. +0
    -88
      package/base/alsa/linux-asm-byteorder_h.patch.alsa-lib

+ 2
- 2
package/base/alsa-driver/alsa-driver.desc

@ -42,8 +42,8 @@
[L] GPL [L] GPL
[S] Stable [S] Stable
[V] 1.0.7
[V] 1.0.8 1
[P] X -?---5---9 124.500 [P] X -?---5---9 124.500
[D] 3133099426 alsa-driver-1.0.7.tar.bz2 ftp://ftp.alsa-project.org/pub/driver/
[D] 2672356061 alsa-driver-1.0.8.tar.bz2 ftp://ftp.alsa-project.org/pub/driver/

+ 9
- 9
package/base/alsa/alsa.desc

@ -43,16 +43,16 @@
[L] GPL [L] GPL
[S] Stable [S] Stable
[V] 1.0.7
[V] 1.0.8 1
[P] X -?---5---9 110.800 [P] X -?---5---9 110.800
[O] alsa_lib_version=1.0.7
[O] alsa_utils_version=1.0.7
[O] alsa_tools_version=1.0.7
[O] alsa_oss_version=1.0.7
[O] alsa_lib_version=1.0.8
[O] alsa_utils_version=1.0.8
[O] alsa_tools_version=1.0.8
[O] alsa_oss_version=1.0.8
[D] 2710234670 alsa-lib-1.0.7.tar.bz2 ftp://ftp.alsa-project.org/pub/lib/
[D] 0379488584 alsa-utils-1.0.7.tar.bz2 ftp://ftp.alsa-project.org/pub/utils/
[D] 1607169319 alsa-tools-1.0.7.tar.bz2 ftp://ftp.alsa-project.org/pub/tools/
[D] 2562488081 alsa-oss-1.0.7.tar.bz2 ftp://ftp.alsa-project.org/pub/oss-lib/
[D] 679735730 alsa-lib-1.0.8.tar.bz2 ftp://ftp.alsa-project.org/pub/lib/
[D] 2386081835 alsa-utils-1.0.8.tar.bz2 ftp://ftp.alsa-project.org/pub/utils/
[D] 2337387884 alsa-tools-1.0.8.tar.bz2 ftp://ftp.alsa-project.org/pub/tools/
[D] 2420262272 alsa-oss-1.0.8.tar.bz2 ftp://ftp.alsa-project.org/pub/oss-lib/

+ 0
- 88
package/base/alsa/linux-asm-byteorder_h.patch.alsa-lib

@ -1,88 +0,0 @@
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
#
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# Please add additional copyright information _after_ the line containing
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
#
# ROCK Linux: rock-src/package/base/alsa/linux-asm-byteorder_h.patch.alsa-lib
# ROCK Linux is Copyright (C) 1998 - 2005 Clifford Wolf
#
# This patch file is dual-licensed. It is available under the license the
# patched project is licensed under, as long as it is an OpenSource license
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
# of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# --- ROCK-COPYRIGHT-NOTE-END ---
diff -dur alsa-lib-1.0.6/src/instr/fm.c alsa-lib-1.0.6-patch/src/instr/fm.c
--- alsa-lib-1.0.6/src/instr/fm.c 2002-02-04 11:18:40.000000000 +0000
+++ alsa-lib-1.0.6-patch/src/instr/fm.c 2004-10-24 02:46:15.498518520 +0000
@@ -30,6 +30,19 @@
#include <sys/stat.h>
#include <stdio.h>
#include "local.h"
+
+#ifdef __CHECKER__
+#define __bitwise __attribute__((bitwise))
+#else
+#define __bitwise
+#endif
+#define __le16 __bitwise __u16
+#define __be16 __bitwise __u16
+#define __le32 __bitwise __u32
+#define __be32 __bitwise __u32
+#define __le64 __bitwise __u64
+#define __be64 __bitwise __u64
+
#include <asm/byteorder.h>
#include <sound/ainstr_fm.h>
diff -dur alsa-lib-1.0.6/src/instr/iwffff.c alsa-lib-1.0.6-patch/src/instr/iwffff.c
--- alsa-lib-1.0.6/src/instr/iwffff.c 2004-04-20 13:42:48.000000000 +0000
+++ alsa-lib-1.0.6-patch/src/instr/iwffff.c 2004-10-24 02:47:55.470320496 +0000
@@ -31,6 +31,19 @@
#include <sys/stat.h>
#include <stdio.h>
#include "local.h"
+
+#ifdef __CHECKER__
+#define __bitwise __attribute__((bitwise))
+#else
+#define __bitwise
+#endif
+#define __le16 __bitwise __u16
+#define __be16 __bitwise __u16
+#define __le32 __bitwise __u32
+#define __be32 __bitwise __u32
+#define __le64 __bitwise __u64
+#define __be64 __bitwise __u64
+
#include <sound/ainstr_iw.h>
/*
diff -dur alsa-lib-1.0.6/src/instr/simple.c alsa-lib-1.0.6-patch/src/instr/simple.c
--- alsa-lib-1.0.6/src/instr/simple.c 2002-02-04 11:18:40.000000000 +0000
+++ alsa-lib-1.0.6-patch/src/instr/simple.c 2004-10-24 02:46:41.286598136 +0000
@@ -31,6 +31,19 @@
#include <sys/stat.h>
#include <stdio.h>
#include "local.h"
+
+#ifdef __CHECKER__
+#define __bitwise __attribute__((bitwise))
+#else
+#define __bitwise
+#endif
+#define __le16 __bitwise __u16
+#define __be16 __bitwise __u16
+#define __le32 __bitwise __u32
+#define __be32 __bitwise __u32
+#define __le64 __bitwise __u64
+#define __be64 __bitwise __u64
+
#include <asm/byteorder.h>
#include <sound/ainstr_simple.h>

Loading…
Cancel
Save