summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2010-02-02 20:48:21 +0000
committerReinhard Tartler <siretart@tauware.de>2010-02-02 20:48:21 +0000
commite21e76a914c6194438ee649b06c9be2bed7bfca5 (patch)
tree939e60445ddbdb91e2eb258b1dbc1f338c1b459a
parentb18806f811db30cb8215f6508ab059a0ef2eacd3 (diff)
build PIC code on powerpc
this avoids failing 24bit relocations as seen on http://bugs.debian.org/561956 as side effect Originally committed as revision 21613 to svn://svn.ffmpeg.org/ffmpeg/branches/0.5
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 1b89283a62..3e74ab8311 100755
--- a/configure
+++ b/configure
@@ -2219,7 +2219,7 @@ if enabled shared; then
# LIBOBJFLAGS may have already been set in the OS configuration
if test -z "$LIBOBJFLAGS" ; then
case "${subarch-$arch}" in
- x86_64|ia64|alpha|sparc*|power*|parisc*|mips*) LIBOBJFLAGS='$(PIC)' ;;
+ x86_64|ia64|alpha|sparc*|ppc|power*|parisc*|mips*) LIBOBJFLAGS='$(PIC)' ;;
esac
fi
fi