Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added MacOS X CD-ROM audio support (thanks Max and Darrell)
  • Loading branch information
slouken committed Apr 15, 2003
1 parent c017ff1 commit c58e501
Show file tree
Hide file tree
Showing 12 changed files with 2,287 additions and 5 deletions.
6 changes: 4 additions & 2 deletions configure.in
Expand Up @@ -2404,8 +2404,9 @@ case "$target" in
fi
# Set up files for the cdrom library
if test x$enable_cdrom = xyes; then
CDROM_SUBDIRS="$CDROM_SUBDIRS dummy"
CDROM_DRIVERS="$CDROM_DRIVERS dummy/libcdrom_dummy.la"
CDROM_SUBDIRS="$CDROM_SUBDIRS macosx"
CDROM_DRIVERS="$CDROM_DRIVERS macosx/libcdrom_macosx.la"
SYSTEM_LIBS="$SYSTEM_LIBS -framework AudioToolbox -framework AudioUnit -lstdc++"
fi
# Set up files for the thread library
if test x$enable_threads = xyes; then
Expand Down Expand Up @@ -2672,6 +2673,7 @@ src/cdrom/bsdi/Makefile
src/cdrom/freebsd/Makefile
src/cdrom/linux/Makefile
src/cdrom/macos/Makefile
src/cdrom/macosx/Makefile
src/cdrom/openbsd/Makefile
src/cdrom/qnx/Makefile
src/cdrom/win32/Makefile
Expand Down
14 changes: 13 additions & 1 deletion src/cdrom/Makefile.am
Expand Up @@ -5,7 +5,19 @@ noinst_LTLIBRARIES = libcdrom.la

# Define which subdirectories need to be built
SUBDIRS = @CDROM_SUBDIRS@
DIST_SUBDIRS = aix beos bsdi dc dummy freebsd linux macos openbsd qnx win32
DIST_SUBDIRS = \
aix \
beos \
bsdi \
dc \
dummy \
freebsd \
linux \
macos \
macosx \
openbsd \
qnx \
win32

DRIVERS = @CDROM_DRIVERS@

Expand Down

0 comments on commit c58e501

Please sign in to comment.