aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVíctor Paesa <wzrlpy@arsystel.com>2006-07-15 23:05:16 +0000
committerDiego Biurrun <diego@biurrun.de>2006-07-15 23:05:16 +0000
commit4581fdffac833bbcd8da333e66ab10af155cc5fe (patch)
tree5889890be83b0a23dbeb0f208bc26cf6cebe0eb5
parent84c22efdfb825370875763622e6a6747b956cab0 (diff)
downloadffmpeg-4581fdffac833bbcd8da333e66ab10af155cc5fe.tar.gz
Cygwin shared libraries support, patch by Víctor Paesa wzrlpy at arsystel com.
Originally committed as revision 5756 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index a8447cf1e3..f57f246501 100755
--- a/configure
+++ b/configure
@@ -585,6 +585,7 @@ MINGW32*)
mingw32="yes"
;;
CYGWIN*)
+shlibdir='${PREFIX}/bin'
v4l="no"
v4l2="no"
audio_oss="yes"
@@ -593,6 +594,11 @@ vhook="no"
extralibs=""
cygwin="yes"
EXESUF=".exe"
+SLIBPREF="cyg"
+SLIBSUF=".dll"
+SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
+SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)'
+SHFLAGS='-shared -Wl,--out-implib=lib$(NAME).dll.a'
;;
Linux)
;;