Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Rothenpieler <timo@rothenpieler.org>2022-08-07 16:28:24 +0300
committerTimo Rothenpieler <timo@rothenpieler.org>2022-08-13 15:42:52 +0300
commitf85e0673c3a82acd2b267e934c6db3c9da154d86 (patch)
treebe15bffa07fd4152ff8f90b52a1235d12b2eb747 /fftools/Makefile
parentb77fff47d0d60434a48b6877ed72a71ebf53858a (diff)
fftools: add DPI awareness manifest
Some filters, like gdigrab, rely on this to be set to see and report proper dimensions.
Diffstat (limited to 'fftools/Makefile')
-rw-r--r--fftools/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/fftools/Makefile b/fftools/Makefile
index 5907f5c57e..ff70b1170d 100644
--- a/fftools/Makefile
+++ b/fftools/Makefile
@@ -21,6 +21,9 @@ OBJS-ffmpeg += \
define DOFFTOOL
OBJS-$(1) += fftools/cmdutils.o fftools/opt_common.o fftools/$(1).o $(OBJS-$(1)-yes)
+ifdef HAVE_GNU_WINDRES
+OBJS-$(1) += fftools/fftoolsres.o
+endif
$(1)$(PROGSSUF)_g$(EXESUF): $$(OBJS-$(1))
$$(OBJS-$(1)): | fftools
$$(OBJS-$(1)): CFLAGS += $(CFLAGS-$(1))