|
|
|
@@ -2401,7 +2401,7 @@ case $target_os in |
|
|
|
SLIBSUF=".dll" |
|
|
|
SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)' |
|
|
|
SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)' |
|
|
|
SLIB_EXTRA_CMD='-lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)' |
|
|
|
SLIB_EXTRA_CMD=-'$(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)' |
|
|
|
SLIB_INSTALL_EXTRA_CMD='-install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"; \ |
|
|
|
install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"; \ |
|
|
|
install -d "$(LIBDIR)"; \ |
|
|
|
@@ -2409,6 +2409,7 @@ case $target_os in |
|
|
|
SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"' |
|
|
|
SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base' |
|
|
|
objformat="win32" |
|
|
|
dlltool="${cross_prefix}dlltool" |
|
|
|
enable dos_paths |
|
|
|
check_cflags -fno-common |
|
|
|
check_cpp_condition _mingw.h "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) \ |
|
|
|
@@ -2879,11 +2880,7 @@ if enabled libdc1394; then |
|
|
|
die "ERROR: No version of libdc1394 found " |
|
|
|
fi |
|
|
|
|
|
|
|
SDL_CONFIG="${cross_prefix}sdl-config" |
|
|
|
if "${SDL_CONFIG}" --version > /dev/null 2>&1; then |
|
|
|
sdl_cflags=$("${SDL_CONFIG}" --cflags) |
|
|
|
sdl_libs=$("${SDL_CONFIG}" --libs) |
|
|
|
check_func_headers SDL.h SDL_Init $sdl_cflags $sdl_libs && |
|
|
|
if check_pkg_config sdl SDL_version.h SDL_Linked_Version; then |
|
|
|
check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags && |
|
|
|
enable sdl && |
|
|
|
check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size |
|
|
|
@@ -3138,7 +3135,7 @@ echo |
|
|
|
for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do |
|
|
|
echo "Enabled ${type}s:" |
|
|
|
eval list=\$$(toupper $type)_LIST |
|
|
|
print_enabled '_*' $list | sort | pr -3 -t |
|
|
|
print_enabled '_*' $list | sort | pr -r -3 -t |
|
|
|
echo |
|
|
|
done |
|
|
|
|
|
|
|
@@ -3232,6 +3229,7 @@ CPPFLAGS=$CPPFLAGS |
|
|
|
CFLAGS=$CFLAGS |
|
|
|
ASFLAGS=$ASFLAGS |
|
|
|
CC_O=$CC_O |
|
|
|
DLLTOOL=$dlltool |
|
|
|
LDFLAGS=$LDFLAGS |
|
|
|
FFSERVERLDFLAGS=$FFSERVERLDFLAGS |
|
|
|
SHFLAGS=$SHFLAGS |
|
|
|
|