From dfeb80a5a97a9a6bbc48d7c7899308fa29714c8b Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 3 Aug 2006 16:34:22 +0000 Subject: [PATCH] Don't hardcode .dll in the MinGW section, use $SLIBSUF instead. Originally committed as revision 5922 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 30ce3d51c8..e35561ad42 100755 --- a/configure +++ b/configure @@ -878,13 +878,13 @@ EOF if test "$mingwce" = "yes"; then protocols="no" fi - FFLDFLAGS='-Wl,--output-def,$(@:.dll=.def),--out-implib,lib$(SLIBNAME:$(SLIBSUF)=.dll.a)' SLIBPREF="" SLIBSUF=".dll" EXESUF=".exe" SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)' SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)' - SLIB_EXTRA_CMD='-lib /machine:i386 /def:$(@:.dll=.def)' + 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 fi