diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2022-08-07 15:26:06 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2022-08-13 14:42:36 +0200 |
commit | b77fff47d0d60434a48b6877ed72a71ebf53858a (patch) | |
tree | 3c0030e4d4b1e47c878b5ffc64c275422f10cd68 /libavdevice | |
parent | 6ded80af922fe244e5c9027c2059fb2caabb5cd1 (diff) | |
download | ffmpeg-b77fff47d0d60434a48b6877ed72a71ebf53858a.tar.gz |
configure: always enable gnu_windres if available
Use the appropiate Makefile variable to ensure the resource file is
only built into shared libraries instead.
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/Makefile b/libavdevice/Makefile index bbe2f69dcc..8a62822b69 100644 --- a/libavdevice/Makefile +++ b/libavdevice/Makefile @@ -59,7 +59,7 @@ OBJS-$(CONFIG_LIBDC1394_INDEV) += libdc1394.o SHLIBOBJS-$(CONFIG_DECKLINK_INDEV) += reverse.o # Windows resource file -SLIBOBJS-$(HAVE_GNU_WINDRES) += avdeviceres.o +SHLIBOBJS-$(HAVE_GNU_WINDRES) += avdeviceres.o SKIPHEADERS += decklink_common.h SKIPHEADERS-$(CONFIG_DECKLINK) += decklink_enc.h decklink_dec.h \ |