Browse Source

Shared libraries should go in $PREFIX on MinGW.

Originally committed as revision 5931 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 19 years ago
parent
commit
1066a99540
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      configure

+ 2
- 1
configure View File

@@ -885,7 +885,8 @@ EOF
SLIB_EXTRA_CMD="-lib /machine:i386 /def:\$(@:${SLIBSUF}=.def)"
FFLDFLAGS="-Wl,--output-def,\$(@:${SLIBSUF}=.def),--out-implib,lib\$(SLIBNAME:\$(SLIBSUF)=.dll.a)"
if test "$force_prefix" != yes; then PREFIX="$PROGRAMFILES/FFmpeg"; fi
if test "$force_libdir" != yes; then bindir="$PREFIX"; fi
if test "$force_libdir" != yes; then bindir='${PREFIX}'; fi
shlibdir='${PREFIX}'
fi

# Combine FFLDFLAGS, EXTRALDFLAGS and the LDFLAGS environment variable.


Loading…
Cancel
Save