diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-12-08 11:49:34 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-12-09 08:42:34 +0100 |
commit | 1818a640cfdccd52e97edf13564f45bc3d0d93eb (patch) | |
tree | 7dba7ca07687d580615f6c26f3f683b60b66f6dd /libavdevice/Makefile | |
parent | af451ac0de6776e97d6a3ff95eac257b7964002e (diff) | |
download | ffmpeg-streaming-1818a640cfdccd52e97edf13564f45bc3d0d93eb.zip ffmpeg-streaming-1818a640cfdccd52e97edf13564f45bc3d0d93eb.tar.gz |
build: Fix dependencies for alsa/jack/sndio support
These components should depend on the availability of the respective
libraries, not just on the availability of the respective headers.
Diffstat (limited to 'libavdevice/Makefile')
-rw-r--r-- | libavdevice/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavdevice/Makefile b/libavdevice/Makefile index 5bb1d3f..664fa0f 100644 --- a/libavdevice/Makefile +++ b/libavdevice/Makefile @@ -29,7 +29,7 @@ OBJS-$(CONFIG_XCBGRAB_INDEV) += xcbgrab.o OBJS-$(CONFIG_LIBCDIO_INDEV) += libcdio.o OBJS-$(CONFIG_LIBDC1394_INDEV) += libdc1394.o -SKIPHEADERS-$(HAVE_ALSA_ASOUNDLIB_H) += alsa.h -SKIPHEADERS-$(HAVE_SNDIO_H) += sndio.h +SKIPHEADERS-$(HAVE_ALSA) += alsa.h +SKIPHEADERS-$(HAVE_SNDIO) += sndio.h TESTPROGS-$(CONFIG_JACK_INDEV) += timefilter |