17 Commits

Author SHA1 Message Date
Michael Forney
a2c390b417 alsa-lib: Minor tweaks to switch patch
Use local variable for get/put index.

Remove unused variables.

Add assert(0) to unreachable default case in switch.
2024-03-17 00:27:08 -07:00
Michael Forney
0deaf3144d alsa-lib: Update to 1.2.11 2024-03-17 00:27:08 -07:00
Michael Forney
5910c7030f alsa-lib: Switch to upstream patch for static build fix 2021-06-27 02:59:13 -07:00
Michael Forney
cc1f4c2477 alsa-lib: Update to 1.2.5.1 2021-06-27 01:51:57 -07:00
Michael Forney
3356088141 alsa-lib: Update to 1.2.4 2020-10-26 02:49:44 -07:00
Michael Forney
4dc58652b8 alsa-lib: Update to 1.2.3.2 2020-07-09 13:17:05 -07:00
Michael Forney
7766b41dd6 alsa-lib: Update to 1.2.3 2020-06-10 17:42:50 -07:00
Michael Forney
928717b9d8 alsa-lib: Update to 1.2.2 2020-02-20 18:00:49 -08:00
Michael Forney
6dc989bb98 alsa-lib: Remove unneeded patch
cproc now supports enumerators with value > INT_MAX.
2020-02-04 22:19:37 -08:00
Michael Forney
e0b1383ffb alsa-lib: Update to 1.2.1 2019-11-13 23:24:15 -08:00
Michael Forney
f9226fb96d alsa-lib: Remove unnecessary patch for parameter qualifiers
I was mistaken about how type compatibility worked for function
types.
2019-07-07 22:48:33 -07:00
Michael Forney
c35ab591aa alsa-lib: Fix a few more portability issues 2019-07-06 01:24:36 -07:00
Michael Forney
9cd9b35cf5 alsa-lib: Avoid out-of-range enum constants 2019-07-03 00:53:07 -07:00
Michael Forney
23bb6a2a05 alsa-lib: Fix a few portability issues 2019-06-04 20:41:14 -07:00
Michael Forney
cd545ba477 alsa-lib: Update to 1.1.5 2017-11-14 22:16:31 -08:00
Michael Forney
56a3ff9ed0 alsa-lib: Update to 1.1.3 2016-12-29 23:29:18 -08:00
Michael Forney
293f5a93b7 Move to flat package hierarchy
Note to self: never try to move submodules again

To migrate your existing submodules (more or less):

	set -x
	set -e

	mkdir .git/modules/pkg
	for old in */*/src ; do
	        new="pkg/${old#*/}"
	        if ! [ -f "$old/.git" ] || [ "${old%%/*}" = pkg ] ; then
			continue
		fi
		git -C ".git/modules/$old" config core.worktree "../../../../../$new"
		rmdir "$new"
		mv "$old" "$new"
	        sed -e "s,$old,$new," "$new/.git" > "$new/.git.tmp"
	        mv "$new/.git.tmp" "$new/.git"
		mkdir ".git/modules/${new%/src}"
	        mv ".git/modules/$old" ".git/modules/$new"

		rm "${old%/src}"/*.ninja
		mv "${old%/src}"/*.tar.{gz,xz,bz2} "${new%/src}/"
		rmdir "${old%/src}" || true
	done
	sed -e 's,^\[submodule "[^/]*/,[submodule "pkg/,' .git/config > .git/config.tmp
	mv .git/config.tmp .git/config
2016-12-13 23:10:30 -08:00