diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2002-07-27 01:38:32 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2002-07-27 01:38:32 +0000 |
commit | f46e5158bd190ccd2e7a1ee9c47ab26f9e79ab2b (patch) | |
tree | c5c9d9d0145d191be5126beb04648e60c47207d1 | |
parent | 0dc6c45c6ba881b90e06fb584587dab0a0009fd8 (diff) | |
download | gst-plugins-bad-f46e5158bd190ccd2e7a1ee9c47ab26f9e79ab2b.tar.gz gst-plugins-bad-f46e5158bd190ccd2e7a1ee9c47ab26f9e79ab2b.tar.bz2 gst-plugins-bad-f46e5158bd190ccd2e7a1ee9c47ab26f9e79ab2b.zip |
Added conditional for cdrom, someone needs to write a configure check to make this work
Original commit message from CVS:
Added conditional for cdrom, someone needs to write a configure check
to make this work
-rw-r--r-- | sys/Makefile.am | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/Makefile.am b/sys/Makefile.am index 92b9468d..aefb6481 100644 --- a/sys/Makefile.am +++ b/sys/Makefile.am @@ -40,8 +40,14 @@ else XVIDEO_DIR= endif +if USE_CDROM +CDROM_DIR=cdrom +else +CDROM_DIR= +endif + SUBDIRS=$(DXR3_DIR) $(OSS_DIR) $(QCAM_DIR) $(V4L_DIR) $(VCD_DIR) \ - $(VGA_DIR) $(XVIDEO_DIR) + $(VGA_DIR) $(XVIDEO_DIR) $(CDROM_DIR) -DIST_SUBDIRS=dxr3 oss qcam v4l vcd vga xvideo videosink +DIST_SUBDIRS=dxr3 oss qcam v4l vcd vga xvideo videosink cdrom |