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 /libswresample/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 'libswresample/Makefile')
-rw-r--r-- | libswresample/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/Makefile b/libswresample/Makefile index dc80027c35..8b9a0fe6f5 100644 --- a/libswresample/Makefile +++ b/libswresample/Makefile @@ -22,6 +22,6 @@ OBJS-$(CONFIG_LIBSOXR) += soxr_resample.o SHLIBOBJS += log2_tab.o # Windows resource file -SLIBOBJS-$(HAVE_GNU_WINDRES) += swresampleres.o +SHLIBOBJS-$(HAVE_GNU_WINDRES) += swresampleres.o TESTPROGS = swresample |