? pulseaudio/patches/patch-ah Index: pulseaudio/distinfo =================================================================== RCS file: /cvsroot/pkgsrc/audio/pulseaudio/distinfo,v retrieving revision 1.19.4.1 diff -u -r1.19.4.1 distinfo --- pulseaudio/distinfo 25 Jul 2010 13:16:12 -0000 1.19.4.1 +++ pulseaudio/distinfo 7 Aug 2010 23:42:55 -0000 @@ -10,7 +10,8 @@ SHA1 (patch-ae) = 5e6957e73ffd96d2e63e5ea4eb9b0ca9ea016b30 SHA1 (patch-af) = e11fb419787e3cd1f305b66c995915f11276770e SHA1 (patch-ag) = 523743b49476a219f76b108a605b2b57ea63098a -SHA1 (patch-ba) = d05d290d90120986654aa86f090b6c20c68e8594 +SHA1 (patch-ah) = 8327883adcbc679fdb97de9a0f10a89438ea9fd7 +SHA1 (patch-ba) = 3e5f28049363676d4bf3061605529253bea24f25 SHA1 (patch-bb) = e6f4095eb460c605b8dcc02980c5cff0cd0715a8 SHA1 (patch-ca) = 3016b290943c006392bff01d6eae75a432a7e171 SHA1 (patch-da) = d56957d37bec15bd41d77b99ce60bcdea0ef4f20 Index: pulseaudio/patches/patch-ba =================================================================== RCS file: /cvsroot/pkgsrc/audio/pulseaudio/patches/patch-ba,v retrieving revision 1.6.2.2 diff -u -r1.6.2.2 patch-ba --- pulseaudio/patches/patch-ba 25 Jul 2010 13:16:12 -0000 1.6.2.2 +++ pulseaudio/patches/patch-ba 7 Aug 2010 23:42:55 -0000 @@ -4,9 +4,22 @@ http://git.0pointer.de/?p=pulseaudio.git;a=patch;h=d3efa43d85ac132c6a5a416a2b6f2115f5d577ee +Also handle atomic_ops for NetBSD/arm. + --- configure.ac.orig 2009-11-23 04:06:47.000000000 +0000 -+++ configure.ac 2010-07-24 13:33:30.000000000 +0100 -@@ -424,7 +424,7 @@ ++++ configure.ac 2010-08-07 08:06:57.000000000 +0000 +@@ -220,6 +220,10 @@ + AC_MSG_RESULT([yes]) + AC_DEFINE_UNQUOTED(ATOMIC_ARM_LINUX_HELPERS, 1, [special arm linux implementation]) + need_libatomic_ops=no ++ elif test "x$pulse_target_os" = "xnetbsd" && test "x$atomic_netbsd_helpers" = "xyes"; then ++ AC_MSG_RESULT([yes]) ++ AC_DEFINE_UNQUOTED(NETBSD_ATOMIC_OPS, 1, [netbsd implementation]) ++ need_libatomic_ops=no + else + AC_MSG_RESULT([no]) + AC_CACHE_CHECK([compiler support for arm inline asm atomic operations], +@@ -424,7 +428,7 @@ AC_FUNC_FORK AC_FUNC_GETGROUPS AC_FUNC_SELECT_ARGTYPES --- /dev/null 2010-08-08 08:41:17.000000000 +0900 +++ pulseaudio/patches/patch-ah 2010-08-07 17:21:20.000000000 +0900 @@ -0,0 +1,19 @@ +$NetBSD$ + +--- src/pulsecore/cpu-arm.c.orig 2009-11-23 03:57:07.000000000 +0000 ++++ src/pulsecore/cpu-arm.c 2010-08-07 08:14:36.000000000 +0000 +@@ -129,11 +129,11 @@ + (flags & PA_CPU_ARM_EDSP) ? "EDSP " : "", + (flags & PA_CPU_ARM_NEON) ? "NEON " : "", + (flags & PA_CPU_ARM_VFPV3) ? "VFPV3 " : ""); +-#else /* defined (__linux__) */ +- pa_log ("ARM cpu features not yet supported on this OS"); +-#endif /* defined (__linux__) */ + + if (flags & PA_CPU_ARM_V6) + pa_volume_func_init_arm (flags); ++#else /* defined (__linux__) */ ++ pa_log ("ARM cpu features not yet supported on this OS"); ++#endif /* defined (__linux__) */ + #endif /* defined (__arm__) */ + }