view ci/build-snd-dummy.sh @ 27688:48dee8a7b1d2 v8.2.4370

patch 8.2.4370: MS-Windows: libsodium.dll not included with the installer Commit: https://github.com/vim/vim/commit/cf6ad8ea8cff318877758b48d3786ab08251ab89 Author: Christian Brabandt <cb@256bit.org> Date: Sun Feb 13 13:11:32 2022 +0000 patch 8.2.4370: MS-Windows: libsodium.dll not included with the installer Problem: MS-Windows: libsodium.dll not included with the installer. Solution: Add the file to the installer if it exists. (Christian Brabandt, closes #9762)
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Feb 2022 14:15:05 +0100
parents 1984a3fcc953
children
line wrap: on
line source

#!/bin/bash
set -eu

LINUX_VERSION=$(uname -r | cut -d. -f1-2)
LINUX_ARCHIVE_FILE=v${LINUX_VERSION}.tar.gz
LINUX_SOURCE_DIR=linux-${LINUX_VERSION}

mkdir -p "${TMPDIR}"
cd "${TMPDIR}"

wget -q "https://github.com/torvalds/linux/archive/${LINUX_ARCHIVE_FILE}"

tar -xf "${LINUX_ARCHIVE_FILE}" "${LINUX_SOURCE_DIR}/sound"
cd "${LINUX_SOURCE_DIR}/sound"

CC=gcc make -C "/lib/modules/$(uname -r)/build" M="${PWD}" CONFIG_SOUND=m CONFIG_SND=m CONFIG_SND_PCM=m CONFIG_SND_DUMMY=m modules

mkdir -p "${SND_DUMMY_DIR}"
cp soundcore.ko core/snd.ko core/snd-pcm.ko drivers/snd-dummy.ko "${SND_DUMMY_DIR}"