| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-04-28 | alsa-lib: Build sequencer API | Michael Forney | |
| 2024-03-17 | alsa-lib: Minor tweaks to switch patch | Michael Forney | |
| Use local variable for get/put index. Remove unused variables. Add assert(0) to unreachable default case in switch. | |||
| 2024-03-17 | alsa-lib: Update to 1.2.11 | Michael Forney | |
| 2021-06-27 | alsa-lib: Switch to upstream patch for static build fix | Michael Forney | |
| 2021-06-27 | alsa-lib: Update to 1.2.5.1 | Michael Forney | |
| 2020-11-04 | alsa-lib: Build with rawmidi support | Michael Forney | |
| 2020-10-26 | alsa-lib: Update to 1.2.4 | Michael Forney | |
| 2020-07-09 | alsa-lib: Update to 1.2.3.2 | Michael Forney | |
| 2020-06-23 | alsa-lib: Update to 1.2.3.1 | Michael Forney | |
| 2020-06-10 | alsa-lib: Update to 1.2.3 | Michael Forney | |
| 2020-06-05 | Revert accidentally staged local alsa-lib commits | Michael Forney | |
| 2020-06-05 | alsa-lib: Disable modules that require dynamic linking | Michael Forney | |
| 2020-06-05 | Use -isystem to include library headers | Michael Forney | |
| 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-02-20 | Use our own linux-headers | Michael Forney | |
| 2020-02-20 | alsa-lib: Update to 1.2.2 | Michael Forney | |
| 2020-02-04 | alsa-lib: Remove unneeded patch | Michael Forney | |
| cproc now supports enumerators with value > INT_MAX. | |||
| 2019-11-15 | alsa-lib: Update to 1.2.1 again | Michael Forney | |
| More changes were made upstream and the v1.2.1 tag was force-pushed. | |||
| 2019-11-13 | alsa-lib: Update to 1.2.1 | Michael Forney | |
| 2019-07-07 | alsa-lib: Remove unnecessary patch for parameter qualifiers | Michael Forney | |
| I was mistaken about how type compatibility worked for function types. | |||
| 2019-07-06 | alsa-lib: Detect whether TLS is available | Michael Forney | |
| 2019-07-06 | alsa-lib: Update version number | Michael Forney | |
| 2019-07-06 | alsa-lib: Fix a few more portability issues | Michael Forney | |
| 2019-07-03 | alsa-lib: Avoid out-of-range enum constants | Michael Forney | |
| 2019-06-04 | alsa-lib: Fix a few portability issues | Michael Forney | |
| 2019-05-22 | alsa-lib: Update to 1.1.9 | Michael Forney | |
| 2019-03-19 | Rename rev to ver, and keep track of package versions as well | Michael Forney | |
| 2019-01-28 | alsa-lib: Update to 1.1.8 | Michael Forney | |
| 2018-11-03 | alsa-lib: Update to 1.1.7 | Michael Forney | |
| 2018-04-10 | alsa-lib: Update to 1.1.6 | Michael Forney | |
| 2018-03-16 | Revert accidentally updated submodules in ↵ | Michael Forney | |
| b99ef6bfc544b340d6ea0d07b82f764539cc62e9 `git commit -a` with ignored submodules strikes again. I really should report a bug about this. | |||
| 2018-03-10 | libdrm: Check if config.video_drivers is set | Michael Forney | |
| 2017-11-14 | alsa-lib: Update to 1.1.5 | Michael Forney | |
| 2017-10-27 | alsa-lib: Remove HAVE_LIBDL | Michael Forney | |
| This was accidentally enabled in 66fbae202aeffe37707c8a777faec970f39cdf09, which I apparently did not test. | |||
| 2017-10-24 | alsa-lib: Don't use config-posix.h | Michael Forney | |
| 2017-09-25 | Rewrite ninja generation scripts in Lua | Michael Forney | |
| 2017-06-03 | alsa-lib: Update to 1.1.4.1 | Michael Forney | |
| 2017-05-28 | alsa-lib: Update to 1.1.4 | Michael Forney | |
| 2016-12-29 | alsa-lib: Update to 1.1.3 | Michael Forney | |
| 2016-12-13 | alsa-lib: Remove snd_pcm_hwsync warning | Michael Forney | |
| 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 | Move to flat package hierarchy | Michael Forney | |
| 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 | |||
