summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2002-05-16 18:02:50 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-05-16 18:02:50 +0000
commit83286d2a750fa45f52f401ea83600d98530e8389 (patch)
tree6e08f5d82864e5b8a3ac1c64d06095fdfc91c5d7 /configure
parent9cfe269e700fb3ab25dcb37b32c3e967d69a8685 (diff)
* fixed --enable-shared handling
Originally committed as revision 503 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 bbf28fc1ed..96f98aaa0b 100755
--- a/configure
+++ b/configure
@@ -52,6 +52,7 @@ grab="yes"
mp3lame="no"
a52bin="no"
win32="no"
+lshared="no"
extralibs="-lm"
simpleidct="yes"
@@ -96,7 +97,6 @@ echo " --enable-shared build shared libraries [default=no]"
exit 1
fi
-lshared=no
for opt do
case "$opt" in
--prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
@@ -119,7 +119,7 @@ for opt do
;;
--enable-win32) win32="yes"
;;
- --enable-shared=*) lshared=`echo $opt | cut -d '=' -f 2`
+ --enable-shared) lshared="yes"
;;
esac
done