git: 6747b1a8218f - main - sound examples: Move MIDI example out of OSS directory
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 24 Aug 2024 12:09:16 UTC
The branch main has been updated by christos: URL: https://cgit.FreeBSD.org/src/commit/?id=6747b1a8218f229c7593cdb02e4b41e2b1186e26 commit 6747b1a8218f229c7593cdb02e4b41e2b1186e26 Author: Christos Margiolis <christos@FreeBSD.org> AuthorDate: 2024-08-24 12:07:49 +0000 Commit: Christos Margiolis <christos@FreeBSD.org> CommitDate: 2024-08-24 12:07:49 +0000 sound examples: Move MIDI example out of OSS directory This example is not related to OSS. Sponsored by: The FreeBSD Foundation MFC after: 2 days Reviewed by: dev_submerge.ch, meka_tilda.center Differential Revision: https://reviews.freebsd.org/D46308 --- share/examples/Makefile | 6 +++--- share/examples/sound/{oss => }/midi.c | 0 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/share/examples/Makefile b/share/examples/Makefile index 65b261157b7a..58f5a2109ec3 100644 --- a/share/examples/Makefile +++ b/share/examples/Makefile @@ -315,13 +315,13 @@ SE_SCSI_TARGET= \ SE_DIRS+= sound SE_SOUND= \ - sndstat_nv.c + sndstat_nv.c \ + midi.c SE_DIRS+= sound/oss SE_SOUND_OSS= \ README \ - audio.c \ - midi.c + audio.c SE_DIRS+= sunrpc SE_SUNRPC= Makefile diff --git a/share/examples/sound/oss/midi.c b/share/examples/sound/midi.c similarity index 100% rename from share/examples/sound/oss/midi.c rename to share/examples/sound/midi.c