diff options
author | Martin Storsjö <martin@martin.st> | 2013-08-09 11:06:46 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-08-10 00:53:33 +0300 |
commit | e743e7ae6ee7e535c4394bec6fe6650d2b0dbf65 (patch) | |
tree | bd01128da10fffb0455a7392243428b799d53ac1 /libavcodec/Makefile | |
parent | a76d0cdf21c3d9e464623cc0ad1c005abf952afa (diff) | |
download | ffmpeg-e743e7ae6ee7e535c4394bec6fe6650d2b0dbf65.tar.gz |
libavutil: Make avpriv_open a library-internal function on msvcrt
Add one copy of the function into each of the libraries, similarly
to what we do for log2_tab. When using static libs, only one
copy of the file_open.o object file gets included, while when
using shared libraries, each of them get a copy of its own.
This fixes DLL builds with a statically linked C runtime, where
each DLL effectively has got its own instance of the C runtime,
where file descriptors can't be shared across runtimes.
On systems not using msvcrt, the function is not duplicated.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index fc1bfb2352..318ed7db2a 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -26,6 +26,8 @@ OBJS = allcodecs.o \ raw.o \ utils.o \ +OBJS-$(HAVE_MSVCRT) += file_open.o + # parts needed for many different codecs OBJS-$(CONFIG_AANDCTTABLES) += aandcttab.o OBJS-$(CONFIG_AC3DSP) += ac3dsp.o |