From e70f1a2067c28474356e1a01f0d6e15d8f147318 Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Sun, 13 Jul 2008 12:40:11 +0000
Subject: [PATCH] Add parisc* to the list of architectures requiring PIC flags
 for shared libs.

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

diff --git a/configure b/configure
index e7b1f95990..73731a5574 100755
--- a/configure
+++ b/configure
@@ -1866,7 +1866,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*) LIBOBJFLAGS='$(PIC)' ;;
+            x86_64|ia64|alpha|sparc*|power*|parisc*) LIBOBJFLAGS='$(PIC)' ;;
         esac
     fi
 fi