summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2007-06-14 16:40:55 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2007-06-14 16:40:55 +0000
commitb0268cc06002eb22d80bce15e349742476e15f09 (patch)
tree6fe7316f2350a8ac107692bafb51d023c515307d /configure
parent770359898c2fe166b78502d7e134b86c62c6ec21 (diff)
Print static vhook warning for Cygwin and MinGW
Originally committed as revision 9311 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 5a5b8e1e04..119320e76d 100755
--- a/configure
+++ b/configure
@@ -1671,10 +1671,10 @@ test "$vhook" = "default" && vhook="$dlopen"
enabled_any vhook liba52bin libfaadbin ffserver && add_extralibs $ldl
-if test "$targetos" = cygwin && enabled_all static vhook ; then
+if test "$targetos" = cygwin -o "$targetos" = mingw32 && enabled_all static vhook ; then
vhook="no"
echo
- echo "At the moment vhooks don't work on Cygwin static builds."
+ echo "At the moment vhooks don't work on Cygwin or MinGW static builds."
echo "Patches welcome."
echo
fi