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 /libavutil/Makefile | |
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 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 9435a0bfb0..3d9c07aea8 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -201,7 +201,7 @@ OBJS-$(!CONFIG_VULKAN) += hwcontext_stub.o OBJS += $(COMPAT_OBJS:%=../compat/%) # Windows resource file -SLIBOBJS-$(HAVE_GNU_WINDRES) += avutilres.o +SHLIBOBJS-$(HAVE_GNU_WINDRES) += avutilres.o SKIPHEADERS += objc.h SKIPHEADERS-$(HAVE_CUDA_H) += hwcontext_cuda.h |