Remove MinGW install path special-casing.

patch by Ramiro Polla, angustia arrozcru no-ip org

Originally committed as revision 7230 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Ramiro Polla 19 years ago committed by Diego Biurrun
parent a083f53c45
commit e48dc873a4
  1. 7
      configure

7
configure vendored

@ -838,9 +838,9 @@ for opt do
;;
--log=*) logging="$optval"
;;
--prefix=*) PREFIX="$optval"; force_prefix=yes
--prefix=*) PREFIX="$optval"
;;
--libdir=*) libdir="$optval"; force_libdir=yes
--libdir=*) libdir="$optval"
;;
--shlibdir=*) shlibdir="$optval"
;;
@ -1066,9 +1066,6 @@ EOF
SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)'
SLIB_EXTRA_CMD="-lib /machine:i386 /def:\$(@:${SLIBSUF}=.def)"
SHFLAGS="-shared -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
shlibdir='${PREFIX}'
fi
# Combine FFLDFLAGS and the LDFLAGS environment variable.

Loading…
Cancel
Save