diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-07-23 23:53:34 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-07-24 00:21:39 +0200 |
commit | 6b80142144c30579f16735ac9911f1a82e9c990d (patch) | |
tree | 01541de9f324fe0dd79f8cb88a9b2b84f7941906 /libavformat/Makefile | |
parent | 816ff352a38ab644c43e2668501d14875912d333 (diff) | |
download | ffmpeg-6b80142144c30579f16735ac9911f1a82e9c990d.tar.gz |
build: Skip compiling rtmpdh.h if ffrtmpcrypt protocol is not enabled
The ffrtmpcrypt protocol depends on external libraries, which are
also required to compile the header file.
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 2263b9648d..2eb3e9c8de 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -365,6 +365,7 @@ OBJS-$(CONFIG_TCP_PROTOCOL) += tcp.o OBJS-$(CONFIG_TLS_PROTOCOL) += tls.o OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o +SKIPHEADERS-$(CONFIG_FFRTMPCRYPT_PROTOCOL) += rtmpdh.h SKIPHEADERS-$(CONFIG_NETWORK) += network.h rtsp.h EXAMPLES = metadata \ |