2021-08-18 Fred Gleason <fredg@paravelsystems.com>

* Refactored the HPI driver in caed(8) to use virtual inheritance.
	* Disabled JACK driver support in caed(8).
	* Disabled ALSA driver support in caed(8).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-08-18 11:14:41 -04:00
parent 13f2d5c0ca
commit 6ed4643fc1
16 changed files with 1380 additions and 853 deletions

View File

@@ -2,7 +2,7 @@
##
## Core Audio Engine Makefile.am for Rivendell
##
## Copyright 2002-2020 Fred Gleason <fredg@paravelsystems.com>
## Copyright 2002-2021 Fred Gleason <fredg@paravelsystems.com>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License version 2 as
@@ -33,10 +33,15 @@ dist_caed_SOURCES = cae.cpp cae.h\
cae_alsa.cpp\
cae_hpi.cpp\
cae_jack.cpp\
cae_server.cpp cae_server.h
cae_server.cpp cae_server.h\
caedriver.cpp caedriver.h\
caedriverfactory.cpp caedriverfactory.h\
hpidriver.cpp hpidriver.h
nodist_caed_SOURCES = moc_cae.cpp\
moc_cae_server.cpp
moc_cae_server.cpp\
moc_caedriver.cpp\
moc_hpidriver.cpp
caed_LDADD = @LIB_RDLIBS@\
@LIBALSA@\