gstreamer/sys/Makefile.am
Vincent Torri e2117c6c67 Add directsoundsink to build and dist it, so it gets built when compiling with MingW on win32 and the required header...
Original commit message from CVS:
Patch by: Vincent Torri  <vtorri at univ-evry fr>
* configure.ac:
* sys/Makefile.am:
* sys/directsound/Makefile.am:
* sys/directsound/gstdirectsoundsink.c:
(gst_directsoundsink_reset):
Add directsoundsink to build and dist it, so it gets built when
compiling with MingW on win32 and the required headers and libraries
are available (fixes: #392638). Also simplify DirectDraw check a bit.
* tests/check/elements/.cvsignore:
Fix CVS ignore for neonhttpsrc test binary.
2007-01-04 09:44:57 +00:00

51 lines
591 B
Makefile

# if USE_DXR3
# DXR3_DIR=dxr3
# else
# DXR3_DIR=
# endif
# if USE_QCAM
# QCAM_DIR=qcam
# else
# QCAM_DIR=
# endif
# if USE_VCD
# VCD_DIR=vcd
# else
# VCD_DIR=
# endif
# if USE_CDROM
# CDROM_DIR=cdrom
# else
# CDROM_DIR=
# endif
if USE_OPENGL
GL_DIR=glsink
else
GL_DIR=
endif
if USE_DVB
DVB_DIR=dvb
else
DVB_DIR=
endif
if USE_DIRECTDRAW
DIRECTDRAW_DIR=directdraw
else
DIRECTDRAW_DIR=
endif
if USE_DIRECTSOUND
DIRECTSOUND_DIR=directsound
else
DIRECTSOUND_DIR=
endif
SUBDIRS = $(GL_DIR) $(DVB_DIR) $(DIRECTDRAW_DIR) $(DIRECTSOUND_DIR)
DIST_SUBDIRS = glsink dvb directdraw directsound