diff options
author | Andreas Brachold <vdr07@deltab.de> | 2010-10-19 16:55:00 +0000 |
---|---|---|
committer | Andreas Brachold <vdr07@deltab.de> | 2010-10-19 16:55:00 +0000 |
commit | 1a8054a7e26149796a310266b159247997ee9805 (patch) | |
tree | f7d10e311ad68e979b73f756dc35e5651cafac1a /liboutput/Makefile | |
parent | d4559b558caf85a3a19ef9c36198936fc7f8d734 (diff) | |
download | vdr-plugin-image-1a8054a7e26149796a310266b159247997ee9805.tar.gz vdr-plugin-image-1a8054a7e26149796a310266b159247997ee9805.tar.bz2 |
add __STDC_CONSTANT_MACROS define to fix a compilation error.
error caused by ffmpeg now using UINT64_C in libavutil/common.h, a header used
by everything ffmpeg.
Diffstat (limited to 'liboutput/Makefile')
-rw-r--r-- | liboutput/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/liboutput/Makefile b/liboutput/Makefile index 22a4b94..27c2871 100644 --- a/liboutput/Makefile +++ b/liboutput/Makefile @@ -43,7 +43,7 @@ endif PKG-INCLUDES += libavcodec endif -DEFINES += -D_GNU_SOURCE +DEFINES += -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS ifdef PKG-INCLUDES INCLUDES += $(shell $(PKG-CONFIG) --cflags $(PKG-INCLUDES)) |