Commit Graph

40 Commits

Author SHA1 Message Date
Michael Forney 7e67dd95ea alsa-lib: Build sequencer API 2025-04-28 22:04:42 -07:00
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 4aac9d80fc alsa-lib: Build with rawmidi support 2020-11-04 15:33:23 -08: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 0b9f96a92c alsa-lib: Update to 1.2.3.1 2020-06-23 15:18:46 -07:00
Michael Forney 7766b41dd6 alsa-lib: Update to 1.2.3 2020-06-10 17:42:50 -07:00
Michael Forney 4506113255 Revert accidentally staged local alsa-lib commits 2020-06-05 03:45:39 -07:00
Michael Forney cc7c9fb794 alsa-lib: Disable modules that require dynamic linking 2020-06-05 03:01:44 -07:00
Michael Forney d4297a13c8 Use -isystem to include library headers
This way, warnings from headers that come from another package (in
particular linux-headers) won't show up when they get included.

To make sure we still track dependencies, use -MD instead of -MMD.
2020-06-05 03:01:44 -07:00
Michael Forney aea11e0e4a Use our own linux-headers 2020-02-20 20:10:31 -08: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 ede054e3c0 alsa-lib: Update to 1.2.1 again
More changes were made upstream and the v1.2.1 tag was force-pushed.
2019-11-15 00:32:30 -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 a87a386e3a alsa-lib: Detect whether TLS is available 2019-07-06 01:24:36 -07:00
Michael Forney ad2697b3e7 alsa-lib: Update version number 2019-07-06 01:24:36 -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 19e5f5d309 alsa-lib: Update to 1.1.9 2019-05-22 00:53:42 -07:00
Michael Forney 4332740046 Rename rev to ver, and keep track of package versions as well 2019-03-19 00:14:12 -07:00
Michael Forney 9833f2a39c alsa-lib: Update to 1.1.8 2019-01-28 16:55:14 -08:00
Michael Forney 9ebbb7629b alsa-lib: Update to 1.1.7 2018-11-03 01:16:52 -07:00
Michael Forney 19e535cc3a alsa-lib: Update to 1.1.6 2018-04-10 12:09:21 -07:00
Michael Forney f377442fbc Revert accidentally updated submodules in b99ef6bfc5
`git commit -a` with ignored submodules strikes again. I really
should report a bug about this.
2018-03-16 10:16:40 -07:00
Michael Forney b99ef6bfc5 libdrm: Check if config.video_drivers is set 2018-03-10 19:08:35 -08:00
Michael Forney cd545ba477 alsa-lib: Update to 1.1.5 2017-11-14 22:16:31 -08:00
Michael Forney 1e38051efd alsa-lib: Remove HAVE_LIBDL
This was accidentally enabled in 66fbae202a, which
I apparently did not test.
2017-10-27 10:19:26 -07:00
Michael Forney 66fbae202a alsa-lib: Don't use config-posix.h 2017-10-24 20:35:08 -07:00
Michael Forney ba94a8513d Rewrite ninja generation scripts in Lua 2017-09-25 19:23:06 -07:00
Michael Forney 9a2cd66aa7 alsa-lib: Update to 1.1.4.1 2017-06-03 22:48:59 -07:00
Michael Forney abfe89bd68 alsa-lib: Update to 1.1.4 2017-05-28 16:47:31 -07:00
Michael Forney 56a3ff9ed0 alsa-lib: Update to 1.1.3 2016-12-29 23:29:18 -08:00
Michael Forney 42c07c42f8 alsa-lib: Remove snd_pcm_hwsync warning
alsa-lib calls this internally, producing a warning when linking any
binary with libasound.a. On a normal system, libasound.a is linked in
with -lasound, which seems to silence the warning. However, it is much
easier for us to just pass the whole path so instead remove the
offending warning section with objcopy.
2016-12-13 23:10:30 -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