From b6bd726843c647e01b91c1c8cfa00f3ecb83960c Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Tue, 23 Sep 2008 11:10:38 +0000
Subject: [PATCH] Add MIPS to list of architectures requiring PIC flags. Prior
 to gcc version 4.3 PIC was the default, now it needs to be enabled
 explicitly. Passing the flag to older gcc versions does not hurt.

Originally committed as revision 15392 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index c011275076b..d1815484c49 100755
--- a/configure
+++ b/configure
@@ -1897,7 +1897,7 @@ if enabled shared; then
     # LIBOBJFLAGS may have already been set in the OS configuration
     if test -z "$LIBOBJFLAGS" ; then
         case "$arch" in
-            x86_64|ia64|alpha|sparc*|power*|parisc*) LIBOBJFLAGS='$(PIC)' ;;
+            x86_64|ia64|alpha|sparc*|power*|parisc*|mips*) LIBOBJFLAGS='$(PIC)' ;;
         esac
     fi
 fi
-- 
GitLab