diff options
author | Christian Schaller <uraeus@gnome.org> | 2006-01-09 17:04:52 +0000 |
---|---|---|
committer | Christian Schaller <uraeus@gnome.org> | 2006-01-09 17:04:52 +0000 |
commit | 9b94e38300ef023c12e66aa4df0efa1a8911a92c (patch) | |
tree | 49f69768275d034faf5c6cb318b55dd34034771f /sys/Makefile.am | |
parent | 8189a4da729d4df81a9143887948e35193ccf13a (diff) |
add Sun Audio plugin. Verified that nothing breaks and that make check works.
Original commit message from CVS:
add Sun Audio plugin. Verified that nothing breaks and that make check works.
Don't think the docs gets properly built yet, but I don't understand exactly how to enable that.
Diffstat (limited to 'sys/Makefile.am')
-rw-r--r-- | sys/Makefile.am | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/Makefile.am b/sys/Makefile.am index 5406c3130..160ec7798 100644 --- a/sys/Makefile.am +++ b/sys/Makefile.am @@ -10,6 +10,12 @@ else OSS_DIR= endif +if USE_SUNAUDIO +SUNAUDIO_DIR=sunaudio +else +SUNAUDIO_DIR= +endif + # if USE_OSX_AUDIO # OSX_AUDIO_DIR=osxaudio # else @@ -28,12 +34,6 @@ endif # QCAM_DIR= # endif -# if USE_SUNAUDIO -# SUNAUDIO_DIR=sunaudio -# else -# SUNAUDIO_DIR= -# endif - # if USE_GST_V4L2 # V4L2_DIR=v4l2 # else @@ -58,6 +58,6 @@ endif # GL_DIR= # endif -SUBDIRS=$(OSS_DIR) +SUBDIRS=$(OSS_DIR) $(SUNAUDIO_DIR) -DIST_SUBDIRS=oss +DIST_SUBDIRS=oss sunaudio |