summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2010-06-16 11:46:02 +0200
committerEdward Hervey <bilboed@bilboed.com>2010-06-16 11:46:02 +0200
commit133b88fc63be4042355bbe9d02728cf78a584b26 (patch)
treec20e4833e8bca886142756e9b4fa5621db1b940b
parent54f5a5ded6bdf016d93f6309f9934d50780ceb08 (diff)
configure: Use --enable-pic instead of --enabled-shared
Not sure when that option was added, but it does what we want (i.e. produce PIC code in .a/.la that we can then link into a shared library)
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 79f5d04..004c987 100644
--- a/configure.ac
+++ b/configure.ac
@@ -307,9 +307,9 @@ else
# basic arguments
embffmpeg_configure_args="--prefix=$prefix"
- # Enable shared and static so that we get .a files, but with PIC code.
+ # Enable pic and static so that we get .a files, but with PIC code.
embffmpeg_configure_args="$embffmpeg_configure_args --disable-ffserver --disable-ffplay\
- --enable-postproc --enable-gpl --enable-static --enable-shared \
+ --enable-postproc --enable-gpl --enable-static --enable-pic \
--disable-encoder=flac --disable-decoder=cavs --disable-protocols --disable-devices\
--disable-network --disable-hwaccels --disable-filters"